/* ============================================================
   VEENASTORE — COMPONENTS CSS
   Navigation, Footer, Cards, Buttons, Modals, Forms
   ============================================================ */

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--t-base);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: 0.6; pointer-events: none; }

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-black);
  border-color: var(--clr-gold);
}
.btn-primary:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-black);
  border-color: var(--clr-black);
}
.btn-outline:hover {
  background: var(--clr-black);
  color: var(--clr-white);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.btn-outline-gold:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
}

.btn-dark {
  background: var(--clr-black);
  color: var(--clr-white);
  border-color: var(--clr-black);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1rem 2.5rem; font-size: var(--fs-base); }
.btn-full { width: 100%; }

.btn-icon {
  padding: 0.6rem;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-gold);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 16px; height: 16px; fill: var(--clr-gold); }
.logo-text {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-black);
  line-height: 1;
}
.logo-text span { color: var(--clr-gold); }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-8);
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.03em;
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--t-base);
}
.nav-link:hover, .nav-link.active { color: var(--clr-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-action-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: all var(--t-fast);
  position: relative;
}
.nav-action-btn:hover { background: rgba(212, 175, 55, 0.12); color: var(--clr-gold); }
.nav-action-btn svg { width: 18px; height: 18px; }

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--clr-black);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--t-base);
}
.mobile-nav-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 90%);
  background: var(--clr-white);
  transform: translateX(-100%);
  transition: transform var(--t-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { pointer-events: all; }
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--clr-border);
}
.mobile-nav-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--clr-text);
}
.mobile-nav-close:hover { background: var(--clr-bg-alt); }

.mobile-nav-body {
  padding: var(--sp-6);
  flex: 1;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--clr-text);
  transition: all var(--t-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--clr-gold-pale);
  color: var(--clr-gold-dark);
}

.mobile-nav-footer {
  padding: var(--sp-6);
  border-top: 1px solid var(--clr-border);
}
.mobile-nav-whatsapp {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: #f0fff8;
  border-radius: var(--r-md);
  color: #25D366;
  font-weight: 600;
  font-size: var(--fs-sm);
}

/* Search bar */
.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  background: rgba(255, 255, 255, 0.98);
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform var(--t-base);
}
.search-bar.open { transform: translateY(0); }
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: var(--max-w);
  margin: 0 auto;
}
.search-input-wrap {
  flex: 1;
  position: relative;
}
.search-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 2.75rem;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: border-color var(--t-fast);
}
.search-input:focus { outline: none; border-color: var(--clr-gold); }
.search-input-icon {
  position: absolute;
  left: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  width: 18px;
  height: 18px;
}
.search-close {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--clr-gold-dark);
  font-weight: 500;
}
.search-close:hover { color: var(--clr-black); }

/* ── BOTTOM NAVIGATION (Mobile) ─────────────────────────────── */
.bottom-nav {
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  z-index: var(--z-sticky);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (min-width: 1024px) { .bottom-nav { display: none; } }

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding-block: var(--sp-2);
  color: var(--clr-text-muted);
  font-size: 10px;
  font-weight: 500;
  transition: color var(--t-fast);
  text-decoration: none;
  position: relative;
}
.bottom-nav-item svg { width: 18px; height: 18px; }
.bottom-nav-item.active { color: var(--clr-gold); }
.bottom-nav-item:hover  { color: var(--clr-gold); }
.bottom-nav-item .cart-badge { top: 2px; right: calc(50% - 18px); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #f9f7f4, #f3f0eb);
  color: #666666;
}
.footer-top {
  padding-block: var(--sp-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
@media (min-width: 640px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-text { color: var(--clr-black); }
.footer-brand .logo-text span { color: var(--clr-gold); }
.footer-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: #888888;
  margin-block: var(--sp-4);
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(26,26,26,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  transition: all var(--t-fast);
}
.footer-social:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(201,168,76,0.1);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h5 {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: var(--sp-4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-link {
  font-size: var(--fs-sm);
  color: #777777;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-link:hover { color: var(--clr-gold-dark); }
.footer-link svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(26,26,26,0.15);
  padding-block: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.footer-copy { font-size: var(--fs-xs); color: #999999; }
.footer-policies {
  display: flex;
  gap: var(--sp-6);
}
.footer-policy {
  font-size: var(--fs-xs);
  color: #999999;
  transition: color var(--t-fast);
}
.footer-policy:hover { color: var(--clr-gold-dark); }

/* Payment icons row */
.footer-payment {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.payment-icon {
  height: 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
}

/* ── PRODUCT CARD ─────────────────────────────────────────────── */
.product-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: none;
  border-color: rgba(185,145,47,0.14);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  animation: none;
  transition: opacity 0.2s ease;
}
.product-card:hover .product-card-image img { transform: none; }

.product-card-badges {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.product-card-actions {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t-base);
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.card-action-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  background: var(--clr-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold-dark);
  transition: all var(--t-fast);
}
.card-action-btn:hover { background: var(--clr-gold); color: #fff; }
.card-action-btn svg { width: 13px; height: 13px; }
.card-action-btn.wishlisted { color: #e74c3c; background: var(--clr-white); }

.product-card-body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-category {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: var(--sp-1);
}
.product-card-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  flex: 1;
}
.product-card-name a:hover { color: var(--clr-gold); }
.product-card-stars {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}
.star { color: var(--clr-gold); font-size: 12px; }
.star.empty { color: var(--clr-border); }
.review-count { font-size: var(--fs-xs); color: var(--clr-text-muted); }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-bg-alt);
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.price-current {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-white);
}
.price-original {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-decoration: line-through;
}
.price-discount {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-error);
}
.add-to-cart-btn {
  padding: 0.4rem 0.75rem;
  background: var(--clr-black);
  color: var(--clr-white);
  border-radius: var(--r-sm);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--clr-gold); color: var(--clr-black); }

/* ── CATEGORY CARD ────────────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7) 30%, transparent 70%);
}
.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
  color: var(--clr-white);
}
.category-card-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.category-card-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.category-card-count {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}
.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  transition: gap var(--t-fast);
}
.category-card:hover .category-card-cta { gap: var(--sp-3); }

/* ── TESTIMONIAL CARD ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid var(--clr-card-border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: rgba(185,145,47,0.08);
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  line-height: 1;
  font-weight: 700;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
}
.testimonial-text {
  font-size: var(--fs-base);
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--clr-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-gold-dark);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-black);
}
.author-location { font-size: var(--fs-xs); color: var(--clr-text-muted); }

/* Promise & Reviews — explicit section and card styles per design tokens */
.promise-section,
.reviews-section {
  background: #fffdf8;
  opacity: 1;
}

.promise-card,
.review-card {
  background: #ffffff;
  border: 1px solid #e8dfcf;
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06);
  color: #1f1f1f;
}

.promise-card p,
.review-card p {
  color: #5f5f5f;
  opacity: 1;
}

/* ── FORMS ────────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-4); }
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-black);
  margin-bottom: var(--sp-2);
}
.form-label .req { color: var(--clr-gold); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.75rem var(--sp-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--clr-black);
  background: var(--clr-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: rgba(107,107,107,0.6); }
.form-control.error { border-color: var(--clr-error); }
.form-hint { font-size: var(--fs-xs); color: var(--clr-text-muted); margin-top: var(--sp-1); }
.form-error-msg { font-size: var(--fs-xs); color: var(--clr-error); margin-top: var(--sp-1); display: none; }
.form-control.error + .form-error-msg { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* Radio payment options */
.payment-option {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.payment-option:hover { border-color: var(--clr-gold); }
.payment-option.selected {
  border-color: var(--clr-gold);
  background: var(--clr-gold-pale);
}
.payment-option input[type="radio"] { margin-top: 2px; accent-color: var(--clr-gold); }
.payment-option-title { font-weight: 600; font-size: var(--fs-sm); color: var(--clr-black); }
.payment-option-desc { font-size: var(--fs-xs); color: var(--clr-text-muted); margin-top: 2px; }

/* ── QUICK VIEW MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
@media (min-width: 768px) { .modal-overlay { align-items: center; } }
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--clr-white);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform var(--t-base);
}
@media (min-width: 768px) {
  .modal {
    border-radius: var(--r-lg);
    max-width: 860px;
    max-height: 85vh;
  }
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  background: var(--clr-white);
  z-index: 1;
}
.modal-title { font-size: var(--fs-lg); font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--clr-text-muted);
}
.modal-close:hover { background: var(--clr-bg-alt); color: var(--clr-text); }
.modal-body { padding: var(--sp-6); }

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 600px) { .quick-view-grid { grid-template-columns: 1fr 1fr; } }

.quick-view-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.quick-view-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── HERO SLIDER DOTS ─────────────────────────────────────────── */
.hero-dots {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.4);
  transition: all var(--t-base);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--clr-gold);
  width: 24px;
}

/* ── GALLERY GRID ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--sp-2);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--clr-bg-alt);
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 24px; height: 24px; fill: white; }

/* ── NEWSLETTER ───────────────────────────────────────────────── */
.newsletter-section {
  background: var(--clr-black);
  padding-block: var(--sp-16);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { color: var(--clr-white); }
.newsletter-inner p { color: rgba(255,255,255,0.6); margin-block: var(--sp-4) var(--sp-6); }
.newsletter-form {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem var(--sp-4);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  color: var(--clr-white);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { outline: none; border-color: var(--clr-gold); }

/* ── CART ITEM ─────────────────────────────────────────────────── */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--sp-4);
  align-items: start;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--clr-border);
}
@media (min-width: 640px) { .cart-item { grid-template-columns: 100px 1fr auto; } }

.cart-item-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: var(--sp-1);
}
.cart-item-variant {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
}
.cart-item-price {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--clr-black);
}
.cart-item-remove {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-decoration: underline;
  margin-top: var(--sp-2);
  display: inline-block;
  transition: color var(--t-fast);
}
.cart-item-remove:hover { color: var(--clr-error); }

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--clr-text);
  transition: all var(--t-fast);
  line-height: 1;
  font-weight: 300;
}
.qty-btn:hover { background: var(--clr-gold-pale); color: var(--clr-gold-dark); }
.qty-val {
  min-width: 32px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* ── ORDER SUMMARY CARD ──────────────────────────────────────── */
.order-summary {
  background: var(--clr-bg-alt);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  position: sticky;
  top: 90px;
}
.order-summary-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  padding-block: var(--sp-2);
}
.summary-row.total {
  border-top: 1px solid var(--clr-border);
  margin-top: var(--sp-2);
  padding-top: var(--sp-4);
  font-size: var(--fs-md);
  font-weight: 700;
}
.summary-label { color: var(--clr-text-muted); }
.summary-value { font-weight: 600; color: var(--clr-black); }
.summary-row.total .summary-value { color: var(--clr-gold-dark); font-size: var(--fs-xl); font-family: var(--ff-serif); }

/* ── FILTER SIDEBAR ───────────────────────────────────────────── */
/* Base container — visual styles live in shop.html <style> block */
.filter-sidebar {
  background: var(--clr-bg-alt);
  border-radius: 16px;
  overflow: hidden;
}

/* ── SHOP HEADER (toolbar) ────────────────────────────────────── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.shop-count { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.shop-sort {
  padding: 0.5rem var(--sp-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  background: var(--clr-white);
  color: var(--clr-text);
  cursor: pointer;
  min-width: 180px;
}
.shop-sort:focus { outline: none; border-color: var(--clr-gold); }

/* ── PRODUCT PAGE ─────────────────────────────────────────────── */
.product-gallery-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-3);
}
@media (max-width: 640px) { .product-gallery-grid { grid-template-columns: 1fr; } }

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
@media (max-width: 640px) {
  .product-thumbnails { flex-direction: row; order: 2; }
}
.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-fast);
  flex-shrink: 0;
  background: var(--clr-bg-alt);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--clr-gold); }

.product-main-img {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }

/* Variant buttons */
.variant-group { margin-bottom: var(--sp-4); }
.variant-label { font-size: var(--fs-sm); font-weight: 600; margin-bottom: var(--sp-2); }
.variant-options { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.variant-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
  cursor: pointer;
  transition: all var(--t-fast);
  background: var(--clr-white);
}
.variant-btn:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.variant-btn.active {
  border-color: var(--clr-gold);
  background: var(--clr-gold);
  color: var(--clr-black);
  font-weight: 600;
}

/* ── STAT CARDS ───────────────────────────────────────────────── */
.stat-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.stat-label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: var(--sp-2); }
.stat-value { font-family: var(--ff-serif); font-size: var(--fs-3xl); font-weight: 700; color: var(--clr-black); margin-bottom: var(--sp-1); }
.stat-change { font-size: var(--fs-xs); color: var(--clr-success); font-weight: 500; }
.stat-change.down { color: var(--clr-error); }
.stat-icon { float: right; width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.stat-icon.gold { background: var(--clr-gold-pale); color: var(--clr-gold-dark); }
.stat-icon.dark { background: var(--clr-black); color: var(--clr-gold-light); }

/* ── DATA TABLE ───────────────────────────────────────────────── */
.data-table-wrap {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  overflow: auto;
  box-shadow: var(--shadow-sm);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 600px;
}
.data-table th {
  background: var(--clr-bg-alt);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: var(--sp-4) var(--sp-4);
  text-align: left;
  white-space: nowrap;
}
.data-table td {
  padding: var(--sp-4);
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: middle;
}
.data-table tr:hover td { background: var(--clr-bg-alt); }
.data-table .product-cell { display: flex; align-items: center; gap: var(--sp-3); }
.data-table .product-thumb-sm {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--clr-bg-alt);
  flex-shrink: 0;
}
.data-table .product-thumb-sm img { width: 100%; height: 100%; object-fit: cover; }

/* Status pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pending  { background: #fff8e1; color: #b7860d; }
.status-confirmed{ background: #e8f5e9; color: var(--clr-success); }
.status-delivered{ background: #e8f5e9; color: #1e7e34; }
.status-cancelled{ background: #fdecea; color: var(--clr-error); }
.status-shipped  { background: #e3f2fd; color: #0d6efd; }

.action-btns { display: flex; gap: var(--sp-2); }
.table-action {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all var(--t-fast);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.table-action:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.table-action.delete:hover { border-color: var(--clr-error); color: var(--clr-error); }

/* ── WHY CHOOSE US CARDS ─────────────────────────────────────── */
.feature-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: rgba(185,145,47,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  transition: transform var(--t-base);
}
.feature-card:hover .feature-icon { transform: scale(1.08); }
.feature-icon svg { width: 32px; height: 32px; color: var(--clr-gold); stroke: var(--clr-gold); }
.feature-card h4 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); color: var(--clr-black); }
.feature-card p  { font-size: var(--fs-sm); color: var(--clr-text-muted); }

/* ── SKELETON LOADING STATES ───────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton-shimmer {
  background: linear-gradient(90deg, #f0ece4 25%, #e8e2d6 50%, #f0ece4 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease infinite;
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-card .product-card-body {
  padding: 1rem;
}

/* Product detail skeleton */
.skeleton-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
.skeleton-detail .skeleton-img {
  aspect-ratio: 1;
  border-radius: var(--r-md);
}
.skeleton-detail .skeleton-info > div {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .skeleton-detail {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   UX IMPROVEMENTS — Animations, Polish, Micro-interactions
   ============================================================ */

/* ── Product Card Hover Glow ─────────────────────────────────── */
.product-card {
  position: relative;
  animation: none;
  transform: none;
}
.product-card.reveal-item,
.product-card.revealed,
.product-card img {
  animation: none;
  transform: none;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.product-card:hover::after {
  transform: scaleX(1);
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 20px rgba(201,168,76,0.12);
}

/* ── Improved Add-to-Cart Button ─────────────────────────────── */
.add-to-cart-btn {
  position: relative;
  overflow: hidden;
}
.add-to-cart-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.add-to-cart-btn:hover::before {
  transform: translateX(0);
}
.add-to-cart-btn:hover {
  color: var(--clr-black);
}
.add-to-cart-btn span,
.add-to-cart-btn {
  position: relative;
  z-index: 1;
}

/* ── Cart add bounce ───────────────────────────────────────── */
@keyframes cartBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.15); }
  50%  { transform: scale(0.95); }
  70%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.cart-badge.bounce {
  animation: cartBounce 0.5s ease;
}

/* ── Header scrolled gold accent ─────────────────────────────── */
.site-header.scrolled {
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 0 rgba(201,168,76,0.2);
}

/* ── Mobile Nav Spring Animation ─────────────────────────────── */
.mobile-nav-panel {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav.open .mobile-nav-link {
  animation: slideInLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.mobile-nav.open .mobile-nav-links li:nth-child(1) .mobile-nav-link { animation-delay: 0.08s; }
.mobile-nav.open .mobile-nav-links li:nth-child(2) .mobile-nav-link { animation-delay: 0.12s; }
.mobile-nav.open .mobile-nav-links li:nth-child(3) .mobile-nav-link { animation-delay: 0.16s; }
.mobile-nav.open .mobile-nav-links li:nth-child(4) .mobile-nav-link { animation-delay: 0.20s; }
.mobile-nav.open .mobile-nav-links li:nth-child(5) .mobile-nav-link { animation-delay: 0.24s; }
.mobile-nav.open .mobile-nav-links li:nth-child(6) .mobile-nav-link { animation-delay: 0.28s; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Mobile nav overlay tint ─────────────────────────────────── */
.mobile-nav-overlay {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Newsletter animated gradient ────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 40%, #f9f7f4 60%, #f5f2ec 100%);
  background-size: 300% 300%;
  animation: newsletterGradient 8s ease infinite;
  position: relative;
  overflow: hidden;
}
@keyframes newsletterGradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), 0 0 20px rgba(201,168,76,0.1);
}

/* ── Footer social hover lift ────────────────────────────────── */
.footer-social {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.2);
}

/* ── Footer payment icon polish ──────────────────────────────── */
.payment-icon {
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--t-fast);
}
.payment-icon:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.1);
  color: var(--clr-gold-light);
}

/* ── Feature card glassmorphism ──────────────────────────────── */
.feature-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--r-lg);
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border-color: rgba(185,145,47,0.18);
}

/* ── Touch device: always show card actions ───────────────────── */
@media (hover: none) {
  .product-card-actions {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Gallery grid small screens ──────────────────────────────── */
@media (max-width: 399px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Category card mobile text fix ───────────────────────────── */
@media (max-width: 479px) {
  .category-card-title { font-size: var(--fs-lg); }
  .category-card-body { padding: var(--sp-4); }
}

/* ── Testimonial card balanced height ────────────────────────── */
@media (max-width: 639px) {
  .testimonial-card { padding: var(--sp-6); }
  .testimonial-text { font-size: var(--fs-sm); }
}

/* ── Hero shimmer accent ─────────────────────────────────────── */
@keyframes shimmerFloat {
  0%, 100% { opacity: 0.4; transform: translateY(0) rotate(0deg); }
  50%      { opacity: 0.8; transform: translateY(-8px) rotate(3deg); }
}
.hero-shimmer {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(226,201,126,0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: shimmerFloat 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-shimmer-1 { top: 20%; right: 15%; }
.hero-shimmer-2 { bottom: 25%; right: 30%; width: 80px; height: 80px; animation-delay: -2s; }

/* ── Hero nav arrows ─────────────────────────────────────────── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-arrow:hover {
  background: rgba(201,168,76,0.3);
  border-color: rgba(201,168,76,0.5);
  color: var(--clr-gold-light);
}
.hero-arrow.hero-prev { left: 1.5rem; }
.hero-arrow.hero-next { right: 1.5rem; }
@media (max-width: 767px) {
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow.hero-prev { left: 0.75rem; }
  .hero-arrow.hero-next { right: 0.75rem; }
}

/* ── Hero text entrance animations ───────────────────────────── */
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .hero-eyebrow  { animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both; }
.hero-content .hero-title    { animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both; }
.hero-content .hero-subtitle { animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both; }
.hero-content .hero-ctas     { animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both; }
.hero-content .hero-stats    { animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.1s both; }
