/* ==========================================================================
   AVORA — Handcrafted Soap Store
   Palette pulled from the AVORA logo: blush pink + deep wine/burgundy + gold
   ========================================================================== */

:root {
  --wine: #7a2340;
  --wine-dark: #591931;
  --wine-light: #a34a63;
  --gold: #c9a463;
  --gold-light: #e8d5ab;
  --blush: #f6dde2;
  --blush-soft: #fdf2f0;
  --cream: #fffaf7;
  --text: #3a2530;
  --text-light: #8a6b74;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(122, 35, 64, 0.12);
  --shadow-lg: 0 20px 50px rgba(122, 35, 64, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --ff-head: "Playfair Display", Georgia, serif;
  --ff-body: "Poppins", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; color: var(--wine-dark); }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.section-head p { color: var(--text-light); font-size: 1.02rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(122, 35, 64, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(122, 35, 64, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--wine);
  color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b3894b);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 164, 99, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(201, 164, 99, 0.45); }

.btn-full { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------------- reveal on scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================= HEADER ============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 35, 64, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(122, 35, 64, 0.08); }

.top-bar { background: var(--wine-dark); padding: 8px 24px; }
.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-tagline {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--blush-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-bar-social { display: flex; gap: 12px; flex-shrink: 0; }
.top-bar-social a { display: flex; color: var(--blush-soft); opacity: 0.85; transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease; }
.top-bar-social a:hover { opacity: 1; color: var(--gold-light); transform: translateY(-1px); }
.top-bar-social svg { width: 14px; height: 14px; }
@media (max-width: 560px) { .top-bar-tagline { display: none; } .top-bar { padding: 8px 24px; } .top-bar-inner { justify-content: flex-end; } }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand span {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wine-dark);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { width: 100%; }

/* Nav dropdown — desktop only */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
/* Remove underline animation on dropdown trigger */
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  position: static !important;
  width: 6px !important; height: 6px !important;
  background: transparent !important;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 3px;
  margin-bottom: 2px;
  transition: transform 0.22s ease;
}
.has-dropdown:hover > a::after { transform: rotate(-135deg); margin-bottom: -2px; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(122,35,64,0.14);
  min-width: 148px;
  flex-direction: column;
  z-index: 500;
  padding: 14px 0 6px;
  list-style: none;
}
.has-dropdown:hover .nav-dropdown { display: flex; }
.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  position: static;
}
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown li a:hover { background: var(--blush); color: var(--wine); }

@media (max-width: 760px) {
  .nav-dropdown { display: none !important; }
  .has-dropdown > a::after { display: none !important; }
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-shop-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(122, 35, 64, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(122, 35, 64, 0.35); }
.nav-shop-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
@media (max-width: 480px) {
  .nav-actions { gap: 8px; }
  .nav-shop-btn { padding: 8px 12px; gap: 5px; font-size: 0.72rem; }
  .nav-shop-btn svg { width: 14px; height: 14px; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 18px; height: 18px; }
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine-dark);
  transition: transform 0.25s ease, background 0.25s ease;
}
.icon-btn:hover { background: var(--gold-light); transform: translateY(-2px) rotate(-6deg); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--wine);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.4s ease; }
@keyframes bump { 0%{transform:scale(1)} 40%{transform:scale(1.5)} 100%{transform:scale(1)} }

.menu-toggle { display: none; width: 30px; height: 22px; position: relative; }
.menu-toggle span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--wine-dark);
  transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  padding: 200px 24px 100px;
  background: radial-gradient(circle at 15% 20%, var(--blush) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, var(--gold-light) 0%, transparent 40%),
              var(--cream);
  overflow: hidden;
}

/* Banner hero — left-side overlay so dark text stays readable */
.hero-banner {
  background-image:
    linear-gradient(to right, rgba(255,248,243,0.88) 40%, transparent 60%),
    url('/assets/banner/avora-hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 260px 24px 160px;
}
.hero-banner .hero-text .section-tag {
  color: var(--wine);
  text-shadow: none;
}
.hero-banner .hero-text h1 {
  color: var(--text-dark);
  text-shadow: none;
}
.hero-banner .hero-text h1 em {
  color: var(--wine);
}
.hero-banner .hero-text p {
  color: var(--text-mid);
  text-shadow: none;
}
.hero-banner .btn-outline {
  color: var(--wine);
  border-color: var(--wine);
}
.hero-banner .btn-outline:hover {
  background: var(--wine);
  color: #fff;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text .section-tag { margin-bottom: 16px; }
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--wine);
  position: relative;
}
.hero-text p {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.08);} }

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

/* ============================= TRUST BAR ============================= */
.trust-bar {
  background: var(--wine-dark);
  color: var(--blush-soft);
  padding: 26px 24px;
}
.trust-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-grid div { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-grid svg { width: 26px; height: 26px; color: var(--gold-light); }
.trust-grid span { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em; }

/* ============================= CATEGORY STRIP (home) ============================= */
.category-strip { padding: 90px 24px 20px; }
.category-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease, color 0.3s ease;
}
.category-icon svg { width: 24px; height: 24px; }
.category-card:hover .category-icon { background: var(--wine); color: #fff; }
.category-card h3 { font-size: 1rem; margin-bottom: 6px; }
.category-card p { font-size: 0.84rem; color: var(--text-light); }

@media (max-width: 860px) { .category-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .category-grid { grid-template-columns: 1fr; } }

/* ============================= ABOUT ============================= */
.about {
  padding: 100px 24px;
}
.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img { transition: transform 0.6s ease; }
.about-media:hover img { transform: scale(1.06); }

.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }

.about-points { margin-top: 26px; display: grid; gap: 14px; }
.about-points li {
  display: flex; align-items: center; gap: 12px; font-weight: 500;
}
.about-points svg { width: 22px; height: 22px; color: var(--wine); flex-shrink: 0; }

/* ============================= PAGE HERO (Shop/About/Contact) ============================= */
.page-hero {
  padding: 190px 24px 60px;
  text-align: center;
  background: radial-gradient(circle at 15% 20%, var(--blush) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, var(--gold-light) 0%, transparent 40%),
              var(--cream);
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================= CATEGORY TABS ============================= */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
}
.cat-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid rgba(122, 35, 64, 0.18);
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.cat-tab:hover { border-color: var(--gold); color: var(--wine); }
.cat-tab.active { background: var(--wine); border-color: var(--wine); color: #fff; }

.featured-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.featured-head .section-head { text-align: left; margin: 0; }
.featured-head .section-head p { margin: 0; }

/* ============================= PRODUCTS ============================= */
.products { padding: 100px 24px; background: var(--blush-soft); }

.product-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.product-thumb { display: block; position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-thumb img { transform: scale(1.12) rotate(1deg); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--wine);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.product-quick {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(89, 25, 49, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}
.product-card:hover .product-quick { opacity: 1; }
.quick-add {
  background: var(--white);
  color: var(--wine-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  transform: translateY(14px);
  transition: transform 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.product-card:hover .quick-add { transform: translateY(0); }

.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 1.12rem; }
.product-body h3 a { color: inherit; transition: color 0.2s ease; }
.product-body h3 a:hover { color: var(--wine); }
.product-tagline { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.product-desc { font-size: 0.86rem; color: var(--text-light); flex: 1; margin: 6px 0 14px; }

.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.price { font-family: var(--ff-head); font-weight: 700; color: var(--wine-dark); font-size: 1.15rem; }
.price sup { font-size: 0.7rem; font-weight: 600; }

.add-cart-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--wine);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}
.add-cart-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.add-cart-btn:hover { background: var(--wine-dark); transform: translateY(-2px); }
.add-cart-btn.added { background: #3d8b5f; }

/* ============================= CUSTOM CTA ============================= */
.custom-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom-cta::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,164,99,0.25), transparent 70%);
  top: -200px; right: -100px;
}
.custom-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.custom-cta p { max-width: 560px; margin: 0 auto 30px; color: var(--blush-soft); }
.custom-cta .btn-gold { position: relative; z-index: 1; }

/* ============================= CONTACT ============================= */
.contact { padding: 100px 24px; }
.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info { padding-top: 34px; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail svg { width: 22px; height: 22px; color: var(--wine); flex-shrink: 0; margin-top: 3px; }
.contact-detail strong { display: block; font-size: 0.95rem; }
.contact-detail span { font-size: 0.88rem; color: var(--text-light); }

.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush); color: var(--wine-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.social-row a:hover { background: var(--wine); color: #fff; transform: translateY(-4px); }
.social-row svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.field input, .field textarea, .field select {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #eee0e3;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--blush-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-msg { font-size: 0.85rem; min-height: 20px; }
.form-msg.ok { color: #2f7a4d; }
.form-msg.err { color: #b03052; }

/* ============================= FOOTER ============================= */
.site-footer {
  background: var(--wine-dark);
  color: var(--blush-soft);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand span { font-family: var(--ff-head); font-size: 1.3rem; color: #fff; }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.75); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--wine-dark); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }

.payment-icons { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ============================= CART DRAWER ============================= */
.overlay {
  position: fixed; inset: 0;
  background: rgba(58, 37, 48, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: var(--cream);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(122,35,64,0.1);
}
.cart-head h3 { font-size: 1.3rem; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--blush); transition: transform 0.25s ease; }
.cart-close:hover { transform: rotate(90deg); background: var(--gold-light); }
.cart-close svg { width: 18px; height: 18px; color: var(--wine-dark); }

.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-light); }
.cart-empty svg { width: 60px; height: 60px; color: var(--blush); margin: 0 auto 16px; }

.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(122,35,64,0.12); animation: slideIn 0.35s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px);} to { opacity: 1; transform: translateX(0);} }
.cart-item img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item-info h4 { font-size: 0.94rem; font-family: var(--ff-body); font-weight: 600; }
.cart-item-price { font-size: 0.85rem; color: var(--text-light); }
.qty-row { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.qty-btn { width: 24px; height: 24px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--wine-dark); transition: background 0.2s ease; }
.qty-btn:hover { background: var(--gold-light); }
.qty-val { font-weight: 600; min-width: 18px; text-align: center; }
.remove-item { margin-left: auto; color: var(--text-light); font-size: 0.78rem; text-decoration: underline; }
.remove-item:hover { color: var(--wine); }

.cart-footer { padding: 20px 24px 26px; border-top: 1px solid rgba(122,35,64,0.1); }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 16px; font-size: 1.05rem; }
.cart-note { font-size: 0.76rem; color: var(--text-light); text-align: center; margin-top: 10px; }

/* ============================= TOAST ============================= */
.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--wine-dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-light); }

/* ============================= PRODUCT SPOTLIGHTS ============================= */
.prod-spotlight {
  padding: 90px 24px;
  background: var(--cream);
}
.prod-spot-alt {
  background: var(--blush-soft);
}
.prod-spot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.prod-spot-alt .prod-spot-inner {
  direction: rtl;
}
.prod-spot-alt .prod-spot-inner > * {
  direction: ltr;
}
.prod-spot-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.prod-spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.prod-spot-img:hover img { transform: scale(1.04); }

.prod-spot-text .section-tag { margin-bottom: 14px; }
.prod-spot-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.prod-spot-text > p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 460px;
}
.spot-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.spot-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.spot-points svg { width: 18px; height: 18px; color: var(--wine); flex-shrink: 0; }
.spot-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--wine);
  font-family: var(--font-heading);
  margin-bottom: 24px;
}
.spot-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .prod-spot-inner { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .prod-spot-alt .prod-spot-inner { direction: ltr; }
  .prod-spot-img { max-width: 480px; margin: 0 auto; }
  .prod-spot-text > p { max-width: 100%; }
}
@media (max-width: 480px) {
  .prod-spotlight { padding: 60px 16px; }
  .prod-spot-inner { gap: 28px; }
  .prod-spot-text h2 { font-size: 1.7rem; }
  .spot-price { font-size: 1.4rem; }
  .spot-actions { flex-direction: column; }
  .spot-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  /* Banner: switch to top-to-bottom overlay on tablet/mobile */
  .hero-banner {
    background-image:
      linear-gradient(to bottom, rgba(255,248,243,0.82) 0%, rgba(255,248,243,0.72) 60%, rgba(255,248,243,0.45) 100%),
      url('/assets/banner/avora-hero-banner.jpg');
    padding: 140px 24px 80px;
    background-position: center center;
  }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 18px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 900;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  /* Product grids become a swipeable single-card slider on mobile. */
  .product-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 4px 16px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .product-body { padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}

/* ============================= MOBILE EXTRA FIXES ============================= */
@media (max-width: 640px) {
  /* Inner-page hero — kill the giant top blank */
  .page-hero { padding: 110px 24px 40px; }
  .page-hero h1 { font-size: 1.9rem; }

  /* Category strip on home — less top gap */
  .category-strip { padding: 60px 24px 20px; }

  /* Category tabs (shop) — horizontal scroll, no wrapping */
  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    padding-left: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { flex-shrink: 0; }
}

@media (max-width: 520px) {
  /* Category grid — 2-column even on small mobile, compact cards */
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 20px 12px; }
  .category-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .category-icon svg { width: 20px; height: 20px; }
  .category-card h3 { font-size: 0.9rem; }
  .category-card p { font-size: 0.78rem; }
}

@media (max-width: 640px) {
  /* Hero banner — mobile: compact padding, bigger text readability */
  .hero-banner {
    background-image:
      linear-gradient(to bottom, rgba(255,248,243,0.88) 0%, rgba(255,248,243,0.75) 55%, rgba(255,248,243,0.4) 100%),
      url('/assets/banner/avora-hero-banner.jpg');
    padding: 110px 20px 60px;
    background-position: 70% center;
  }
  .hero-banner .hero-text h1 { font-size: 2.2rem; }
  .hero-banner .hero-text p { font-size: 0.95rem; }
  .hero-banner .hero-actions { flex-direction: column; gap: 12px; }
  .hero-banner .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
