/*
Theme Name: Luve'a Jewellery
Theme URI: https://luvea.com
Author: Luve'a Studio
Author URI: https://luvea.com
Description: A luxury jewellery ecommerce theme with animated sliders, WooCommerce support, and elegant pink aesthetic.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: luvea-jewellery
Tags: e-commerce, jewellery, woocommerce, luxury, pink, animated, slider
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --pink-primary:    #E8A0A0;
  --pink-light:      #F5D5D5;
  --pink-soft:       #FDF0F0;
  --pink-hero:       #F0C8C8;
  --pink-dark:       #C0707A;
  --pink-btn:        #C47A82;
  --gold:            #C9A84C;
  --gold-light:      #E8D5A0;
  --cream:           #FFF8F5;
  --text-dark:       #3A2020;
  --text-mid:        #6B4545;
  --text-light:      #9B7575;
  --white:           #FFFFFF;
  --border:          rgba(200,150,150,0.25);
  --shadow-soft:     0 8px 40px rgba(180,100,100,0.12);
  --shadow-card:     0 4px 24px rgba(180,100,100,0.15);
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-xl:       40px;
  --radius-full:     9999px;
  --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:    'Cormorant Garamond', 'Georgia', serif;
  --font-body:       'DM Sans', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  position: relative;
}
.section-title::after {
  content: '♡';
  display: block;
  color: var(--pink-primary);
  font-size: 1rem;
  margin-top: 0.3rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--alt { background: var(--pink-soft); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--pink-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.view-all-link:hover { gap: 10px; }
.view-all-link::after { content: '→'; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--pink-primary);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.announcement-bar span::before { content: '🚚  '; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(180,100,100,0.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: var(--transition);
}
.site-logo {
  text-align: center;
}
.site-logo a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: -4px;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-actions a {
  color: var(--text-mid);
  font-size: 1.1rem;
  transition: color var(--transition);
  position: relative;
}
.header-actions a:hover { color: var(--pink-dark); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--pink-primary);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAV MENU */
.nav-menu {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-menu ul {
  display: flex;
  justify-content: center;
  gap: 2px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-menu ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--pink-primary);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-menu ul li a:hover { color: var(--pink-dark); }
.nav-menu ul li a:hover::after { width: 60%; }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60,20,20,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 30px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav-overlay.open .mobile-nav { transform: translateX(0); }
.mobile-nav .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.4rem;
  color: var(--text-mid);
}
.mobile-nav ul { margin-top: 40px; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 60%, var(--cream) 100%);
  min-height: 520px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 40px 60px 80px;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}
.hero-slide .slide-content { max-width: 480px; }
.slide-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-dark);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-eyebrow::before, .slide-eyebrow::after { content: '✦'; font-size: 0.5rem; }
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.slide-title em { color: var(--pink-dark); font-style: italic; }
.slide-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-btn);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(196,122,130,0.4);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,122,130,0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--pink-primary);
  color: var(--pink-dark);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--pink-primary); color: var(--white); }

.hero-slide .slide-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-slide .slide-image img {
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
/* Decorative blob behind hero image */
.hero-slide .slide-image::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse, var(--pink-hero) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: blobPulse 4s ease-in-out infinite;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

/* Hero Controls */
.hero-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 2px solid var(--pink-primary);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--pink-dark); width: 24px; border-radius: 4px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  color: var(--pink-dark);
  font-size: 1.1rem;
}
.hero-arrow:hover { background: var(--pink-primary); color: var(--white); transform: translateY(-50%) scale(1.1); }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

/* ============================================
   CATEGORY ICONS BAR
   ============================================ */
.categories-bar {
  padding: 40px 0;
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  group: true;
  text-decoration: none;
}
.category-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pink-light);
  transition: all var(--transition);
  background: var(--pink-soft);
}
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-img-wrap {
  border-color: var(--pink-primary);
  box-shadow: 0 6px 24px rgba(180,100,100,0.2);
}
.category-card:hover .category-img-wrap img { transform: scale(1.08); }
.category-icon {
  font-size: 1.4rem;
  color: var(--pink-dark);
}
.category-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ============================================
   FOREVER YOU — OCCASION SLIDER
   ============================================ */
.occasion-slider-wrap { position: relative; }
.occasion-slider {
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 8px 4px 24px;
}
.occasion-slide {
  flex: 0 0 calc(33.333% - 11px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform var(--transition);
}
.occasion-slide:hover { transform: translateY(-6px); }
.occasion-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.occasion-slide:hover img { transform: scale(1.06); }
.occasion-slide .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(transparent, rgba(60,20,20,0.65));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}
.occasion-slide.center-slide { flex: 0 0 calc(33.333% - 11px); box-shadow: var(--shadow-card); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 5;
  color: var(--pink-dark);
  transition: all var(--transition);
}
.slider-arrow:hover { background: var(--pink-primary); color: var(--white); }
.slider-arrow--left  { left: -20px; }
.slider-arrow--right { right: -20px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-light);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid var(--pink-primary);
}
.slider-dot.active { background: var(--pink-dark); width: 20px; border-radius: 4px; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pink-dark);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.product-card .badge--sale { background: #E05060; }
.product-card .badge--new  { background: var(--gold); }

.product-card .img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pink-soft);
  position: relative;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }

.product-card .quick-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}
.product-card:hover .quick-actions { opacity: 1; transform: translateX(0); }
.quick-btn {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all var(--transition);
  color: var(--pink-dark);
  cursor: pointer;
  border: none;
}
.quick-btn:hover { background: var(--pink-primary); color: var(--white); }

.product-card .info { padding: 14px 14px 16px; }
.product-card .name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-card .stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 8px; letter-spacing: 1px; }
.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card .price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.product-card .price-old {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.add-to-cart-btn {
  width: 32px;
  height: 32px;
  background: var(--pink-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.add-to-cart-btn:hover { background: var(--pink-dark); transform: scale(1.1); }

/* ============================================
   BEST SELLERS HORIZONTAL SCROLL
   ============================================ */
.bestsellers-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-primary) var(--pink-soft);
}
.bestsellers-grid::-webkit-scrollbar { height: 4px; }
.bestsellers-grid::-webkit-scrollbar-track { background: var(--pink-soft); border-radius: 2px; }
.bestsellers-grid::-webkit-scrollbar-thumb { background: var(--pink-primary); border-radius: 2px; }
.bestsellers-grid .product-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}

/* ============================================
   WRAP WITH LOVE SECTION
   ============================================ */
.wrap-section {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--cream) 100%);
  padding: 60px 0;
}
.wrap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wrap-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.wrap-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wrap-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-dark);
  font-weight: 600;
}
.wrap-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.wrap-title span { color: var(--pink-dark); font-style: italic; }
.wrap-desc { font-size: 0.92rem; color: var(--text-light); }
.wrap-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wrap-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.wrap-card:hover { border-color: var(--pink-primary); box-shadow: var(--shadow-card); transform: translateX(4px); }
.wrap-card-icon { font-size: 1.8rem; flex-shrink: 0; }
.wrap-card-text .title { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.wrap-card-text .sub { font-size: 0.8rem; color: var(--text-light); }
.wrap-card .arrow { margin-left: auto; color: var(--pink-primary); font-size: 1.1rem; }
.swipe-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   HOT SALE
   ============================================ */
.hot-sale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hot-sale-grid .product-card .badge--off {
  background: linear-gradient(135deg, #E05060, #C03040);
}

/* ============================================
   NEW ARRIVALS
   ============================================ */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-text .title { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.trust-text .sub { font-size: 0.78rem; color: var(--text-light); line-height: 1.4; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.6rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin: 16px 0; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--pink-primary); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--pink-primary); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-payments { display: flex; gap: 10px; font-size: 1.2rem; }

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--pink-primary);
  background: var(--pink-soft);
}
.woocommerce .woocommerce-message a.button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--pink-btn);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: none;
  padding: 12px 28px;
}
.woocommerce .woocommerce-message a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: var(--pink-dark);
}
.woocommerce-page .woocommerce-breadcrumb { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }
.woocommerce ul.products li.product .price { color: var(--text-dark); font-family: var(--font-display); }
.woocommerce span.onsale {
  background: var(--pink-dark);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  min-height: unset;
  line-height: 1.8;
  min-width: unset;
}
.woocommerce .star-rating span::before { color: var(--gold); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--pink-dark); border-bottom-color: var(--pink-primary); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast::before { content: '✓'; background: var(--pink-primary); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--pink-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  border: none;
  box-shadow: 0 4px 16px rgba(180,100,100,0.35);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--pink-dark); transform: translateY(-4px) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4, .hot-sale-grid, .new-arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-slide { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
  .hero-slide .slide-image { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .wrap-inner { grid-template-columns: 1fr; }
  .wrap-image { display: none; }
  .occasion-slide { flex: 0 0 calc(70% - 8px); }
  .nav-menu { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 480px) {
  .grid-4, .hot-sale-grid, .new-arrivals-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
