@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');:root {
  /* Core Colors */
  --bg: #F5F5DC;
  --bg-alt: #EFEBD8; /* Slightly darker beige for variation */
  --bg-dark: #D2B48C; /* Tan Frost */
  --text: #5D4037; /* Espresso */
  --muted: #8d6e63;
  --gold: #D4AF37;
  --gold-soft: #E5C17A;
  --brand-gradient: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
  --brand-shadow: 0 10px 25px rgba(62, 39, 35, 0.15);
  --brand-text: #F5F5DC;

  /* Semantic Colors */
  --error: #D32F2F;
  --success: #388E3C;
  --tag-text: #F5F5DC;

  /* Component Styles */
  --box-bg: #D2B48C; /* Tan Frost for cards */
  --box-border: rgba(93, 64, 55, 0.15);
  --box-shadow: rgba(93, 64, 55, 0.12);

  /* UI Elements */
  --header-bg: rgba(245, 245, 220, 0.9);
  --glass-bg: rgba(93, 64, 55, 0.08);
  --overlay-bg: rgba(93, 64, 55, 0.4);
  --btn-primary-text: #F5F5DC;

  /* Fonts */
  --heading: 'Georgia', 'Times New Roman', serif;
  --sans: Inter, 'Segoe UI', Arial, sans-serif;

  font: 16px/1.55 var(--sans);
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
}

a,
button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

#root {
  min-height: 100svh;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -0.03em;
}

::selection {
  background: rgba(166, 124, 0, 0.28);
  color: #3E2723;
}
.page-shell {
  position: relative;
  overflow: clip;
  background: var(--bg);
}

.page-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, var(--gold), transparent 35%),
    radial-gradient(circle at 80% 18%, var(--gold-soft), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 45%, var(--bg-dark) 100%);
  z-index: -2;
}

.sticky-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-shell::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(78, 52, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 52, 46, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.site-header {
  backdrop-filter: blur(20px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--box-border);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  /* Reduced from 10px */
  font-size: 0.88rem;
  color: var(--muted);
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  /* Reduced from 12px */
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-text);
  background: var(--brand-gradient);
  box-shadow: var(--brand-shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.nav-link,
.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-link:hover,
.nav-link.active,
.footer-grid a:hover,
.topbar a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.shop-product-card {
  background: var(--box-bg);
  border-radius: 24px;
  border: 1px solid var(--box-border);
  box-shadow: 0 10px 30px var(--box-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--box-shadow);
}

.shop-product-media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-alt);
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-product-card:hover .shop-product-image {
  transform: scale(1.08);
}

.shop-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-product-body h3 {
  font-size: 1.2rem;
  margin: 0;
}

.tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--text);
}

.price-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-block strong {
  font-size: 1.1rem;
  color: var(--text);
}

.price-block span {
  font-size: 0.9rem;
  opacity: 0.6;
  text-decoration: line-through;
  margin-left: 8px;
}

.shop-product-description {
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.add-to-cart-button {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-button:hover {
  background: var(--gold);
}

.quick-view-button {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--box-border);
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
}

.cart-button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cart-button,
.secondary-button {
  background: var(--box-border);
  color: var(--text);
  border: 1px solid var(--box-border);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  /* Reduced from 12px 18px */
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
}

.primary-button {
  color: var(--bg);
  /* Beige text */
  background: var(--text);
  /* Dark brown (Espresso) background */
  box-shadow: 0 12px 24px var(--box-shadow);
}

.primary-button:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.secondary-button {
  color: var(--text);
}

.small-button {
  padding: 11px 18px;
  font-size: 0.95rem;
}

.cart-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

h1,
h2,
h3 {
  color: var(--text);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  margin: 10px 0 20px;
  color: var(--text);
  font-weight: 800;
}

.section-heading h2 {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}

.hero-subtitle {
  font-family: var(--heading);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-description {
  max-width: 56ch;
  font-size: 1.02rem;
  color: var(--muted);
  align-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 28px 0 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.product-tag,
.hero-float,
.hero-stat {
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}

.hero-points span,
.hero-float {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
}

.hero-visual {
  grid-column: 2 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-boxes {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  position: relative;
}

.hero-box {
  position: relative;
  background: var(--box-bg);
  border: 1px solid var(--box-border);
  border-radius: 32px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--box-shadow);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(245, 211, 139, 0.3);
}

.hero-box.box-1 {
  width: min(300px, 45vw);
  height: min(400px, 60vh);
  z-index: 1;
}

.hero-box.box-2 {
  width: min(260px, 40vw);
  height: min(340px, 50vh);
  margin-bottom: 50px;
  z-index: 2;
}

.hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(0.9);
}

.box-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--box-border);
  box-shadow: 0 10px 30px var(--box-shadow);
}

.box-overlay span {
  white-space: nowrap;
}

.box-overlay svg {
  color: var(--gold-soft);
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}



@media (max-width: 768px) {

  .hero-nuts-top,
  .hero-choco-bottom {
    transform: scale(0.65);
    /* Additional stacking logic would go here if needed */
  }

  .hero-nuts-top {
    top: 5%;
    right: -10%;
  }

  .hero-choco-bottom {
    bottom: 5%;
    right: -15%;
  }
}

.hero-grid {
  display: grid;
  gap: 18px;
}

.hero-grid img,
.category-card img,
.product-image,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-grid-primary {
  position: absolute;
  inset: 58px 40px 180px 110px;
  grid-template-columns: 0.9fr 1.1fr;
}

.hero-grid-primary img,
.hero-grid-secondary img,
.hero-stat {
  border-radius: 30px;
  box-shadow: 0 24px 60px var(--box-shadow);
}

.hero-grid-primary img:first-child {
  transform: translateY(48px);
}

.hero-grid-primary img:last-child {
  transform: translateY(-8px);
}

.hero-grid-secondary {
  position: absolute;
  inset: 260px 0 0 60px;
  width: min(54%, 320px);
}

.hero-grid-secondary img {
  height: 240px;
}

.hero-stat {
  min-height: 160px;
  padding: 24px;
  display: grid;
  align-content: end;
  background: linear-gradient(180deg, var(--gold), var(--glass-bg));
}

.hero-stat strong {
  font-family: var(--heading);
  font-size: 3rem;
  color: var(--text);
}

.hero-stat span {
  color: var(--muted);
}

.hero-float {
  position: absolute;
}

.hero-float-left {
  top: 40px;
  left: 10px;
}

.hero-float-right {
  bottom: 72px;
  right: 10px;
}

.section {
  padding: 54px 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.about-copy,
.about-points {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  border-radius: 28px;
  padding: 28px;
}

.about-copy p:last-child {
  color: var(--muted);
  max-width: 48ch;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points div {
  border-radius: 22px;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--box-border);
}

.about-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--heading);
  font-size: 1.1rem;
}

.about-points span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.newsletter-copy h2,
.promo-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--text);
}

.category-grid,
.product-grid,
.featured-grid,
.testimonial-grid,
.blog-grid,
.banner-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.testimonial-card,
.blog-card,
.newsletter,
.promo-banner {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  box-shadow: 0 20px 50px var(--box-shadow);
}

.category-card,
.product-card,
.blog-card {
  overflow: hidden;
  border-radius: 26px;
}

.category-card {
  display: grid;
  grid-template-rows: 240px 1fr;
}

.category-card div,
.product-content,
.blog-card div,
.testimonial-card {
  padding: 22px;
}

.category-card h3,
.product-content h3,
.blog-card h3 {
  margin: 0 0 10px;
  color: var(--text);
}

.category-card p,
.product-content p,
.newsletter-copy p,
.testimonial-card p,
.blog-card span,
.site-footer p,
.shop-product-description {
  color: var(--text);
  /* Explicitly dark espresso */
  font-weight: 500;
}

.product-grid,
.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-grid .product-card.featured {
  border-color: rgba(245, 211, 139, 0.18);
}

.product-image-wrap {
  position: relative;
  height: 220px;
}

.product-image {
  height: 100%;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--tag-text);
}

.product-content {
  display: grid;
  gap: 18px;
}

.product-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.price-row {
  display: grid;
  gap: 4px;
}

.price-row strong {
  color: var(--text);
  font-size: 1.15rem;
}

.price-row span {
  color: var(--text);
  opacity: 0.6;
  text-decoration: line-through;
}

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

.promo-banner {
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  min-height: 300px;
  background:
    linear-gradient(rgba(93, 64, 55, 0.4), rgba(93, 64, 55, 0.7)),
    url('/assets/BG1.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

.promo-banner-alt {
  background:
    linear-gradient(rgba(93, 64, 55, 0.4), rgba(93, 64, 55, 0.7)),
    url('/assets/BG2.jpeg');
  background-size: cover;
  background-position: center;
}

.promo-banner h2 {
  max-width: 14ch;
  color: var(--bg);
}

.promo-banner p {
  max-width: 42ch;
  margin-top: 10px;
  color: var(--bg);
}

.promo-banner .eyebrow {
  color: var(--gold);
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  border-radius: 24px;
  display: grid;
  gap: 16px;
}

.testimonial-card footer {
  color: var(--gold-soft);
  font-weight: 700;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card img {
  height: 220px;
}

.newsletter {
  margin: 20px auto 0;
  width: min(1180px, calc(100% - 40px));
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, var(--gold), var(--muted)),
    var(--box-bg);
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
  color: var(--text);
  padding: 14px 18px;
}

.newsletter-form input::placeholder {
  color: rgba(220, 203, 180, 0.6);
}

.site-footer {
  padding: 42px 0 24px;
  margin-top: 24px;
  border-top: 1px solid var(--box-border);
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--text);
}

.footer-grid>div {
  display: grid;
  gap: 10px;
}

.footer-brand {
  margin-bottom: 10px;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--box-border);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


@media (max-width: 820px) {

  .container,
  .newsletter {
    width: min(100% - 24px, 100%);
  }

  .topbar,
  .hero-section,
  .newsletter,
  .promo-banner,
  .newsletter-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .topbar,
  .navbar {
    gap: 12px;
  }

  .navbar,
  .hero-section,
  .newsletter {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cart-button {
    justify-self: start;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-grid-primary {
    inset: 22px 0 120px 0;
  }

  .hero-grid-secondary {
    inset: 190px 0 0 0;
    width: 70%;
  }

  .about-section,
  .category-grid,
  .product-grid,
  .featured-grid,
  .testimonial-grid,
  .blog-grid,
  .banner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-footer,
  .copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-banner {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .topbar-group {
    gap: 10px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-grid-secondary {
    width: 82%;
  }

  .hero-grid-primary {
    grid-template-columns: 1fr;
  }

  .hero-grid-primary img:first-child,
  .hero-grid-primary img:last-child {
    transform: none;
    height: 180px;
  }

  .hero-stat {
    min-height: 140px;
  }

  .newsletter-form {
    gap: 10px;
  }
}

.brand-button {
  background: transparent;
  padding: 0;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.section-tinted {
  padding: 24px 0 54px;
  position: relative;
  padding-bottom: 6px;
}

.home-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.home-mini-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.home-mini-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.home-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.home-mini-card:hover img {
  transform: scale(1.05);
}

.mini-add-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.home-mini-card:hover .mini-add-button {
  opacity: 1;
  transform: translateY(0);
}

.mini-add-button:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.45);
}

.home-mini-card div {
  padding: 16px;
}

.home-mini-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.home-mini-card p {
  color: var(--text);
  font-weight: 700;
}

.sale-ribbon-mini {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--text);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-price {
  margin: 0;
  font-size: 1rem;
}

.original-price-mini {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.6;
  text-decoration: line-through;
}

.mini-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.mini-add-text-button {
  border: 1px solid var(--gold-soft);
  background: transparent;
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-add-text-button:hover {
  background: var(--gold-soft);
  color: var(--text);
}

.mini-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mini-quick-view-button {
  background: transparent;
  border: 1px solid var(--box-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-quick-view-button:hover {
  background: var(--glass-bg);
  color: var(--text);
  border-color: var(--gold-soft);
}

.featured-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 32px;
  background:
    linear-gradient(135deg, rgba(245, 232, 218, 0.96), rgba(234, 219, 200, 0.94)),
    radial-gradient(circle at top right, rgba(166, 124, 0, 0.12), transparent 25%),
    radial-gradient(circle at left, rgba(62, 39, 35, 0.05), transparent 22%);
  border-bottom: 1px solid var(--box-border);
}

.shop-hero-shimmer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 220, 153, 0.16), transparent 0 8px),
    radial-gradient(circle at 65% 18%, rgba(255, 236, 200, 0.14), transparent 0 6px),
    radial-gradient(circle at 88% 58%, rgba(245, 211, 139, 0.12), transparent 0 7px);
  opacity: 0.8;
  animation: shimmerDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 220px;
  display: flex;
  align-items: end;
}

.shop-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  color: var(--text);
}

.shop-hero p:not(.breadcrumb) {
  color: var(--muted);
  font-size: 1.05rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.breadcrumb button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0 8px;
}

.shop-toolbar p {
  color: var(--muted);
  font-weight: 600;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filters-trigger,
.sort-select select,
.view-toggle button,
.close-filters,
.pagination-row button,
.sale-chip,
.rating-chip,
.filter-link,
.mobile-filters-fab {
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filters-trigger,
.sort-select select {
  padding: 12px 16px;
}

.sort-select select {
  min-width: 210px;
  appearance: none;
}

.view-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: var(--glass-bg);
}

.view-toggle button {
  width: 42px;
  height: 42px;
}

.view-toggle .active,
.filters-trigger:hover,
.pagination-row button:hover,
.sale-chip.active,
.rating-chip.active,
.filter-link.active,
.view-toggle button.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  border-color: transparent;
}

.shop-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 18px 0 48px;
}

.shop-sidebar {
  position: relative;
}

.shop-sidebar-panel {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--box-border);
  background: rgba(234, 219, 200, 0.92);
  box-shadow: 0 24px 50px var(--box-shadow);
}

.shop-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-sidebar-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
}

.shop-search input {
  width: 100%;
  border: 1px solid var(--box-shadow);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
}

.shop-search input::placeholder {
  color: rgba(253, 246, 236, 0.5);
}

.filter-chip-row {
  display: flex;
  gap: 10px;
}

.sale-chip,
.rating-chip,
.filter-link {
  padding: 11px 14px;
  cursor: pointer;
}

.filter-group h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.filter-list {
  display: grid;
  gap: 10px;
}

.filter-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.filter-link strong {
  color: var(--gold-soft);
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.dual-slider {
  position: relative;
  display: grid;
  gap: 12px;
}

.dual-slider input[type='range'] {
  width: 100%;
  accent-color: var(--gold);
}

.apply-button {
  width: 100%;
  margin-top: 8px;
}

.rating-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(166, 124, 0, 0.25);
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.4));
}

.promo-card strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.promo-card p {
  color: var(--muted);
}

.shop-grid-area {
  min-width: 0;
}

.shop-products {
  display: grid;
  gap: 18px;
}

.shop-products.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-products.list {
  grid-template-columns: 1fr;
}

.shop-products.list .shop-product-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.shop-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  box-shadow: 0 20px 42px var(--box-border);
}

.shop-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.shop-product-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--box-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  background: var(--box-bg);
  border-color: rgba(166, 124, 0, 0.3);
  box-shadow: 0 20px 40px rgba(62, 39, 35, 0.2);
}

.shop-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-product-card:hover .shop-product-image {
  transform: scale(1.1);
}

.sale-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 16px rgba(201, 168, 76, 0.2);
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.wishlist-button:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.wishlist-button.active {
  background: rgba(166, 124, 0, 0.15);
  color: #A67C00;
  border-color: rgba(166, 124, 0, 0.3);
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 52, 46, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 4;
}

.overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.shop-product-card:hover .quick-view-overlay {
  opacity: 1;
}

.shop-product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.shop-product-body h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
  font-family: var(--heading);
  line-height: 1.2;
}

.tagline {
  font-size: 0.8rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-block strong {
  font-size: 1.1rem;
  color: #A67C00;
}

.price-block span {
  font-size: 0.85rem;
  color: var(--overlay-bg);
  text-decoration: line-through;
  margin-left: 8px;
}

.shop-product-description {
  display: none;
  /* Hide on grid view for cleanliness */
}

.add-to-cart-button {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.3);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.shop-product-card:hover .add-to-cart-button {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
}

.add-to-cart-button::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  transition: transform 220ms ease;
  z-index: 0;
}

.add-to-cart-button .button-label {
  position: relative;
  z-index: 1;
}

.add-to-cart-button:hover::after,
.add-to-cart-button.is-added::after {
  transform: scaleX(1);
}

.add-to-cart-button:hover,
.add-to-cart-button.is-added {
  color: var(--text);
  border-color: transparent;
  transform: translateY(-1px);
}

.reveal-grid .reveal {
  animation: rise 700ms ease both;
}

.pagination-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.pagination-row button {
  padding: 12px 16px;
}

.pagination-row button.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  border-color: transparent;
}

.pagination-row button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mobile-filters-fab,
.mobile-filter-sheet {
  display: none;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 40;
}

.quick-view-modal {
  position: fixed;
  z-index: 200;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 40px));
  max-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--box-border);
  box-shadow: 0 40px 100px rgba(62, 39, 35, 0.3);
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.modal-copy h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--text);
}

.modal-price-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.modal-price-row strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.modal-price-row span {
  color: var(--overlay-bg);
  text-decoration: line-through;
}

.modal-description {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.custom-text-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-text-field label {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
}

.custom-text-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--box-border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-text-field input:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(229, 193, 122, 0.2);
}

/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--text);
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  white-space: nowrap;
}

.toast-notification.success .toast-content {
  border-color: var(--gold);
}

.toast-notification.info .toast-content {
  border-color: var(--muted);
}

.toast-icon {
  color: var(--gold);
}

/* ========== PRODUCT CARD ACTIONS ========== */
.shop-product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.add-to-cart-button {
  width: 100%;
  background: var(--gold);
  color: var(--btn-primary-text);
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s;
}

.add-to-cart-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.quick-view-button {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  font-size: 1.4rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #A67C00, #5D4037);
  color: var(--bg);
  font-weight: 800;
  box-shadow: 0 18px 42px var(--box-shadow);
}

@keyframes shimmerDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(8px, -12px, 0) scale(1.02);
  }
}

@media (max-width: 1200px) {
  .shop-layout {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .shop-products.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .mobile-filters-fab {
    display: inline-flex;
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 35;
    padding: 14px 20px;
    box-shadow: 0 18px 40px var(--box-shadow);
  }

  .mobile-filter-sheet {
    display: block;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 45;
    transform: translateY(100%);
    transition: transform 240ms ease;
  }

  .mobile-filter-sheet[data-open='true'] {
    transform: translateY(0);
  }

  .mobile-filter-sheet .shop-sidebar-panel {
    border-radius: 28px 28px 0 0;
    max-height: min(84vh, 760px);
    overflow: auto;
    border-bottom: 0;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .shop-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .shop-products.grid,
  .shop-products.list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-product-card {
    border-radius: 16px;
  }

  .shop-product-body {
    padding: 10px;
    gap: 8px;
  }

  .shop-product-body h3 {
    font-size: 1rem;
  }

  .tagline {
    font-size: 0.7rem;
  }

  .price-block strong {
    font-size: 0.95rem;
  }

  .add-to-cart-button {
    padding: 10px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  .wishlist-button {
    width: 32px;
    height: 32px;
  }

  .wishlist-button svg {
    width: 14px;
    height: 14px;
  }

  .shop-products.list .shop-product-card {
    grid-template-columns: 1fr;
  }

  .quick-view-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

  .modal-media img {
    height: 260px;
  }

  .home-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shop-toolbar-right {
    width: 100%;
  }

  .sort-select,
  .sort-select select,
  .filters-trigger,
  .view-toggle {
    width: 100%;
  }

  .view-toggle {
    justify-content: center;
  }

  .price-rating-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-serf,
  .tagline {
    letter-spacing: 0.12em;
  }

  .toast {
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .shop-product-body h3 {
    font-size: 1.15rem;
    margin: 4px 0;
  }

  .shop-product-body .tagline,
  .shop-product-body .shop-product-description {
    display: none;
  }

  .shop-product-card {
    padding: 12px;
    border-radius: 20px;
  }

  .quick-view-hint {
    opacity: 1;
  }

  .shop-hero-inner {
    min-height: 180px;
  }
}

@media (max-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .carousel-mobile {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-mobile::-webkit-scrollbar {
    display: none;
  }

  .carousel-mobile .testimonial-card {
    min-width: 85%;
    scroll-snap-align: center;
    margin: 0;
  }

  .testimonial-nav-mobile {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .testimonial-nav-mobile .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--glass-bg);
  }

  .testimonial-nav-mobile .dot:first-child {
    background: var(--gold-soft);
  }
}

.slide-from-top {
  animation: slide-from-top 1s ease-out forwards;
}

.slide-from-bottom {
  animation: slide-from-bottom 1s ease-out forwards;
}

@keyframes slide-from-top {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-from-bottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* No floating images styles needed anymore */

.logo {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand .logo {
  height: 70px;
}

/* ========== HAMBURGER MENU STYLES ========== */

.hamburger-menu {
  display: none;
  flex-direction: column;
  background: var(--box-border);
  border: 1px solid var(--box-border);
  cursor: pointer;
  gap: 5px;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 8px;
  margin-left: 0;
}

.hamburger-menu:hover {
  background: var(--box-border);
  transform: scale(1.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hamburger-menu .hamburger-line.open:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu .hamburger-line.open:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu .hamburger-line.open:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 100%;
  max-width: 320px;
  background: var(--bg);
  background-image:
    radial-gradient(circle at top right, var(--gold), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--box-border);
  box-shadow: -20px 0 60px var(--box-shadow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  padding: 14px 18px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  border-radius: 12px;
  display: block;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--delay) * 0.1s + 0.2s);
}

.mobile-nav-link:hover {
  color: var(--text);
  background: var(--box-border);
  padding-left: 24px;
}

.mobile-nav-link.active {
  color: var(--text);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding-left: 24px;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--box-border);
}

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
}

.mobile-menu.open .mobile-menu-section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease 0.6s;
}

.mobile-menu-title {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
  font-weight: 700;
}

.mobile-menu-link {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-link:hover {
  color: var(--text);
  transform: translateX(5px);
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.mobile-contact-link:hover {
  color: var(--text);
}

.cart-button-mobile {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  background: linear-gradient(135deg, rgba(245, 211, 139, 0.15), var(--box-border));
  border: 1px solid rgba(245, 211, 139, 0.25);
  padding: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.open .cart-button-mobile {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease 0.8s;
}

.cart-button-mobile:hover {
  background: linear-gradient(135deg, rgba(245, 211, 139, 0.25), var(--box-border));
}

/* ========== FADE-IN SCROLL ANIMATIONS ========== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-visible .fade-in-left,
.fade-in-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-visible .fade-in-right,
.fade-in-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-visible .fade-in-scale,
.fade-in-scale.is-visible {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

/* Staggered Delay Utilities */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ========== RESPONSIVE MOBILE STYLES ========== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 0 60px;
    gap: 40px;
    text-align: center;
  }

  .hero-visual {
    grid-row: 1;
    justify-content: center;
    padding-top: 20px;
  }

  .hero-boxes {
    gap: 16px;
    justify-content: center;
  }

  .hero-box.box-1 {
    width: 160px;
    height: 220px;
  }

  .hero-box.box-2 {
    width: 140px;
    height: 190px;
    margin-bottom: 30px;
  }

  .box-overlay {
    padding: 8px 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 0.75rem;
    gap: 8px;
  }

  .box-overlay svg {
    width: 14px;
    height: 14px;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin: 0 auto 12px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hamburger-menu {
    display: flex;
    margin-left: 0;
  }

  .topbar-desktop {
    display: none;
  }

  .nav-links-desktop {
    display: none;
  }

  .cart-button-desktop {
    display: none;
  }

  .navbar {
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
  }

  .brand {
    margin-right: auto;
  }

  .mobile-menu {
    display: block;
    max-width: 100%;
  }

  .site-header {
    z-index: 25;
  }
}

@media (max-width: 480px) {
  .hero-boxes {
    gap: 8px;
    transform: scale(0.9);
    margin-top: 10px;
  }

  .hero-box.box-1 {
    width: 130px;
    height: 180px;
  }

  .hero-box.box-2 {
    width: 110px;
    height: 150px;
    margin-bottom: 15px;
  }

  .box-overlay {
    padding: 5px 8px;
    font-size: 0.6rem;
    border-radius: 10px;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  color: var(--text);
  transition: color 0.3s, transform 0.3s;
}

.footer-social-link:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }

  .hero-visual {
    display: none !important;
    /* Hide hero images on mobile */
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .quick-view-modal {
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    width: min(340px, calc(100% - 24px));
    overflow-y: auto;
    overflow-x: hidden;
  }

  .modal-media {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
  }

  .modal-media img {
    height: 160px;
  }

  .modal-copy {
    padding: 16px;
    gap: 12px;
    overflow-y: visible;
    width: 100%;
  }

  .modal-copy h3 {
    font-size: 1.2rem;
  }

  .modal-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .modal-price-row strong {
    font-size: 1.1rem;
  }

  .custom-text-field {
    margin-bottom: 8px;
    gap: 2px;
  }

  .custom-text-field input {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .modal-copy .primary-button {
    padding: 10px;
    font-size: 0.9rem;
  }
}

.logo {
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.sold-out-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3e2723;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- DESIGN SYSTEM TOKENS --- */

:root {
  --mn-primary: #3E2723;
  --mn-primary-light: #5D4037;
  --mn-secondary: #D4AF37;
  --mn-secondary-light: #E6C57D;
  --mn-bg: #FCFAF5;
  --mn-card-bg: #FFFFFF;
  --mn-text: #2D1B18;
  --mn-text-muted: #8D6E63;
  --mn-border: rgba(62, 39, 35, 0.08);
  --mn-success: #2E7D32;
  --mn-warning: #F57F17;
  --mn-error: #C62828;
  --mn-info: #1565C0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(62, 39, 35, 0.08);
  --shadow-lg: 0 16px 48px rgba(62, 39, 35, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* --- RESET & GLOBAL --- */

.admin-body {
  margin: 0;
  padding: 0;
  background-color: var(--mn-bg);
  color: var(--mn-text);
  font-family: var(--mn-body);
  -webkit-font-smoothing: antialiased;
}

.admin-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
                    radial-gradient(circle at 100% 100%, rgba(62, 39, 35, 0.03) 0%, transparent 40%);
}

/* --- NAVIGATION --- */

.admin-header {
  height: 72px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mn-border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--mn-primary);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--mn-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.admin-nav {
  display: flex;
  gap: 8px;
  margin-left: 3rem;
}

.admin-nav-item {
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mn-text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-nav-item:hover {
  color: var(--mn-primary);
  background: rgba(62, 39, 35, 0.04);
}

.admin-nav-item.active {
  color: var(--mn-primary);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.admin-nav-button {
  background: transparent;
  border: none;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mn-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.admin-nav-button:hover {
  color: var(--mn-primary);
}

.admin-nav-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62, 39, 35, 0.04);
  border-radius: inherit;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.2s ease;
}

.admin-nav-button:hover::after {
  transform: scale(1);
  opacity: 1;
}

.admin-nav-button.active::after {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1);
  opacity: 1;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-nav-button.active {
  color: var(--mn-primary);
  transform: translateY(-1px);
}

.admin-signout-btn {
  background: transparent;
  border: 1px solid rgba(198, 40, 40, 0.2);
  color: var(--mn-error);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-signout-btn:hover {
  background: var(--mn-error);
  color: white;
  border-color: var(--mn-error);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.2);
}

/* --- MAIN CONTENT --- */

.admin-main {
  padding: 2.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.page-title h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--mn-primary);
}

.page-title p {
  margin: 8px 0 0;
  color: var(--mn-text-muted);
  font-size: 1rem;
}

/* --- STAT CARDS --- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--mn-card-bg);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--mn-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.stat-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mn-text-muted);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--mn-primary);
  font-family: var(--font-heading);
}

.stat-footer {
  font-size: 0.85rem;
  color: var(--mn-text-muted);
}

/* --- DATA TABLE --- */

.data-table-wrapper {
  background: var(--mn-card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mn-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 1.25rem 1.5rem;
  background: rgba(62, 39, 35, 0.02);
  border-bottom: 1px solid var(--mn-border);
  color: var(--mn-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--mn-border);
  font-size: 0.95rem;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(212, 175, 55, 0.02);
}

/* --- BADGES --- */

.badge {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-pending { background: #FFF9C4; color: #F57F17; }

.badge-processing { background: #E3F2FD; color: #1565C0; }

.badge-completed { background: #E8F5E9; color: #2E7D32; }

.badge-cancelled { background: #FFEBEE; color: #C62828; }

.badge-stock { background: #F3F0E6; color: var(--mn-primary); }

/* --- BUTTONS --- */

.btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--mn-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.25);
}

.btn-primary:hover {
  background: var(--mn-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.35);
}

.btn-outline {
  background: white;
  border: 2px solid var(--mn-border);
  color: var(--mn-primary);
}

.btn-outline:hover {
  border-color: var(--mn-primary);
  background: rgba(62, 39, 35, 0.02);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Spin animation for refresh icon */

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- DIALOG / MODAL --- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 39, 35, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--mn-primary);
}

.modal-header p {
  margin: 8px 0 0;
  color: var(--mn-text-muted);
  font-size: 0.9rem;
}

.modal-body {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mn-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--mn-border);
  background: #F9F8F4;
  font-size: 1rem;
  font-family: var(--mn-body);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--mn-secondary);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.modal-footer {
  margin-top: 2.5rem;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* --- LOGIN PAGE --- */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mn-bg);
  background-image: radial-gradient(circle at 10%, 10%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  padding: 20px;
}

.login-card {
  background: white;
  width: 100%;
  max-width: 400px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mn-border);
  text-align: center;
}

.login-header {
  margin-bottom: 2.5rem;
}

.lock-icon {
  width: 60px;
  height: 60px;
  background: var(--mn-primary);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(62, 39, 35, 0.2);
}

.login-header h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 0;
  color: var(--mn-primary);
}

.login-header p {
  color: var(--mn-text-muted);
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.login-input-group {
  position: relative;
  margin-bottom: 1rem;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mn-text-muted);
}

.login-input-group input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: var(--radius-md);
  border: 2px solid var(--mn-border);
  background: #F9F8F4;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.login-input-group input:focus {
  border-color: var(--mn-primary);
  background: white;
  outline: none;
}

.login-button {
  width: 100%;
  padding: 14px;
  background: var(--mn-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.login-button:hover {
  background: var(--mn-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.2);
}

.login-error {
  color: var(--mn-error);
  background: rgba(198, 40, 40, 0.05);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-top: 1rem;
  font-weight: 600;
}

/* --- MOBILE RESPONSIVE --- */

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .admin-header {
    padding: 0 1rem;
    height: auto;
    min-height: 72px;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
  
  .admin-logo {
    padding: 12px 0;
    justify-content: space-between;
  }

  .admin-nav {
    display: flex;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
  }
  
  .admin-nav::-webkit-scrollbar {
    display: none;
  }
  
  .admin-nav-item, .admin-nav-button {
    padding: 8px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .admin-main {
    padding: 1.5rem 1rem;
  }
  
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .page-title h1 {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.25rem;
  }

  .data-table-wrapper {
    overflow-x: auto;
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .data-table th, .data-table td {
    padding: 1rem;
    min-width: 120px;
  }

  .data-table td:first-child {
    min-width: 100px;
  }

  .data-table td:nth-child(2) {
    min-width: 180px;
  }
  
  .modal-content {
    padding: 1.5rem;
    max-width: none;
    width: 100%;
    border-radius: 24px 24px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .admin-signout-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .stat-value {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
:root {
  --about-bg: var(--bg);
  --about-panel: var(--box-bg);
  --about-gold: var(--gold);
  --about-offwhite: var(--text);
}

.about-page {
  color: var(--about-offwhite);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page .about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-page * {
  text-align: center;
}

/* Animations are now managed globally in App.css */

.about-hero {
  min-height: 340px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, var(--gold), transparent 20%),
    radial-gradient(circle at 20% 80%, var(--glass-bg), transparent 16%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero h1,
.about-cta h2,
.about-section h2,
.testimonial-section h2 {
  font-family: var(--heading);
  color: var(--about-offwhite);
  margin: 0;
}

.about-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin: 12px 0 10px;
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.about-hero hr {
  margin: 24px 0 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--about-gold), transparent);
}

.breadcrumb,
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.split-layout,
.values-section,
.timeline-section,
.team-section {
  padding: 72px 0;
}

.split-layout-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.reverse-layout {
  flex-direction: column;
}

.section-image-wrap,
.section-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-image-wrap img {
  width: 100%;
  max-width: 800px;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px var(--box-shadow);
}

.section-copy .eyebrow,
.values-section .eyebrow,
.timeline-section .eyebrow,
.team-section .eyebrow,
.testimonial-section .eyebrow,
.about-newsletter .eyebrow {
  color: var(--about-gold);
}

.section-copy h2,
.values-section h2,
.timeline-section h2,
.team-section h2,
.testimonial-section h2,
.about-cta h2,
.about-newsletter h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
  width: 100%;
}

.section-copy p,
.mission-inner p,
.value-card p,
.team-card p,
.testimonial-slide p,
.about-cta p,
.about-newsletter p,
.newsletter-message,
.timeline-card p {
  color: var(--muted);
}

.gold-button {
  border-radius: 999px;
  border: 1px solid var(--about-gold);
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.gold-button.filled {
  background: var(--about-gold);
  color: var(--bg);
  box-shadow: 0 18px 30px var(--box-shadow);
}

.gold-button.outlined {
  background: transparent;
  color: var(--about-gold);
}

.gold-button:hover {
  transform: translateY(-2px);
}

.mission-section {
  padding: 78px 0;
  background: var(--bg-dark);
}

.mission-inner {
  max-width: 900px;
  position: relative;
  text-align: center;
  padding: 42px 24px;
  border-radius: 30px;
  background: radial-gradient(circle, var(--gold), transparent 60%);
  box-shadow: 0 0 90px var(--box-shadow);
}

.quote-mark {
  color: var(--about-gold);
  font-size: 5rem;
  line-height: 1;
}

.mission-inner blockquote {
  margin: 12px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-family: var(--heading);
}

.values-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  justify-items: center;
}

.value-card,
.team-card,
.timeline-card,
.testimonial-slide,
.about-newsletter,
.about-cta-inner {
  background: var(--glass-bg);
  border: 1px solid var(--box-border);
  border-radius: 28px;
}

.value-card {
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.value-icon {
  font-size: 2.4rem;
  display: inline-flex;
  margin-bottom: 14px;
}

.value-card h3,
.team-card h3,
.timeline-card h3,
.testimonial-slide strong {
  color: var(--about-offwhite);
  margin: 0 0 10px;
}

.stats-section {
  padding: 72px 0;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(212,175,55,0.12);
  transition: background 0.3s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(212,175,55,0.06);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212,175,55,0.12);
  color: var(--about-gold);
  margin-bottom: 4px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  font-family: var(--heading);
  color: var(--about-offwhite);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(212,175,55,0.12);
  }
}

.timeline-wrap {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--box-border);
  transform: translateX(-50%);
  display: block;
}

.timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--about-gold);
  transition: height 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-section.fade-in-visible .timeline-line::after {
  height: 100%;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
}

.timeline-item.right .timeline-card,
.timeline-item.left .timeline-card {
  /* reset grid behavior */
}

.timeline-dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--about-gold);
  background: var(--about-bg);
  z-index: 2;
}

.timeline-card {
  padding: 24px;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.year-badge {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--about-gold);
  color: var(--bg);
  font-weight: 800;
}

.team-card {
  padding: 24px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px var(--box-shadow);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: border-color 180ms ease, transform 180ms ease;
}

.team-card:hover img {
  border-color: var(--about-gold);
  transform: scale(1.03);
}

.team-role {
  color: var(--about-gold);
  font-weight: 700;
}

.testimonial-section {
  padding: 72px 0;
  overflow: hidden;
}

.testimonial-carousel {
  margin-top: 26px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 500ms ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slide strong {
  display: block;
  margin-top: 16px;
  color: var(--about-gold);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.testimonial-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(253, 246, 236, 0.32);
}

.testimonial-dots button.active {
  background: var(--about-gold);
}

.about-cta {
  padding: 72px 0;
  background: var(--bg-dark);
}

.about-cta-inner {
  padding: 36px;
  text-align: center;
}

.about-cta-actions,
.about-newsletter-form {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-newsletter {
  margin: 48px auto 0;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.about-newsletter-form input {
  min-width: min(420px, 100%);
  border-radius: 999px;
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
  color: var(--about-offwhite);
  padding: 14px 18px;
}

.about-newsletter-form input::placeholder {
  color: rgba(253, 246, 236, 0.45);
}

.newsletter-message {
  text-align: center;
  color: var(--about-gold);
}

@media (max-width: 768px) {
  .split-layout-inner,
  .reverse-layout,
  .values-grid,
  .team-grid,
  .stats-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .reverse-layout {
    flex-direction: column;
  }

  .split-layout-inner,
  .reverse-layout {
    flex-direction: column;
  }

  .timeline-line,
  .timeline-dot {
    display: none;
  }

  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card {
    /* No longer needed */
  }

  .about-newsletter-form input {
    min-width: 100%;
  }
}
:root{
  --contact-bg: var(--bg);
  --contact-panel: var(--box-bg);
  --contact-gold: var(--gold);
  --contact-off: var(--text);
}

.contact-page{ color: var(--contact-off); background: linear-gradient(180deg, var(--bg), var(--bg-alt)); }
.contact-hero{ padding:72px 0; background: linear-gradient(135deg, var(--bg) 0%, var(--box-bg) 100%); }
.contact-hero .container{ position:relative }
.contact-hero h1{ font-size:clamp(2.2rem,5vw,3.6rem); margin:0 0 10px }
.contact-hero p{ color: var(--text) }
.contact-hero hr{ height:2px; border:0; background: linear-gradient(90deg,transparent,var(--contact-gold),transparent); margin-top:18px }
.fade-on-mount{ opacity:0; transform: translateY(18px); transition: all 560ms ease; }
.fade-on-mount.visible{ opacity:1; transform: translateY(0); }

.contact-main{ padding:56px 0 }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:28px }
.info-card{ background:var(--contact-panel); padding:20px; margin-bottom:24px; border-left:6px solid var(--contact-gold); border-radius:12px; display:flex; gap:16px; align-items:flex-start; transition: transform 180ms ease, box-shadow 180ms ease }
.info-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px var(--box-shadow) }
.info-icon{ font-size:2rem; color:var(--contact-gold); background:var(--overlay-bg); padding:8px; border-radius:12px }
.info-title{ font-weight:700; color:var(--text); margin:0 }
.info-detail{ color:var(--text); margin:4px 0 }
.info-sub{ color: var(--text); margin:0 }

.social-row { 
  display: flex; 
  flex-direction: column;
  gap: 16px; 
  margin-top: 32px; 
  align-items: flex-start; 
}

.social-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-button { 
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  border: 1.5px solid var(--contact-gold); 
  display: grid; 
  place-items: center; 
  background: transparent; 
  color: var(--contact-gold); 
  transition: all 0.3s ease; 
}
.social-button:hover{ background:var(--text); color:var(--bg); transform: scale(1.06) }

.contact-form-panel{ background:var(--contact-panel); padding:20px; border-radius:12px }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px }
.field input, .field select, .field textarea{ padding:16px 18px; font-size:1.05rem; border-radius:10px; border:1px solid var(--box-border); background:var(--glass-bg); color:var(--contact-off); }
.field textarea{ min-height:120px; resize:vertical }
.error{ color:#ff6b6b; font-size:0.9rem }
.submit-row{ margin-top:12px }
.submit-button{ width:100%; padding:14px; border-radius:999px; border:0; background:var(--contact-gold); color:var(--contact-bg); font-weight:800 }
.submit-button:disabled{ opacity:0.6 }
.spinner{ width:18px; height:18px; border-radius:50%; border:2px solid rgba(0,0,0,0.12); border-top-color: rgba(0,0,0,0.6); animation: spin 900ms linear infinite }
@keyframes spin{ to{ transform: rotate(360deg) } }

.success-state{ display:grid; gap:12px; align-items:center; justify-items:center; padding:36px }
.checkmark{ font-size:4rem; color:var(--contact-gold); animation: pop 420ms ease both }
@keyframes pop{ from{ transform: scale(0.2); opacity:0 } to{ transform: scale(1); opacity:1 } }

.custom-banner{ padding:48px 0; background:var(--overlay-bg); text-align:center; border-top:1px solid var(--box-border) }
.custom-banner .gold-outline{ border:1px solid var(--contact-gold); color:var(--contact-gold); background:transparent; padding:10px 16px; border-radius:999px }

.faq-section{ padding:48px 0 }
.faq-item{ background: var(--glass-bg); padding:14px; border-radius:10px; margin-bottom:10px; overflow:hidden; transition: background 220ms }
.faq-question{ display:flex; justify-content:space-between; align-items:center; cursor:pointer }
.faq-answer{ max-height:0; transition: max-height 320ms ease; color: var(--muted); margin-top:8px }
.faq-open .faq-answer{ max-height:200px }
.faq-toggle{ transform: rotate(0); transition: transform 220ms }
.faq-open .faq-toggle{ transform: rotate(45deg) }

.map-section{ padding:48px 0 }
.map-frame{ border:4px solid var(--contact-gold); border-radius:12px; overflow:hidden }
.map-addr{ margin-top:8px; color:var(--contact-off) }

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 16px;
    gap: 12px;
  }

  .info-icon {
    font-size: 1.5rem;
    padding: 6px;
  }

  .contact-hero {
    padding: 40px 0;
  }

  .social-row {
    align-items: center;
    margin-bottom: 32px;
  }
}

.contact-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-main .contact-grid {
  align-items: flex-start;
  justify-content: center;
}

.contact-form-panel {
  margin: 0 auto;
}
.cart-page {
  padding-bottom: 80px;
}

.cart-header-section {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--box-border);
}

.cart-header-section h1 {
  font-size: 3rem;
  margin: 16px 0 8px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 40px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-items-header {
  display: grid;
  grid-template-columns: 1fr 120px 100px;
  padding: 0 24px 16px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-bottom: 1px solid var(--box-border);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 120px 100px;
  gap: 24px;
  align-items: center;
  background: var(--box-bg);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--box-border);
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: var(--box-bg);
  border-color: var(--gold);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1210;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.item-price {
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 4px;
}

.item-size {
  font-size: 0.85rem;
  color: var(--muted);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
}

.quantity-controls button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--glass-bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-controls button:hover {
  background: var(--glass-bg);
}

.quantity-value {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: var(--error);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-left: 12px;
}

.remove-item:hover {
  background: var(--error);
  transform: scale(1.1);
}

.cart-item-total {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: right;
}

.cart-actions-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.summary-card {
  position: sticky;
  top: 100px;
  background: var(--box-bg);
  background-image: radial-gradient(circle at top right, var(--gold), transparent 70%);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--box-border);
  box-shadow: 0 20px 40px var(--box-shadow);
}

.summary-card h2 {
  margin: 0 0 24px;
  font-size: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted);
}

.summary-row.total {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 24px;
}

.shipping-hint {
  font-size: 0.85rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.progress-bar {
  height: 6px;
  background: var(--box-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-button {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 8px;
}

.secure-payment-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.empty-cart-content {
  text-align: center;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.empty-cart-content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.empty-cart-content svg {
  color: var(--gold-soft);
  opacity: 0.5;
}

.empty-cart-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
}

.empty-cart-icon-circle {
  width: 120px;
  height: 120px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.empty-cart-content h1 {
  font-family: var(--heading);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.empty-cart-content p {
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-header-section {
    padding: 60px 0 32px;
  }
  
  .cart-header-section h1 {
    font-size: 2.25rem;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    padding: 16px;
    gap: 16px;
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
    grid-row: span 1;
  }
  
  .cart-item-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--box-border);
  }
  
  .cart-item-total {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
    font-size: 1rem;
  }
  
  .cart-actions-row {
    flex-direction: column;
  }
  
  .cart-actions-row button {
    width: 100%;
  }

  .desktop-only {
    display: none;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 13, 10, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: modalFadeIn 0.3s ease-out;
}

.order-success-card {
  background: #FDF8F5; /* Cream */
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid #E5C9A5; /* Gold soft */
  animation: modalScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #3E2723; /* Brown */
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.close-modal:hover {
  opacity: 1;
}

.success-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.success-check {
  color: white;
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3E2723;
  margin-bottom: 12px;
}

.success-message {
  color: #5D4037;
  line-height: 1.6;
  margin-bottom: 24px;
}

.order-details-box {
  background: white;
  border: 1px dashed #D4AF37; /* Gold */
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.order-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8D6E63;
}

.order-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3E2723;
}

.email-hint {
  font-size: 0.9rem;
  color: #795548;
  margin-bottom: 32px;
  font-style: italic;
}

.done-btn {
  width: 100%;
  background: #3E2723;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.done-btn:hover {
  background: #2D1B18;
  transform: translateY(-2px);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* ========================================
   CHECKOUT PAGE — Premium Styles
   ======================================== */

:root {
  --chk-bg: var(--bg);
  --chk-gold: var(--gold);
  --chk-off: var(--text);
}

/* Hero */
.checkout-hero {
  padding: 56px 0 40px;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  color: var(--chk-off);
}

.checkout-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 8px 0;
}

.checkout-hero hr {
  border: none;
  border-top: 1px solid rgba(62, 39, 35, 0.1);
  margin-top: 20px;
}

/* Main Layout */
.checkout-main { padding: 40px 0 80px; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* Stepper */
.stepper {
  display: flex;
  gap: 0;
  align-items: center;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--box-bg);
  border-radius: 16px;
  border: 1px solid var(--box-border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.step div:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted, #8D6E63);
}

.circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(62, 39, 35, 0.06);
  color: var(--chk-off);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.circle.active {
  background: linear-gradient(135deg, var(--chk-gold), var(--gold-soft, #E6C57D));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

/* Form Card */
.form-card {
  background: var(--box-bg);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--box-border);
  box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
}

.form-card h3, .form-card h4 {
  margin: 0 0 20px;
  font-weight: 800;
  color: var(--chk-off);
  font-size: 1.25rem;
}

/* Input Groups */
.chk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.chk-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chk-off);
  letter-spacing: 0.01em;
}

.chk-field input,
.chk-field textarea,
.chk-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--box-border);
  background: var(--bg, #FCFAF5);
  color: var(--chk-off);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}

.chk-field input:focus,
.chk-field textarea:focus,
.chk-field select:focus {
  border-color: var(--chk-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
  background: var(--bg-alt, #fff);
}

/* Error state */
.chk-field input.error,
.chk-field textarea.error,
.chk-field select.error {
  border-color: #C62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
}

.chk-field .error-msg {
  font-size: 0.8rem;
  color: #C62828;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Two-column inputs */
.chk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Textarea */
.chk-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* Select arrow */
.chk-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238D6E63' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Delivery option radio */
.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--box-border);
  cursor: pointer;
  transition: border-color 0.2s ease;
  margin-bottom: 8px;
}

.delivery-option:has(input:checked) {
  border-color: var(--chk-gold);
  background: rgba(212, 175, 55, 0.04);
}

.delivery-option input[type="radio"] {
  accent-color: var(--chk-gold);
  width: 18px;
  height: 18px;
}

/* Payment method */
.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--box-border);
  cursor: pointer;
  transition: border-color 0.2s ease;
  margin-bottom: 8px;
  font-weight: 600;
}

.payment-method:has(input:checked) {
  border-color: var(--chk-gold);
  background: rgba(212, 175, 55, 0.04);
}

.payment-method input[type="radio"] {
  accent-color: var(--chk-gold);
  width: 18px;
  height: 18px;
}

/* Terms checkbox */
.chk-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--box-border);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.chk-terms input[type="checkbox"] {
  accent-color: var(--chk-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Step navigation buttons */
.chk-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.chk-nav .back-btn {
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid var(--box-border);
  background: transparent;
  color: var(--chk-off);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.chk-nav .back-btn:hover {
  border-color: var(--chk-gold);
  background: rgba(212, 175, 55, 0.04);
}

.chk-nav .next-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--chk-gold), var(--gold-soft, #E6C57D));
  color: #2D1B18;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.chk-nav .next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.chk-nav .next-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Order review items */
.order-review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--box-border);
  font-size: 0.9rem;
}

.order-review-item:last-child { border-bottom: none; }

.order-review-item .item-name { font-weight: 600; color: var(--chk-off); }
.order-review-item .item-price { font-weight: 800; color: var(--chk-gold); }

/* Summary Card */
.sticky-summary { position: sticky; top: 100px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--box-border);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--chk-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .chk-row { grid-template-columns: 1fr; }
  .form-card { padding: 20px; }
  .sticky-summary { position: static; }
}
.page-shell {
  position: relative;
  overflow: clip;
  background: var(--bg);
}

.page-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, var(--gold), transparent 35%),
    radial-gradient(circle at 80% 18%, var(--gold-soft), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 45%, var(--bg-dark) 100%);
  z-index: -2;
}

.sticky-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-shell::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(78, 52, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 52, 46, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.site-header {
  backdrop-filter: blur(20px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--box-border);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  /* Reduced from 10px */
  font-size: 0.88rem;
  color: var(--muted);
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  /* Reduced from 12px */
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-text);
  background: var(--brand-gradient);
  box-shadow: var(--brand-shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.nav-link,
.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-link:hover,
.nav-link.active,
.footer-grid a:hover,
.topbar a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.shop-product-card {
  background: var(--box-bg);
  border-radius: 24px;
  border: 1px solid var(--box-border);
  box-shadow: 0 10px 30px var(--box-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--box-shadow);
}

.shop-product-media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-alt);
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-product-card:hover .shop-product-image {
  transform: scale(1.08);
}

.shop-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-product-body h3 {
  font-size: 1.2rem;
  margin: 0;
}

.tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--text);
}

.price-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-block strong {
  font-size: 1.1rem;
  color: var(--text);
}

.price-block span {
  font-size: 0.9rem;
  opacity: 0.6;
  text-decoration: line-through;
  margin-left: 8px;
}

.shop-product-description {
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.add-to-cart-button {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-button:hover {
  background: var(--gold);
}

.quick-view-button {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--box-border);
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
}

.cart-button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cart-button,
.secondary-button {
  background: var(--box-border);
  color: var(--text);
  border: 1px solid var(--box-border);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  /* Reduced from 12px 18px */
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
}

.primary-button {
  color: var(--bg);
  /* Beige text */
  background: var(--text);
  /* Dark brown (Espresso) background */
  box-shadow: 0 12px 24px var(--box-shadow);
}

.primary-button:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.secondary-button {
  color: var(--text);
}

.small-button {
  padding: 11px 18px;
  font-size: 0.95rem;
}

.cart-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

h1,
h2,
h3 {
  color: var(--text);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  margin: 10px 0 20px;
  color: var(--text);
  font-weight: 800;
}

.section-heading h2 {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}

.hero-subtitle {
  font-family: var(--heading);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-description {
  max-width: 56ch;
  font-size: 1.02rem;
  color: var(--muted);
  align-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 28px 0 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.product-tag,
.hero-float,
.hero-stat {
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}

.hero-points span,
.hero-float {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
}

.hero-visual {
  grid-column: 2 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-boxes {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  position: relative;
}

.hero-box {
  position: relative;
  background: var(--box-bg);
  border: 1px solid var(--box-border);
  border-radius: 32px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--box-shadow);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(245, 211, 139, 0.3);
}

.hero-box.box-1 {
  width: min(300px, 45vw);
  height: min(400px, 60vh);
  z-index: 1;
}

.hero-box.box-2 {
  width: min(260px, 40vw);
  height: min(340px, 50vh);
  margin-bottom: 50px;
  z-index: 2;
}

.hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(0.9);
}

.box-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--box-border);
  box-shadow: 0 10px 30px var(--box-shadow);
}

.box-overlay span {
  white-space: nowrap;
}

.box-overlay svg {
  color: var(--gold-soft);
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {

  .hero-nuts-top,
  .hero-choco-bottom {
    transform: scale(0.65);
    /* Additional stacking logic would go here if needed */
  }

  .hero-nuts-top {
    top: 5%;
    right: -10%;
  }

  .hero-choco-bottom {
    bottom: 5%;
    right: -15%;
  }
}

.hero-grid {
  display: grid;
  gap: 18px;
}

.hero-grid img,
.category-card img,
.product-image,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-grid-primary {
  position: absolute;
  inset: 58px 40px 180px 110px;
  grid-template-columns: 0.9fr 1.1fr;
}

.hero-grid-primary img,
.hero-grid-secondary img,
.hero-stat {
  border-radius: 30px;
  box-shadow: 0 24px 60px var(--box-shadow);
}

.hero-grid-primary img:first-child {
  transform: translateY(48px);
}

.hero-grid-primary img:last-child {
  transform: translateY(-8px);
}

.hero-grid-secondary {
  position: absolute;
  inset: 260px 0 0 60px;
  width: min(54%, 320px);
}

.hero-grid-secondary img {
  height: 240px;
}

.hero-stat {
  min-height: 160px;
  padding: 24px;
  display: grid;
  align-content: end;
  background: linear-gradient(180deg, var(--gold), var(--glass-bg));
}

.hero-stat strong {
  font-family: var(--heading);
  font-size: 3rem;
  color: var(--text);
}

.hero-stat span {
  color: var(--muted);
}

.hero-float {
  position: absolute;
}

.hero-float-left {
  top: 40px;
  left: 10px;
}

.hero-float-right {
  bottom: 72px;
  right: 10px;
}

.section {
  padding: 54px 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.about-copy,
.about-points {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  border-radius: 28px;
  padding: 28px;
}

.about-copy p:last-child {
  color: var(--muted);
  max-width: 48ch;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points div {
  border-radius: 22px;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--box-border);
}

.about-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--heading);
  font-size: 1.1rem;
}

.about-points span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.newsletter-copy h2,
.promo-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--text);
}

.category-grid,
.product-grid,
.featured-grid,
.testimonial-grid,
.blog-grid,
.banner-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.testimonial-card,
.blog-card,
.newsletter,
.promo-banner {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  box-shadow: 0 20px 50px var(--box-shadow);
}

.category-card,
.product-card,
.blog-card {
  overflow: hidden;
  border-radius: 26px;
}

.category-card {
  display: grid;
  grid-template-rows: 240px 1fr;
}

.category-card div,
.product-content,
.blog-card div,
.testimonial-card {
  padding: 22px;
}

.category-card h3,
.product-content h3,
.blog-card h3 {
  margin: 0 0 10px;
  color: var(--text);
}

.category-card p,
.product-content p,
.newsletter-copy p,
.testimonial-card p,
.blog-card span,
.site-footer p,
.shop-product-description {
  color: var(--text);
  /* Explicitly dark espresso */
  font-weight: 500;
}

.product-grid,
.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-grid .product-card.featured {
  border-color: rgba(245, 211, 139, 0.18);
}

.product-image-wrap {
  position: relative;
  height: 220px;
}

.product-image {
  height: 100%;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--tag-text);
}

.product-content {
  display: grid;
  gap: 18px;
}

.product-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.price-row {
  display: grid;
  gap: 4px;
}

.price-row strong {
  color: var(--text);
  font-size: 1.15rem;
}

.price-row span {
  color: var(--text);
  opacity: 0.6;
  text-decoration: line-through;
}

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

.promo-banner {
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  min-height: 300px;
  background:
    linear-gradient(rgba(93, 64, 55, 0.4), rgba(93, 64, 55, 0.7)),
    url('/assets/BG1.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

.promo-banner-alt {
  background:
    linear-gradient(rgba(93, 64, 55, 0.4), rgba(93, 64, 55, 0.7)),
    url('/assets/BG2.jpeg');
  background-size: cover;
  background-position: center;
}

.promo-banner h2 {
  max-width: 14ch;
  color: var(--bg);
}

.promo-banner p {
  max-width: 42ch;
  margin-top: 10px;
  color: var(--bg);
}

.promo-banner .eyebrow {
  color: var(--gold);
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  border-radius: 24px;
  display: grid;
  gap: 16px;
}

.testimonial-card footer {
  color: var(--gold-soft);
  font-weight: 700;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card img {
  height: 220px;
}

.newsletter {
  margin: 20px auto 0;
  width: min(1180px, calc(100% - 40px));
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, var(--gold), var(--muted)),
    var(--box-bg);
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
  color: var(--text);
  padding: 14px 18px;
}

.newsletter-form input::placeholder {
  color: rgba(220, 203, 180, 0.6);
}

.site-footer {
  padding: 42px 0 24px;
  margin-top: 24px;
  border-top: 1px solid var(--box-border);
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--text);
}

.footer-grid>div {
  display: grid;
  gap: 10px;
}

.footer-brand {
  margin-bottom: 10px;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--box-border);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {

  .container,
  .newsletter {
    width: min(100% - 24px, 100%);
  }

  .topbar,
  .hero-section,
  .newsletter,
  .promo-banner,
  .newsletter-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .topbar,
  .navbar {
    gap: 12px;
  }

  .navbar,
  .hero-section,
  .newsletter {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cart-button {
    justify-self: start;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-grid-primary {
    inset: 22px 0 120px 0;
  }

  .hero-grid-secondary {
    inset: 190px 0 0 0;
    width: 70%;
  }

  .about-section,
  .category-grid,
  .product-grid,
  .featured-grid,
  .testimonial-grid,
  .blog-grid,
  .banner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-footer,
  .copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-banner {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .topbar-group {
    gap: 10px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-grid-secondary {
    width: 82%;
  }

  .hero-grid-primary {
    grid-template-columns: 1fr;
  }

  .hero-grid-primary img:first-child,
  .hero-grid-primary img:last-child {
    transform: none;
    height: 180px;
  }

  .hero-stat {
    min-height: 140px;
  }

  .newsletter-form {
    gap: 10px;
  }
}

.brand-button {
  background: transparent;
  padding: 0;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.section-tinted {
  padding: 24px 0 54px;
  position: relative;
  padding-bottom: 6px;
}

.home-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.home-mini-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--box-border);
  background: var(--glass-bg);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.home-mini-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.home-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.home-mini-card:hover img {
  transform: scale(1.05);
}

.mini-add-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.home-mini-card:hover .mini-add-button {
  opacity: 1;
  transform: translateY(0);
}

.mini-add-button:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.45);
}

.home-mini-card div {
  padding: 16px;
}

.home-mini-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.home-mini-card p {
  color: var(--text);
  font-weight: 700;
}

.sale-ribbon-mini {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--text);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-price {
  margin: 0;
  font-size: 1rem;
}

.original-price-mini {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.6;
  text-decoration: line-through;
}

.mini-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.mini-add-text-button {
  border: 1px solid var(--gold-soft);
  background: transparent;
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-add-text-button:hover {
  background: var(--gold-soft);
  color: var(--text);
}

.mini-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mini-quick-view-button {
  background: transparent;
  border: 1px solid var(--box-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-quick-view-button:hover {
  background: var(--glass-bg);
  color: var(--text);
  border-color: var(--gold-soft);
}

.featured-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 32px;
  background:
    linear-gradient(135deg, rgba(245, 232, 218, 0.96), rgba(234, 219, 200, 0.94)),
    radial-gradient(circle at top right, rgba(166, 124, 0, 0.12), transparent 25%),
    radial-gradient(circle at left, rgba(62, 39, 35, 0.05), transparent 22%);
  border-bottom: 1px solid var(--box-border);
}

.shop-hero-shimmer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 220, 153, 0.16), transparent 0 8px),
    radial-gradient(circle at 65% 18%, rgba(255, 236, 200, 0.14), transparent 0 6px),
    radial-gradient(circle at 88% 58%, rgba(245, 211, 139, 0.12), transparent 0 7px);
  opacity: 0.8;
  animation: shimmerDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 220px;
  display: flex;
  align-items: end;
}

.shop-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  color: var(--text);
}

.shop-hero p:not(.breadcrumb) {
  color: var(--muted);
  font-size: 1.05rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.breadcrumb button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0 8px;
}

.shop-toolbar p {
  color: var(--muted);
  font-weight: 600;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filters-trigger,
.sort-select select,
.view-toggle button,
.close-filters,
.pagination-row button,
.sale-chip,
.rating-chip,
.filter-link,
.mobile-filters-fab {
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filters-trigger,
.sort-select select {
  padding: 12px 16px;
}

.sort-select select {
  min-width: 210px;
  appearance: none;
}

.view-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: var(--glass-bg);
}

.view-toggle button {
  width: 42px;
  height: 42px;
}

.view-toggle .active,
.filters-trigger:hover,
.pagination-row button:hover,
.sale-chip.active,
.rating-chip.active,
.filter-link.active,
.view-toggle button.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  border-color: transparent;
}

.shop-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 18px 0 48px;
}

.shop-sidebar {
  position: relative;
}

.shop-sidebar-panel {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--box-border);
  background: rgba(234, 219, 200, 0.92);
  box-shadow: 0 24px 50px var(--box-shadow);
}

.shop-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-sidebar-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
}

.shop-search input {
  width: 100%;
  border: 1px solid var(--box-shadow);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
}

.shop-search input::placeholder {
  color: rgba(253, 246, 236, 0.5);
}

.filter-chip-row {
  display: flex;
  gap: 10px;
}

.sale-chip,
.rating-chip,
.filter-link {
  padding: 11px 14px;
  cursor: pointer;
}

.filter-group h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.filter-list {
  display: grid;
  gap: 10px;
}

.filter-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.filter-link strong {
  color: var(--gold-soft);
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.dual-slider {
  position: relative;
  display: grid;
  gap: 12px;
}

.dual-slider input[type='range'] {
  width: 100%;
  accent-color: var(--gold);
}

.apply-button {
  width: 100%;
  margin-top: 8px;
}

.rating-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(166, 124, 0, 0.25);
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.4));
}

.promo-card strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.promo-card p {
  color: var(--muted);
}

.shop-grid-area {
  min-width: 0;
}

.shop-products {
  display: grid;
  gap: 18px;
}

.shop-products.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-products.list {
  grid-template-columns: 1fr;
}

.shop-products.list .shop-product-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.shop-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  box-shadow: 0 20px 42px var(--box-border);
}

.shop-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.shop-product-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--box-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  background: var(--box-bg);
  border-color: rgba(166, 124, 0, 0.3);
  box-shadow: 0 20px 40px rgba(62, 39, 35, 0.2);
}

.shop-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-product-card:hover .shop-product-image {
  transform: scale(1.1);
}

.sale-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 16px rgba(201, 168, 76, 0.2);
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.wishlist-button:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.wishlist-button.active {
  background: rgba(166, 124, 0, 0.15);
  color: #A67C00;
  border-color: rgba(166, 124, 0, 0.3);
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 52, 46, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 4;
}

.overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.shop-product-card:hover .quick-view-overlay {
  opacity: 1;
}

.shop-product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.shop-product-body h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
  font-family: var(--heading);
  line-height: 1.2;
}

.tagline {
  font-size: 0.8rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-block strong {
  font-size: 1.1rem;
  color: #A67C00;
}

.price-block span {
  font-size: 0.85rem;
  color: var(--overlay-bg);
  text-decoration: line-through;
  margin-left: 8px;
}

.shop-product-description {
  display: none;
  /* Hide on grid view for cleanliness */
}

.add-to-cart-button {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.3);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.shop-product-card:hover .add-to-cart-button {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
}

.add-to-cart-button::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  transition: transform 220ms ease;
  z-index: 0;
}

.add-to-cart-button .button-label {
  position: relative;
  z-index: 1;
}

.add-to-cart-button:hover::after,
.add-to-cart-button.is-added::after {
  transform: scaleX(1);
}

.add-to-cart-button:hover,
.add-to-cart-button.is-added {
  color: var(--text);
  border-color: transparent;
  transform: translateY(-1px);
}

.reveal-grid .reveal {
  animation: rise 700ms ease both;
}

.pagination-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.pagination-row button {
  padding: 12px 16px;
}

.pagination-row button.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--text);
  border-color: transparent;
}

.pagination-row button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mobile-filters-fab,
.mobile-filter-sheet {
  display: none;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 40;
}

.quick-view-modal {
  position: fixed;
  z-index: 200;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 40px));
  max-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--box-border);
  box-shadow: 0 40px 100px rgba(62, 39, 35, 0.3);
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.modal-copy h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--text);
}

.modal-price-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.modal-price-row strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.modal-price-row span {
  color: var(--overlay-bg);
  text-decoration: line-through;
}

.modal-description {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.custom-text-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-text-field label {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
}

.custom-text-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--box-border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-text-field input:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(229, 193, 122, 0.2);
}

/* ========== TOAST NOTIFICATION ========== */

.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--text);
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  white-space: nowrap;
}

.toast-notification.success .toast-content {
  border-color: var(--gold);
}

.toast-notification.info .toast-content {
  border-color: var(--muted);
}

.toast-icon {
  color: var(--gold);
}

/* ========== PRODUCT CARD ACTIONS ========== */

.shop-product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.add-to-cart-button {
  width: 100%;
  background: var(--gold);
  color: var(--btn-primary-text);
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s;
}

.add-to-cart-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.quick-view-button {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  font-size: 1.4rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #A67C00, #5D4037);
  color: var(--bg);
  font-weight: 800;
  box-shadow: 0 18px 42px var(--box-shadow);
}

@keyframes shimmerDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(8px, -12px, 0) scale(1.02);
  }
}

@media (max-width: 1200px) {
  .shop-layout {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .shop-products.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .mobile-filters-fab {
    display: inline-flex;
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 35;
    padding: 14px 20px;
    box-shadow: 0 18px 40px var(--box-shadow);
  }

  .mobile-filter-sheet {
    display: block;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 45;
    transform: translateY(100%);
    transition: transform 240ms ease;
  }

  .mobile-filter-sheet[data-open='true'] {
    transform: translateY(0);
  }

  .mobile-filter-sheet .shop-sidebar-panel {
    border-radius: 28px 28px 0 0;
    max-height: min(84vh, 760px);
    overflow: auto;
    border-bottom: 0;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .shop-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .shop-products.grid,
  .shop-products.list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-product-card {
    border-radius: 16px;
  }

  .shop-product-body {
    padding: 10px;
    gap: 8px;
  }

  .shop-product-body h3 {
    font-size: 1rem;
  }

  .tagline {
    font-size: 0.7rem;
  }

  .price-block strong {
    font-size: 0.95rem;
  }

  .add-to-cart-button {
    padding: 10px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  .wishlist-button {
    width: 32px;
    height: 32px;
  }

  .wishlist-button svg {
    width: 14px;
    height: 14px;
  }

  .shop-products.list .shop-product-card {
    grid-template-columns: 1fr;
  }

  .quick-view-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

  .modal-media img {
    height: 260px;
  }

  .home-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shop-toolbar-right {
    width: 100%;
  }

  .sort-select,
  .sort-select select,
  .filters-trigger,
  .view-toggle {
    width: 100%;
  }

  .view-toggle {
    justify-content: center;
  }

  .price-rating-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-serf,
  .tagline {
    letter-spacing: 0.12em;
  }

  .toast {
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .shop-product-body h3 {
    font-size: 1.15rem;
    margin: 4px 0;
  }

  .shop-product-body .tagline,
  .shop-product-body .shop-product-description {
    display: none;
  }

  .shop-product-card {
    padding: 12px;
    border-radius: 20px;
  }

  .quick-view-hint {
    opacity: 1;
  }

  .shop-hero-inner {
    min-height: 180px;
  }
}

@media (max-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .carousel-mobile {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-mobile::-webkit-scrollbar {
    display: none;
  }

  .carousel-mobile .testimonial-card {
    min-width: 85%;
    scroll-snap-align: center;
    margin: 0;
  }

  .testimonial-nav-mobile {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .testimonial-nav-mobile .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--glass-bg);
  }

  .testimonial-nav-mobile .dot:first-child {
    background: var(--gold-soft);
  }
}

.slide-from-top {
  animation: slide-from-top 1s ease-out forwards;
}

.slide-from-bottom {
  animation: slide-from-bottom 1s ease-out forwards;
}

@keyframes slide-from-top {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-from-bottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* No floating images styles needed anymore */

.logo {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand .logo {
  height: 70px;
}

/* ========== HAMBURGER MENU STYLES ========== */

.hamburger-menu {
  display: none;
  flex-direction: column;
  background: var(--box-border);
  border: 1px solid var(--box-border);
  cursor: pointer;
  gap: 5px;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 8px;
  margin-left: 0;
}

.hamburger-menu:hover {
  background: var(--box-border);
  transform: scale(1.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hamburger-menu .hamburger-line.open:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu .hamburger-line.open:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu .hamburger-line.open:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 100%;
  max-width: 320px;
  background: var(--bg);
  background-image:
    radial-gradient(circle at top right, var(--gold), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--box-border);
  box-shadow: -20px 0 60px var(--box-shadow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  padding: 14px 18px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  border-radius: 12px;
  display: block;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--delay) * 0.1s + 0.2s);
}

.mobile-nav-link:hover {
  color: var(--text);
  background: var(--box-border);
  padding-left: 24px;
}

.mobile-nav-link.active {
  color: var(--text);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding-left: 24px;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--box-border);
}

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
}

.mobile-menu.open .mobile-menu-section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease 0.6s;
}

.mobile-menu-title {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
  font-weight: 700;
}

.mobile-menu-link {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-link:hover {
  color: var(--text);
  transform: translateX(5px);
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.mobile-contact-link:hover {
  color: var(--text);
}

.cart-button-mobile {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  background: linear-gradient(135deg, rgba(245, 211, 139, 0.15), var(--box-border));
  border: 1px solid rgba(245, 211, 139, 0.25);
  padding: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.open .cart-button-mobile {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease 0.8s;
}

.cart-button-mobile:hover {
  background: linear-gradient(135deg, rgba(245, 211, 139, 0.25), var(--box-border));
}

/* ========== FADE-IN SCROLL ANIMATIONS ========== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-visible .fade-in-left,
.fade-in-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-visible .fade-in-right,
.fade-in-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-visible .fade-in-scale,
.fade-in-scale.is-visible {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

/* Staggered Delay Utilities */

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ========== RESPONSIVE MOBILE STYLES ========== */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 0 60px;
    gap: 40px;
    text-align: center;
  }

  .hero-visual {
    grid-row: 1;
    justify-content: center;
    padding-top: 20px;
  }

  .hero-boxes {
    gap: 16px;
    justify-content: center;
  }

  .hero-box.box-1 {
    width: 160px;
    height: 220px;
  }

  .hero-box.box-2 {
    width: 140px;
    height: 190px;
    margin-bottom: 30px;
  }

  .box-overlay {
    padding: 8px 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 0.75rem;
    gap: 8px;
  }

  .box-overlay svg {
    width: 14px;
    height: 14px;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin: 0 auto 12px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hamburger-menu {
    display: flex;
    margin-left: 0;
  }

  .topbar-desktop {
    display: none;
  }

  .nav-links-desktop {
    display: none;
  }

  .cart-button-desktop {
    display: none;
  }

  .navbar {
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
  }

  .brand {
    margin-right: auto;
  }

  .mobile-menu {
    display: block;
    max-width: 100%;
  }

  .site-header {
    z-index: 25;
  }
}

@media (max-width: 480px) {
  .hero-boxes {
    gap: 8px;
    transform: scale(0.9);
    margin-top: 10px;
  }

  .hero-box.box-1 {
    width: 130px;
    height: 180px;
  }

  .hero-box.box-2 {
    width: 110px;
    height: 150px;
    margin-bottom: 15px;
  }

  .box-overlay {
    padding: 5px 8px;
    font-size: 0.6rem;
    border-radius: 10px;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
}

/* Footer Socials */

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  color: var(--text);
  transition: color 0.3s, transform 0.3s;
}

.footer-social-link:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }

  .hero-visual {
    display: none !important;
    /* Hide hero images on mobile */
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .quick-view-modal {
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    width: min(340px, calc(100% - 24px));
    overflow-y: auto;
    overflow-x: hidden;
  }

  .modal-media {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
  }

  .modal-media img {
    height: 160px;
  }

  .modal-copy {
    padding: 16px;
    gap: 12px;
    overflow-y: visible;
    width: 100%;
  }

  .modal-copy h3 {
    font-size: 1.2rem;
  }

  .modal-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .modal-price-row strong {
    font-size: 1.1rem;
  }

  .custom-text-field {
    margin-bottom: 8px;
    gap: 2px;
  }

  .custom-text-field input {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .modal-copy .primary-button {
    padding: 10px;
    font-size: 0.9rem;
  }
}

.logo {
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.sold-out-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3e2723;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Shop-specific overrides live here so the route has its own stylesheet entry point. */

.shop-page {
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
}

.shop-grid, .shop-products.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

@media (max-width: 640px) {
  .shop-grid, .shop-products.grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .shop-product-card {
    padding: 16px;
  }
  
  .shop-product-body h3 {
    font-size: 1.1rem;
  }
  
  .add-to-cart-button, .quick-view-button {
    padding: 14px;
    font-size: 0.95rem;
  }
}

@keyframes shopFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}.promo-banner-sliding {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
  color: var(--text);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--box-border);
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  gap: 50px;
  animation: marquee 20s linear infinite;
  min-width: 100%;
}

.marquee-content span {
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

.promo-banner-sliding:hover .marquee-content {
  animation-play-state: paused;
}.city-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.city-modal-card {
  background: white;
  width: 100%;
  max-width: 440px;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.city-modal-header .icon-wrapper {
  background: #fdf8f5;
  color: #d4af37;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.city-modal-header h2 {
  font-size: 2rem;
  color: #3e2723;
  margin: 0 0 10px;
  font-weight: 800;
}

.city-modal-header p {
  color: #8d6e63;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 32px;
}

.city-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: 1px solid rgba(62, 39, 35, 0.08);
  border-radius: 16px;
  background: white;
  color: #3e2723;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-item:hover {
  background: #fdf8f5;
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.city-item:hover .arrow {
  transform: translateX(4px);
  color: #d4af37;
}

.city-item.active {
  background: #3e2723;
  color: white;
  border-color: #3e2723;
}

.city-item .arrow {
  color: #8d6e63;
  transition: all 0.3s;
}

.city-modal-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(62, 39, 35, 0.05);
}

.city-modal-footer p {
  font-size: 0.8rem;
  color: #bcaaa4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2cf473 0%, #17a090 100%);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: whatsapp-bounce 2s infinite;
}

@keyframes whatsapp-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Tooltip style */
.whatsapp-float::after {
  content: 'Chat with us';
  position: absolute;
  right: 70px;
  background: var(--bg-alt, #fff);
  color: var(--text, #333);
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float::after {
    display: none;
  }
}
