
/* ---------- Design Tokens ---------- */
:root {
  --primary: #273E9A;
  --primary-dark: #16245E;
  --primary-soft: #E7E9F7;
  --gold: #D83825;
  --gold-light: #F17A64;
  --cream: #F5F6FB;
  --ivory: #FFFFFF;
  --dark: #131A33;
  --text: #52586B;
  --text-light: #888EA3;
  --border: #E2E4F0;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 30px -12px rgba(22, 36, 94, 0.14);
  --shadow-hover: 0 22px 44px -16px rgba(22, 36, 94, 0.24);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container-xl { max-width: 1320px; }

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.red { color: var(--gold); }
.red-light { color: var(--gold-light); }
p { margin-bottom: 0; }

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

::selection { background: var(--gold-light); color: var(--primary-dark); }

/* Focus states — accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Utility ---------- */
.section {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}
.section-tight { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-primary-dark { background: var(--primary-dark); }
.bg-primary-soft { background: var(--primary-soft); }
.bg-gold { background: var(--gold); }
.bg-gold-light { background: var(--gold-light); }



.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-light); }

.section-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  margin-top: 0.6rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.text-primary-brand { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-brand {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(39, 62, 154, 0.5);
}
.btn-brand:hover, .btn-brand:focus-visible {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(39, 62, 154, 0.55);
}

.btn-outline-brand {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-brand:hover, .btn-outline-brand:focus-visible {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px -10px rgba(216, 56, 37, 0.45);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-ivory {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-ivory:hover, .btn-outline-ivory:focus-visible {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-sm-pill {
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: #fff;
  padding: 10px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 0.85rem 0;
  box-shadow: 0 8px 24px -18px rgba(23,23,23,0.35);
  border-bottom-color: var(--border);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
}
.site-header:not(.scrolled) .brand-mark { color: var(--dark); }

.brand-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(39,62,154,0.45);
}

.brand-mark small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  gap: 2.1rem;
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after { width: 100%; }

.offcanvas-brand-nav a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  /* font-size: 1.3rem; */
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.offcanvas.offcanvas-end {
  background: var(--ivory);
  max-width: 320px;
  z-index: 99999;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(6.5rem, 14vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 4rem);
  min-height: auto;
  background: linear-gradient(0deg, #FFFBF3 0%, var(--ivory) 60%);
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero { min-height: 88vh; display: flex; align-items: center; }
}

.hero-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1.08;
  margin-top: 1.1rem;
  margin-bottom: 1.3rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-stage-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/5;
}
.hero-stage-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-card {
  position: absolute;
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border);
}

.hero-float-card.card-1 {
  top: 8%;
  left: -8%;
}
.hero-float-card.card-2 {
  bottom: 6%;
  right: -6%;
}

.hero-float-card .icon-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--dark);
}
.hero-float-card span {
  font-size: 0.72rem;
  color: var(--text-light);
}

@media (max-width: 991.98px) {
  .hero-float-card { display: none; }
  .hero-visual { margin-top: 2.5rem; }
}

/* ---------- Highlight Strip ---------- */
.highlight-strip {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--dark);
}
.highlight-item p {
  font-size: 0.87rem;
  color: var(--text-light);
}

/* ---------- Product Cards ---------- */
.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  display: block;
}

.gallery-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  background: var(--primary-dark);
  color: #fff;
  font-size: 20px;
  
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
}

.product-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.171);
  opacity: 0;
  transition: opacity .3s ease;
}

.product-img-wrap:hover::after {
  opacity: 1;
}

.product-img-wrap:hover .gallery-eye {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.product-card-img {
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  background: var(--cream);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: rgba(255, 253, 249, 0.92);
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.product-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}

.product-card-desc {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.view-details-link {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
}
.view-details-link i { transition: transform 0.3s var(--ease); }
.view-details-link:hover i { transform: translateX(4px); }

/* ---------- Featured Split ---------- */
.featured-split {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
}

.featured-img-wrap {
  position: relative;
  min-height: 340px;
  height: 100%;
}
.featured-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; min-height: 340px;
}

.featured-content {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.93rem;
}
.feature-list li i {
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---------- Why Choose Us ---------- */
.editorial-block {
  padding: 1.9rem 0;
  border-top: 1px solid var(--border);
}
.editorial-block:first-of-type { border-top: none; }

.editorial-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.editorial-block h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.editorial-block p {
  color: var(--text-light);
  font-size: 0.93rem;
}

/* ---------- Custom Packaging CTA (wine section) ---------- */
.wine-section {
  background: radial-gradient(circle at 15% 20%, rgba(216,56,37,0.14), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(216,56,37,0.1), transparent 45%),
              linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.wine-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.gold-rule {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem auto;
}
.gold-rule.left { margin: 1.4rem 0; }

.wine-section h2 {
  color: var(--white);
}
.wine-section p { color: rgba(255,255,255,0.78); }

/* ---------- Category Tiles ---------- */
.category-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  box-shadow: var(--shadow-soft);
}
.category-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.category-tile:hover img { transform: scale(1.08); }

.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0) 40%, rgba(23,23,23,0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: var(--white);
}
.category-tile-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.category-tile-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0.2rem 0 0.5rem;
}
.category-tile-overlay .arrow-circ {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.category-tile:hover .arrow-circ {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateX(3px);
}

/* ---------- About / Stats ---------- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-img-wrap img { width: 100%; }

.stat-block {
  text-align: left;
  padding: 1.1rem 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.35rem;
}

/* ---------- Process — the thread line (signature element) ---------- */
.thread-process {
  position: relative;
  padding-top: 1rem;
}

.thread-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

.thread-svg {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 0;
}
.thread-line {
    position: absolute;
    left: 0;
    top: 23px;
    bottom: 0;
    width: 100%;
    height: 2px; 
    background: repeating-linear-gradient(87deg, var(--gold) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
.thread-step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.thread-knot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--gold);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.thread-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.thread-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .thread-track { flex-direction: column; gap: 2.2rem; }
  .thread-svg { display: none; }
  .thread-step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; }
  .thread-knot { margin: 0; flex-shrink: 0; }
  .thread-step p { margin: 0; }
  .thread-mobile-line {
    position: absolute;
    left: 27px;
    top: 54px;
    bottom: 54px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--gold) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
}

/* ---------- FAQ ---------- */
.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
}
.accordion-item:first-of-type { border-top: 1px solid var(--border); }

.accordion-button {
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--dark);
  padding: 1.4rem 0.2rem;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
}
.accordion-button::after {
  background-image: none;
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.accordion-body {
  padding: 0 0.2rem 1.5rem;
  color: var(--text-light);
  font-size: 0.94rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  /* background: var(--cream); */
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: var(--white);
  border: 1px solid var(--border);
}

.whatsapp-pill {
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.92rem;
}
.whatsapp-pill i { color: #3DA857; font-size: 1.3rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.site-footer h5 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.site-footer .brand-mark { color: var(--white); }
.site-footer .brand-mark small { color: rgba(255,255,255,0.5); }
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  margin: 1.1rem 0 1.5rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
/* .footer-links li { margin-bottom: 0.75rem; } */
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 3px; }

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--gold); margin-top: 0.15rem; }

.social-row { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
}

/* ---------- Modal ---------- */
.modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 1.6rem;
}
.modal-header .modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.modal-body { padding: 1.6rem; }
.modal-product-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1.2rem;
}
.modal-product-img img { width: 100%; height: 100%; object-fit: cover; }

.spec-table { width: 100%; font-size: 0.9rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 0.6rem 0; }
.spec-table td:first-child {
  color: var(--text-light);
  font-weight: 600;
  width: 40%;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 1040;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 575.98px) {
  .section { padding: 2.75rem 0; }
  .hero-btn-row .btn { width: 100%; justify-content: center; }
  .final-cta .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem;}
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-btn-row .btn { flex: 1 1 auto; text-align: center; }
}