/* =========================================
   THE OLD ALASKA — Bespoke Ecommerce
   ========================================= */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --bg:          #FAF9F6;
  --bg-alt:      #F0EDE8;
  --bg-dark:     #1A1A1A;
  --bg-dark-alt: #242424;
  --text:        #2D2D2D;
  --text-muted:  #7A756E;
  --text-light:  #F5F0EB;
  --accent:      #C8956C;
  --accent-hover:#B5804F;
  --gold:        #D4A853;
  --border:      #E4DFD8;
  --white:       #FFFFFF;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}


/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  transition: color 0.4s var(--ease);
}

.nav.scrolled .nav__logo-text {
  color: var(--text);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 235, 0.8);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
  width: 100%;
}

.nav.scrolled .nav__link {
  color: var(--text-muted);
}

.nav__link:hover,
.nav.scrolled .nav__link:hover {
  color: var(--accent);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav__toggle span {
  background: var(--text);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(245, 240, 235, 0.35);
}

.btn--ghost:hover {
  border-color: var(--text-light);
  background: rgba(245, 240, 235, 0.08);
}

.btn--buy {
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 1rem;
  padding: 18px 32px;
  border-radius: 10px;
}

.btn--buy:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.25);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}


/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(45, 37, 24, 0.55) 50%, rgba(26, 26, 26, 0.7) 100%),
    url('../images/oldDash.jpg') center / cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 149, 108, 0.1) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 240, 235, 0.6);
}

.hero__badge svg {
  color: var(--accent);
  flex-shrink: 0;
}


/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}


/* --- PRODUCT --- */
.product {
  padding: var(--section-pad);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.product__main-image {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product__thumb {
  flex: 1;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.product__thumb:hover {
  border-color: var(--border);
}

.product__thumb.active {
  border-color: var(--accent);
}

.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Details */
.product__category {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.product__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 2px;
}

.product__review-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.product__review-count:hover {
  color: var(--accent);
}

.product__price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.product__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product__price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.product__desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product__fits {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D7A4A;
  background: #F0F7F1;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.product__fits svg {
  flex-shrink: 0;
  color: #3D7A4A;
}

/* Colour Picker */
.product__option {
  margin-bottom: 28px;
}

.product__option-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.product__option-label strong {
  color: var(--text);
}

.product__colours {
  display: flex;
  gap: 12px;
}

.colour-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  outline: none;
  position: relative;
}

.colour-swatch::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.colour-swatch.active::after {
  border-color: var(--accent);
}

.colour-swatch:hover {
  transform: scale(1.08);
}

/* Buy note */
.product__buy-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Accordions */
.product__accordions {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.accordion {
  border-bottom: 1px solid var(--border);
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  list-style: none;
  user-select: none;
}

.accordion__header::-webkit-details-marker {
  display: none;
}

.accordion__header svg {
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.accordion[open] .accordion__header svg {
  transform: rotate(180deg);
}

.accordion__body {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion__body ul,
.accordion__body ol {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__body ul li {
  list-style: none;
}

.accordion__body ol {
  counter-reset: step;
}

.accordion__body ol li {
  counter-increment: step;
  list-style: none;
}

.accordion__body ol li::before {
  content: counter(step) ".";
  font-weight: 600;
  color: var(--accent);
  margin-right: 8px;
}

.accordion__note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.accordion__img {
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
  border-radius: 10px;
  display: block;
}


/* --- FEATURES --- */
.features {
  padding: var(--section-pad);
  background: var(--bg-alt);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--border);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* --- TIMELINE --- */
.timeline {
  padding: var(--section-pad);
}

.timeline .section-title {
  text-align: center;
  margin-bottom: 56px;
}

.timeline__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.timeline__step {
  text-align: center;
  flex: 0 0 180px;
}

.timeline__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.timeline__step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline__step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.timeline__connector {
  width: 64px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin-bottom: 40px;
}


/* --- GALLERY --- */
.gallery {
  padding: var(--section-pad);
  background: var(--bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
  background: var(--bg);
}

.gallery__item:hover {
  transform: scale(1.02);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* --- REVIEWS --- */
.reviews {
  padding: var(--section-pad);
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.reviews__header .section-subtitle {
  margin-bottom: 0;
}

.reviews__summary {
  text-align: right;
}

.reviews__score {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.reviews__score-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.reviews__score-detail span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stars--sm {
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}


/* --- INLINE SHIPPING (inside product details) --- */
.product__shipping {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: 12px;
}

.product__shipping .product__option-label {
  margin-bottom: 10px;
}

.product__shipping-input {
  display: flex;
  gap: 10px;
}

.shipping__input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
  background: var(--white);
}

.shipping__input:focus {
  border-color: var(--accent);
}

.shipping__calc-btn {
  padding: 12px 20px;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.product__shipping-result { margin-top: 16px; }
.product__shipping-result:empty { margin-top: 0; }

.shipping__coming-soon {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--white);
  border-radius: 10px;
}

.shipping__coming-soon svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.shipping__coming-soon strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.shipping__coming-soon p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.shipping__error strong { color: #b94a48; }

.shipping__quotes { margin-top: 0; }
.shipping__quotes-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.shipping__quotes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.shipping__single-quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
}

.shipping__quote-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.8125rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.shipping__quote-item:last-child { border-bottom: none; }
.shipping__quote-item:hover { background: var(--bg); }
.shipping__quote-item--selected { background: #F0EDE8; font-weight: 500; }
.shipping__quote-name { font-weight: 500; }
.shipping__quote-price { font-weight: 600; color: var(--accent); white-space: nowrap; margin-left: 12px; }

.shipping__no-options {
  padding: 16px;
  background: var(--white);
  border-radius: 10px;
  text-align: center;
}
.shipping__no-options p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.shipping__contact-btn {
  font-size: 0.8125rem;
  padding: 10px 24px;
}
.shipping__total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
}
.shipping__total strong { margin-top: 2px; font-size: 0.9375rem; }
.shipping__checkout-btn { width: 100%; }


/* --- CTA --- */
.cta {
  padding: 100px 0;
  background: var(--bg-dark);
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta__text {
  font-size: 1.0625rem;
  color: rgba(245, 240, 235, 0.6);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* --- FOOTER --- */
.footer {
  padding: 64px 0 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand .nav__logo-text {
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.45);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.65);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__contact a {
  font-size: 0.875rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.footer__contact p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.45);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.08);
  color: rgba(245, 240, 235, 0.5);
  margin-top: 12px;
  transition: all 0.3s var(--ease);
}

.footer__social:hover {
  background: #1877F2;
  color: var(--white);
}

.footer__bottom {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.3);
}


/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .product__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links.open .nav__link {
    color: var(--text);
    font-size: 1.25rem;
  }

  .nav__toggle {
    display: flex;
    z-index: 101;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__badges {
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .timeline__steps {
    flex-direction: column;
    gap: 0;
  }

  .timeline__connector {
    width: 2px;
    height: 32px;
    margin-bottom: 0;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__summary {
    text-align: left;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .product__title {
    font-size: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .product__shipping-input {
    flex-direction: column;
  }
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.35);
}
