/* ============================================================
   DovanųTau — WordPress Theme Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=Dancing+Script:wght@700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- Variables ---------- */
:root {
  --pink:        #e05578;
  --pink-dark:   #c0395a;
  --pink-light:  #f9e4ec;
  --pink-bg:     #fff4f7;
  --rose:        #d63063;
  --berry:       #8b1a4a;
  --text-dark:   #1e0a14;
  --text-mid:    #5a3048;
  --text-light:  #9e6a82;
  --gold:        #f5c842;
  --gold-accent: #d4af6a;
  --cream:       #faf9f7;
  --dark:        #1a1a1a;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(200,60,100,.13);
  --shadow-sm:   0 2px 10px rgba(200,60,100,.10);
  --radius:      18px;
  --radius-sm:   10px;
  --transition:  .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 2.5rem;
}
.hearts-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.hearts-deco span { font-size: 1.1rem; color: var(--pink); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.btn-primary { background: var(--pink); color: var(--white); box-shadow: 0 4px 15px rgba(224,85,120,.4); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,85,120,.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--pink); }
.btn-white { background: var(--white); color: var(--pink); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--pink-light); transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(200,60,100,.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1.5rem;
}
.nav-logo img { height: 72px; width: auto; }
.nav-logo .custom-logo { height: 72px; width: auto; }

/* CSS Logo */
.css-logo { text-align: center; line-height: 1; display: inline-block; }
.css-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1;
  display: block;
}
.css-logo-divider {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px auto;
  width: 100%;
}
.css-logo-line {
  width: 70px;
  height: 1.5px;
  background: linear-gradient(90deg, #ec4899, #3b82f6);
  border-radius: 2px;
  flex-shrink: 0;
}
.css-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  flex-shrink: 0;
}
.css-logo-sub {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
  display: block;
}
.css-logo-footer {
  margin-bottom: 1.2rem;
  display: inline-block;
  text-align: center;
}
.css-logo-footer .css-logo-name { color: #ffffff; font-size: 26px; }
.css-logo-footer .css-logo-sub  { color: rgba(255,255,255,0.5); font-size: 7px; }
.css-logo-footer .css-logo-line { background: linear-gradient(90deg, #f472b6, #60a5fa); }
.css-logo-footer .css-logo-dot  { background: #8b5cf6; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0; padding: 0;
  list-style: none;
}
.nav-links li a {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li a.active {
  color: var(--pink);
}
.nav-links li a:hover::after,
.nav-links li.current-menu-item > a::after,
.nav-links li.current_page_item > a::after {
  width: 100%;
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-icon-btn {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-bg);
  color: var(--pink);
  font-size: 1.3rem;
  transition: var(--transition);
}
.nav-icon-btn:hover { background: var(--pink); color: var(--white); transform: scale(1.08); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--rose);
  color: white;
  font-size: .6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.search-bar {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.search-bar.open { display: block; }
.search-bar input[type="search"],
.search-bar input[type="text"] {
  width: 100%;
  padding: .8rem 1.2rem;
  border: 2px solid var(--pink-light);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}
.search-bar input:focus { border-color: var(--pink); }
.search-form-wrap { position: relative; }
.live-search-results { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: white; border-radius: var(--radius-sm); box-shadow: 0 8px 24px rgba(0,0,0,.12); border: 1px solid var(--pink-light); z-index: 200; max-height: 380px; overflow-y: auto; }
.live-search-results.open { display: block; }
.live-search-item { display: flex; align-items: center; gap: .8rem; padding: .7rem 1rem; text-decoration: none; color: inherit; border-bottom: 1px solid var(--pink-light); transition: background .15s; }
.live-search-item:last-child { border-bottom: none; }
.live-search-item:hover { background: var(--pink-bg); }
.live-search-img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--pink-light); }
.live-search-info { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.live-search-name { font-size: .9rem; font-weight: 600; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-search-price { font-size: .85rem; color: var(--pink); font-weight: 700; }
.live-search-empty { padding: 1rem; text-align: center; color: var(--text-mid); font-size: .9rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe0ec 40%, #ffd6e8 100%);
  padding: 4rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; min-height: 480px; }
.hero-content { padding-bottom: 4rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--pink);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; color: var(--text-dark); margin-bottom: 1rem; font-weight: 700; }
.hero-title-accent { display: block; color: var(--pink); font-style: italic; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; margin-top: .2rem; }
.hero-subtitle { font-size: 1rem; color: var(--text-mid); margin-bottom: 2rem; max-width: 400px; line-height: 1.7; }
.hero-image-area { position: relative; display: flex; align-items: flex-end; justify-content: center; height: 480px; }
.hero-img-main { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: var(--radius) var(--radius) 0 0; }
.hero-floating { position: absolute; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,.15); object-fit: cover; }
.hero-floating.f1 { width: 110px; height: 110px; top: 20px; right: 20px; }
.hero-floating.f2 { width: 80px; height: 80px; top: 100px; left: -10px; }
.hero-floating.f3 { width: 90px; height: 90px; bottom: 60px; right: -10px; }
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(224,85,120,.15) 0%, transparent 70%); border-radius: 50%; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { padding: 4rem 0; background: var(--white); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat-card { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); aspect-ratio: 4/3; cursor: pointer; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(200,60,100,.2); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(192,57,90,.92) 0%, rgba(192,57,90,.5) 60%, transparent 100%); padding: 1.5rem 1.2rem 1.2rem; color: white; }
.cat-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; }
.cat-desc { font-size: .78rem; opacity: .85; margin-bottom: .8rem; }
.cat-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; color: white; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.5); padding: .3rem .9rem; border-radius: 50px; transition: var(--transition); }
.cat-btn:hover { background: white; color: var(--pink); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.popular { padding: 4rem 0; background: var(--pink-bg); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; position: relative; z-index: 1; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge { position: absolute; top: 10px; left: 10px; padding: .25rem .7rem; border-radius: 50px; font-size: .7rem; font-weight: 700; letter-spacing: .04em; }
.badge-top    { background: var(--gold); color: #5a3600; }
.badge-new    { background: #4caf50; color: white; }
.badge-best   { background: var(--pink); color: white; }
.badge-sale   { background: #ff5722; color: white; }
.badge-out    { background: #9e9e9e; color: white; }
.out-of-stock { opacity: .6; }
.out-of-stock .product-img-wrap img { filter: grayscale(40%); }
.product-out-of-stock { opacity: .75; }
.product-out-of-stock .single-product-gallery img { filter: grayscale(30%); }
.out-of-stock-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: .5rem;
}
.product-fav { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); font-size: .9rem; color: var(--text-light); transition: var(--transition); cursor: pointer; z-index: 10; border: none; }
.product-fav:hover, .product-fav.active { color: var(--pink); transform: scale(1.1); }
.product-info { padding: 1rem; }
.product-name { font-weight: 600; font-size: .9rem; color: var(--text-dark); margin-bottom: .2rem; }
.product-weight { font-size: .78rem; color: var(--text-light); margin-bottom: .6rem; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--pink); }
.product-price-old { font-size: .8rem; color: var(--text-light); text-decoration: line-through; }
.add-to-cart, .button.add_to_cart_button, .woocommerce .button.alt {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pink);
  color: white;
  padding: .4rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.add-to-cart:hover, .button.add_to_cart_button:hover { background: var(--pink-dark); transform: scale(1.04); color: white; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, #c0395a 0%, #e05578 50%, #f08ca8 100%); padding: 4rem 0; overflow: hidden; position: relative; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.cta-content { color: white; }
.cta-icon { font-size: 2.2rem; width: 56px; height: 56px; background: rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: .8rem; }
.cta-title { font-family: 'Dancing Script', cursive; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: .6rem; }
.cta-sub { font-size: .95rem; opacity: .9; margin-bottom: 1.8rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-image { width: 280px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.2)); }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar { background: white; border-top: 1px solid #f0dde7; padding: 2rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.feature-item { padding: 1rem; }
.feature-icon { font-size: 2rem; margin-bottom: .5rem; }
.feature-title { font-weight: 600; font-size: .9rem; color: var(--text-dark); margin-bottom: .2rem; }
.feature-desc { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,.8); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-logo img { height: 65px; margin-bottom: 1rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; opacity: .75; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .7rem; }
.footer-badges { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.footer-badge { font-size: .8rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .4rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); }
.social-btn:hover { background: var(--pink); }
.footer-col h4 { font-size: .9rem; font-weight: 600; color: white; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .82rem; opacity: .7; transition: var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; opacity: .6; flex-wrap: wrap; gap: 1rem; }
.payment-icons { display: flex; gap: .6rem; align-items: center; }
.payment-icons span { background: rgba(255,255,255,.15); border-radius: 5px; padding: .2rem .6rem; font-size: .75rem; font-weight: 600; color: white; }

/* ============================================================
   PAGE HERO (shop, gifts, about, contact)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, #fff0f5 0%, #ffe0ec 100%); padding: 3rem 0; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: .5rem; }
.page-hero p { color: var(--text-light); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-light); justify-content: center; margin-top: .8rem; }
.breadcrumb a { color: var(--pink); }
.woocommerce-breadcrumb { text-align: center; font-size: .82rem; color: var(--text-light); padding: .5rem 0; }
.woocommerce-breadcrumb a { color: var(--pink); }

/* ============================================================
   SHOP / ARCHIVE PRODUCT
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding: 3rem 0; }
.shop-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-card { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; }
.filter-card h3 { font-size: .9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--pink-light); }
.filter-option { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text-mid); padding: .35rem 0; cursor: pointer; transition: color var(--transition); }
.filter-option:hover { color: var(--pink); }
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] { accent-color: var(--pink); width: 15px; height: 15px; }
.price-range { margin-top: .5rem; }
.price-range input[type="range"] { width: 100%; accent-color: var(--pink); }
.price-labels { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.results-count { font-size: .9rem; color: var(--text-light); }
.sort-select, .woocommerce-ordering select {
  padding: .5rem 1rem;
  border: 1.5px solid var(--pink-light);
  border-radius: 50px;
  font-size: .85rem;
  font-family: inherit;
  color: var(--text-mid);
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--pink); }
.shop-products-grid,
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; list-style: none; margin: 0; padding: 0; }

/* ============================================================
   GIFTS PAGE
   ============================================================ */
.gifts-intro { padding: 4rem 0; background: var(--pink-bg); }
.gifts-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.gifts-intro-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; color: var(--text-dark); }
.gifts-intro-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.gifts-intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gifts-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.gifts-collections { padding: 4rem 0; }
.gifts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gift-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); text-align: center; }
.gift-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gift-card-img { aspect-ratio: 4/3; overflow: hidden; }
.gift-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gift-card:hover .gift-card-img img { transform: scale(1.06); }
.gift-card-info { padding: 1.5rem; }
.gift-card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: .4rem; color: var(--text-dark); }
.gift-card-info p { font-size: .83rem; color: var(--text-light); margin-bottom: 1rem; }
.gift-price { font-size: 1rem; font-weight: 700; color: var(--pink); margin-bottom: .8rem; }
.custom-gift { background: linear-gradient(135deg, #fff0f5, #ffe4ef); padding: 4rem 0; }
.custom-gift-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.custom-gift-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.custom-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.custom-step { display: flex; align-items: center; gap: 1rem; }
.step-num { width: 36px; height: 36px; background: var(--pink); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.step-text { font-size: .9rem; color: var(--text-mid); }
.custom-gift-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.custom-gift-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 5rem 0; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.2rem; color: var(--text-dark); }
.about-story-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-box { background: var(--pink-bg); border-radius: var(--radius-sm); padding: 1.2rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--pink); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-values { padding: 4rem 0; background: var(--pink-bg); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition); }
.value-card:hover { transform: translateY(-5px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--text-dark); }
.value-card p { font-size: .83rem; color: var(--text-light); line-height: 1.6; }
.team-section { padding: 4rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; border: 4px solid var(--pink-light); box-shadow: var(--shadow-sm); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: .95rem; font-weight: 600; color: var(--text-dark); }
.team-card p { font-size: .8rem; color: var(--pink); margin-top: .2rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 4rem 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-dark); }
.contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 44px; height: 44px; background: var(--pink-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--pink); flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: .88rem; color: var(--text-dark); margin-bottom: .1rem; }
.contact-item-text span { font-size: .83rem; color: var(--text-light); }
.contact-socials-title { font-size: .9rem; font-weight: 600; margin: 2rem 0 .8rem; color: var(--text-dark); }
.contact-socials { display: flex; gap: .8rem; }
.cs-btn { display: flex; align-items: center; gap: .5rem; padding: .5rem 1rem; background: var(--pink-bg); border-radius: 50px; font-size: .82rem; font-weight: 500; color: var(--pink); transition: var(--transition); }
.cs-btn:hover { background: var(--pink); color: white; }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 500; color: var(--text-mid); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #f0dde7;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  background: #fdfbfc;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--pink); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #81c784; border-radius: var(--radius-sm); padding: 1rem; color: #2e7d32; font-size: .9rem; margin-top: 1rem; text-align: center; }
.form-error { display: none; background: #fce4ec; border: 1px solid #e57373; border-radius: var(--radius-sm); padding: 1rem; color: #c62828; font-size: .9rem; margin-top: 1rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--text-dark); color: white; padding: .9rem 1.5rem; border-radius: var(--radius-sm); font-size: .88rem; box-shadow: 0 8px 24px rgba(0,0,0,.25); z-index: 9999; transform: translateY(100px); opacity: 0; transition: all .3s ease; display: flex; align-items: center; gap: .6rem; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1001; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 110px; right: -420px; width: 420px; height: calc(100vh - 110px); background: white; z-index: 1002; transition: right .35s ease; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.2); }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--pink-light); }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; background: var(--pink-bg); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--pink); cursor: pointer; transition: var(--transition); }
.cart-close:hover { background: var(--pink); color: white; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-light); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--pink-light); align-items: center; }
.cart-item-img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .88rem; font-weight: 600; margin-bottom: .2rem; }
.cart-item-price { font-size: .85rem; color: var(--pink); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: .5rem; margin-top: .4rem; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--pink-bg); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--pink); cursor: pointer; transition: var(--transition); }
.qty-btn:hover { background: var(--pink); color: white; }
.qty-num { font-size: .88rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--text-light); font-size: .9rem; cursor: pointer; padding: .3rem; transition: color var(--transition); }
.cart-item-remove:hover { color: #e53935; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--pink-light); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1rem; }
.cart-total strong { font-size: 1.2rem; color: var(--pink); }
.cart-checkout { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; }
.dt-cart-total-wrap { font-size: .85rem; color: var(--text-mid); margin-bottom: .5rem; }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */

/* Remove default WC styles we don't want */
.woocommerce form .form-row { margin: 0 0 1rem; padding: 0; }
.woocommerce form .form-row label { font-size: .82rem; font-weight: 500; color: var(--text-mid); margin-bottom: .4rem; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #f0dde7;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--pink); }

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  border-left: 4px solid var(--pink);
  background: var(--pink-bg);
  color: var(--text-dark);
  list-style: none;
}
.woocommerce-error { border-color: #e53935; background: #fce4ec; }
.woocommerce-info { border-color: #1976d2; background: #e3f2fd; }

/* WC product price */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: var(--pink);
  font-weight: 700;
  font-size: 1rem;
}
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: var(--text-light);
  font-size: .85rem;
  font-weight: 400;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 700;
}

/* Single product page */
.woocommerce div.product { padding: 3rem 0; }
.woocommerce div.product .product_title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1.5rem;
  display: block;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--pink);
  color: white;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  padding: .85rem 2rem;
  font-size: .95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,85,120,.5);
  color: white;
}
.woocommerce div.product form.cart { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.woocommerce div.product form.cart .qty { padding: .7rem 1rem; border: 1.5px solid var(--pink-light); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; width: 80px; text-align: center; }

/* Checkout */
.woocommerce-checkout h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--text-dark); border-bottom: 1px solid var(--pink-light); padding-bottom: .8rem; }
#payment { background: var(--pink-bg); border-radius: var(--radius); padding: 1.5rem; }

/* Cart table */
.woocommerce table.shop_table { border: none; border-radius: var(--radius-sm); overflow: hidden; }
.woocommerce table.shop_table th { background: var(--pink-bg); color: var(--text-dark); font-size: .85rem; font-weight: 600; padding: 1rem; border: none; }
.woocommerce table.shop_table td { padding: 1rem; border: none; border-bottom: 1px solid var(--pink-light); }
.woocommerce table.cart td.actions .coupon .input-text { border-radius: 50px 0 0 50px; border: 1.5px solid var(--pink-light); padding: .6rem 1rem; font-family: inherit; }
.woocommerce table.cart td.actions .coupon .button { border-radius: 0 50px 50px 0; }
.woocommerce .cart-collaterals .cart_totals { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.woocommerce .cart-collaterals .cart_totals h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 1.5rem; }

/* My account */
.woocommerce-account .woocommerce-MyAccount-navigation { background: var(--pink-bg); border-radius: var(--radius); padding: 1.5rem; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li { margin-bottom: .5rem; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { color: var(--text-mid); font-size: .9rem; padding: .5rem .8rem; display: block; border-radius: var(--radius-sm); transition: var(--transition); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { background: var(--pink); color: white; }

/* Star ratings */
.woocommerce .star-rating { color: var(--gold); }
.woocommerce .stars a { color: var(--gold); }

/* Sale badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background: #ff5722;
  color: white;
  border-radius: 50px;
  padding: .25rem .7rem;
  font-size: .7rem;
  font-weight: 700;
  min-height: auto;
  min-width: auto;
  line-height: normal;
  top: 10px;
  left: 10px;
}

/* ============================================================
   SINGLE PRODUCT PAGE LAYOUT
   ============================================================ */
.single-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 0;
  align-items: start;
}
.single-product-gallery { position: sticky; top: 100px; }
.single-product-gallery .main-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1; }
.single-product-gallery .main-image img { width: 100%; height: 100%; object-fit: cover; }
.single-product-info { }
.product-meta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-cat-badge { font-size: .78rem; color: var(--pink); background: var(--pink-bg); padding: .3rem .8rem; border-radius: 50px; font-weight: 500; }
.product-sku { font-size: .78rem; color: var(--text-light); }
.woocommerce-tabs .tabs { display: flex; gap: 0; border-bottom: 2px solid var(--pink-light); margin-bottom: 1.5rem; list-style: none; padding: 0; }
.woocommerce-tabs .tabs li { margin: 0; }
.woocommerce-tabs .tabs li a { display: block; padding: .7rem 1.4rem; font-size: .88rem; font-weight: 500; color: var(--text-mid); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.woocommerce-tabs .panel { line-height: 1.8; color: var(--text-mid); font-size: .9rem; }

/* Related products */
.related.products { padding: 4rem 0; }
.related.products h2,
.upsells.products h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); margin-bottom: 2rem; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Shop layout - desktop */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding: 3rem 0; }

/* Mobile filter toggle - hidden on desktop */
.mobile-filter-toggle {
  display: none;
  width: 100%;
  margin: 1.2rem 0 0;
  padding: .7rem 1.2rem;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-products-grid,
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 200px 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    gap: 1rem;
    z-index: 100;
  }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-area { height: 250px; order: -1; }
  .categories-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-image { margin: 0 auto; width: 200px; }
  .cta-btns { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }

  /* Shop layout mobile */
  .shop-layout { grid-template-columns: 1fr; gap: 0; padding: 1.5rem 0; }
  .shop-sidebar {
    display: none;
    position: static;
    margin-bottom: 1.5rem;
  }
  .shop-sidebar.open { display: block; }
  .mobile-filter-toggle { display: block; }

  .gifts-intro-inner, .custom-gift-inner, .about-story-inner, .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; right: -100%; top: 88px; height: calc(100vh - 88px); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gifts-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .single-product-wrap { grid-template-columns: 1fr; }
  .single-product-gallery { position: static; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .shop-products-grid,
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
  .gifts-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .shop-products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  /* Nav: hamburger left, logo slightly left of center, icons right */
  .nav-inner { position: relative; padding: .7rem 0; }
  .nav-logo { position: absolute; left: calc(50% - 20px); transform: translateX(-50%); }
  .hamburger { order: -1; }
  .nav-actions { margin-left: auto; }

  /* Hide wishlist on small screens */
  #fav-btn { display: none; }

  /* Logo smaller on mobile */
  .nav-logo img, .nav-logo .custom-logo { height: 52px; }
  .css-logo-name { font-size: 20px; }
  .css-logo-sub { font-size: 6px; letter-spacing: 2px; }
  .css-logo-line { width: 48px; }

  /* Product cards: less padding, smaller button */
  .product-info { padding: .6rem .7rem; }
  .product-name { font-size: .8rem; }
  .product-price { font-size: .95rem; }
  .add-to-cart, .button.add_to_cart_button {
    padding: .35rem .55rem;
    font-size: .72rem;
  }

  /* Popular section: tighter gap */
  .popular-ed .products-grid { gap: .7rem; }
  .popular-ed { padding: 2rem 0; }
}

/* ============================================================
   DELIVERY PAGE
   ============================================================ */
.delivery-page { padding: 3rem 0 5rem; }
.return-page { padding: 3rem 0 5rem; }
.return-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1rem; }
.return-summary-card { background: white; border: 1.5px solid var(--pink-light); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; }
.return-summary-icon { font-size: 2rem; margin-bottom: .5rem; }
.return-summary-label { font-size: .8rem; color: var(--text-mid); margin-bottom: .3rem; }
.return-summary-value { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.return-conditions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
.return-condition { display: flex; gap: 1rem; background: white; border-radius: var(--radius); padding: 1.5rem; border: 1.5px solid var(--pink-light); }
.return-condition-ok { border-color: #22c55e; }
.return-condition-no { border-color: #ef4444; }
.return-condition-icon { font-size: 1.5rem; flex-shrink: 0; }
.return-condition-content strong { display: block; font-size: 1rem; margin-bottom: .6rem; color: var(--text-dark); }
.return-condition-content ul { margin: 0; padding-left: 1.2rem; }
.return-condition-content li { font-size: .9rem; color: var(--text-mid); margin-bottom: .3rem; line-height: 1.5; }
.return-note { display: flex; gap: 1rem; background: #fff8e6; border: 1.5px solid #f5c842; border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; }
.return-note-icon { font-size: 1.5rem; flex-shrink: 0; }
.return-note strong { display: block; color: var(--text-dark); margin-bottom: .4rem; }
.return-note p { margin: 0; font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
@media (max-width: 768px) {
  .return-summary { grid-template-columns: repeat(2, 1fr); }
  .return-conditions { grid-template-columns: 1fr; }
}
.delivery-free-banner { background: linear-gradient(135deg, var(--pink), var(--pink-dark, #c0395a)); color: white; text-align: center; padding: 1rem 1.5rem; border-radius: var(--radius); font-size: 1.1rem; font-weight: 600; margin-bottom: 3rem; }
.delivery-section-title { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin: 3rem 0 1.5rem; }
.delivery-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1rem; }
.delivery-option-card { background: white; border: 2px solid var(--pink-light); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; position: relative; }
.delivery-option-main { border-color: var(--pink); }
.delivery-option-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pink); color: white; font-size: .75rem; font-weight: 700; padding: .25rem .9rem; border-radius: 99px; white-space: nowrap; }
.carrier-logo { height: 52px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-weight: 900; letter-spacing: -.5px; border-radius: 8px; padding: 0 1rem; }
.carrier-lp { background: #e30613; color: white; font-size: 1.6rem; }
.carrier-lp span { font-weight: 400; font-size: 1.1rem; margin-left: 2px; }
.carrier-dpd { background: #dc0032; color: white; font-size: 1.8rem; }
.carrier-omniva { background: #ff6b00; color: white; font-size: 1.3rem; letter-spacing: 1px; }
.delivery-option-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.delivery-option-price { font-size: 2rem; font-weight: 800; color: var(--pink); margin-bottom: .3rem; }
.delivery-option-time { font-size: .85rem; color: var(--text-mid); margin-bottom: 1rem; }
.delivery-option-desc { font-size: .85rem; color: var(--text-mid); line-height: 1.5; margin: 0; }
.delivery-timeline { display: flex; flex-direction: column; gap: 0; max-width: 640px; }
.delivery-step { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--pink-light); }
.delivery-step:last-child { border-bottom: none; }
.delivery-step-num { width: 36px; height: 36px; min-width: 36px; background: var(--pink); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.delivery-step-content strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: .3rem; }
.delivery-step-content p { margin: 0; font-size: .9rem; color: var(--text-mid); }
.delivery-faq { display: flex; flex-direction: column; gap: 1rem; max-width: 720px; margin-bottom: 3rem; }
.delivery-faq-item { background: white; border: 1px solid var(--pink-light); border-radius: var(--radius-sm); padding: 1.2rem 1.5rem; }
.delivery-faq-q { font-weight: 700; color: var(--text-dark); margin-bottom: .4rem; }
.delivery-faq-a { color: var(--text-mid); font-size: .95rem; line-height: 1.6; }
.delivery-faq-a a { color: var(--pink); }
.delivery-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.delivery-cta .btn-outline { color: var(--pink); border-color: var(--pink); }
.delivery-cta .btn-outline:hover { background: var(--pink); color: white; }
@media (max-width: 768px) {
  .delivery-options { grid-template-columns: 1fr; }
  .delivery-cta { flex-direction: column; }
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page { padding: 3rem 0 5rem; }
.privacy-content { max-width: 820px; }
.privacy-updated { display: inline-block; background: var(--pink-light); color: var(--pink); font-size: .85rem; font-weight: 600; padding: .3rem .9rem; border-radius: 99px; margin-bottom: 2.5rem; }
.privacy-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--pink-light); }
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.privacy-section p { color: var(--text-mid); line-height: 1.7; margin-bottom: .8rem; }
.privacy-section ul { color: var(--text-mid); padding-left: 1.4rem; line-height: 1.8; }
.privacy-section a { color: var(--pink); }
.privacy-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: .8rem 0; }
.privacy-table th { background: var(--pink-bg); color: var(--text-dark); font-weight: 700; text-align: left; padding: .6rem 1rem; }
.privacy-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--pink-light); color: var(--text-mid); vertical-align: top; }
.privacy-table td:first-child { font-weight: 600; color: var(--text-dark); white-space: nowrap; padding-right: 1.5rem; }
.privacy-third-parties { display: flex; flex-direction: column; gap: .8rem; margin: 1rem 0; }
.privacy-third-party { display: flex; flex-direction: column; gap: .2rem; background: white; border: 1px solid var(--pink-light); border-radius: var(--radius-sm); padding: .9rem 1.2rem; }
.privacy-third-party strong { color: var(--text-dark); font-size: .95rem; }
.privacy-third-party span { color: var(--text-mid); font-size: .875rem; line-height: 1.5; }
.privacy-rights { display: flex; flex-direction: column; gap: .7rem; margin: 1rem 0; }
.privacy-right { display: flex; align-items: flex-start; gap: .8rem; }
.privacy-right-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.privacy-right strong { color: var(--text-dark); }

/* ============================================================
   GIFT BOX BUILDER
   ============================================================ */
.gift-builder { padding: 3rem 0 5rem; }
.gift-step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.gift-step-num { width: 40px; height: 40px; background: var(--pink); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.gift-step-header h2 { margin: 0; font-size: 1.5rem; }
.gift-step-hint { margin: 0; color: var(--text-light); font-size: .9rem; }

/* Box size cards */
.gift-box-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 700px; }
.gift-box-card { background: white; border: 2px solid var(--pink-light); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; cursor: pointer; transition: var(--transition); }
.gift-box-card:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: var(--shadow); }
.gift-box-icon { font-size: 3rem; margin-bottom: .8rem; }
.gift-box-label { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: .3rem; }
.gift-box-max { font-size: .9rem; color: var(--text-mid); margin-bottom: .5rem; }
.gift-box-fee { font-size: .85rem; color: var(--pink); font-weight: 600; }

/* Progress bar */
.gift-progress-bar { background: white; border-radius: var(--radius); padding: 1.2rem 1.5rem; box-shadow: var(--shadow); position: sticky; top: 80px; z-index: 50; border: 1.5px solid var(--pink-light); }
.gift-progress-info { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: .8rem; }
.gift-progress-box-label { font-weight: 700; color: var(--text-dark); font-size: 1rem; }
.gift-progress-count { color: var(--text-mid); font-size: .95rem; }
.gift-progress-total { color: var(--pink); font-weight: 700; margin-left: auto; font-size: 1rem; }
.gift-progress-track { height: 8px; background: var(--pink-light); border-radius: 99px; margin-bottom: 1rem; overflow: hidden; }
.gift-progress-fill { height: 100%; background: var(--pink); border-radius: 99px; transition: width .3s ease; width: 0%; }
.gift-progress-actions { display: flex; gap: .8rem; align-items: center; }
.gift-progress-actions .btn-primary { margin-left: auto; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* Product grid */
.gift-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.gift-product-card { background: white; border: 2px solid var(--pink-light); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.gift-product-card.selected { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224,85,120,.15); }
.gift-product-img { aspect-ratio: 1; overflow: hidden; background: var(--pink-bg); }
.gift-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gift-product-card:hover .gift-product-img img { transform: scale(1.05); }
.gift-product-info { padding: .8rem; }
.gift-product-name { font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: .3rem; line-height: 1.3; }
.gift-product-price { font-size: .9rem; color: var(--pink); font-weight: 700; }
.gift-product-stepper { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .6rem; border-top: 1px solid var(--pink-light); }
.stepper-btn { width: 30px; height: 30px; border: 1.5px solid var(--pink); border-radius: 50%; background: white; color: var(--pink); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); line-height: 1; }
.stepper-btn:hover:not(:disabled) { background: var(--pink); color: white; }
.stepper-btn:disabled { opacity: .35; cursor: not-allowed; }
.stepper-qty { font-weight: 700; font-size: 1rem; color: var(--text-dark); min-width: 20px; text-align: center; }

/* Success state */
.gift-success { padding: 4rem 0; text-align: center; }
.gift-success-inner { max-width: 480px; margin: 0 auto; background: white; border-radius: var(--radius); padding: 3rem 2rem; box-shadow: var(--shadow); }
.gift-success-icon { font-size: 4rem; margin-bottom: 1rem; }
.gift-success-inner h2 { font-size: 1.6rem; margin-bottom: .8rem; }
.gift-success-inner p { color: var(--text-mid); margin-bottom: 2rem; }
.gift-success-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.gift-success-btns .btn-outline { color: var(--pink); border-color: var(--pink); background: transparent; }
.gift-success-btns .btn-outline:hover { background: var(--pink); color: #fff; }

@media (max-width: 768px) {
  .gift-box-cards { grid-template-columns: 1fr; max-width: 100%; }
  .gift-products-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-progress-info { gap: .8rem; }
  .gift-progress-total { margin-left: 0; }
  .gift-progress-bar { top: 60px; }
}
@media (max-width: 480px) {
  .gift-products-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .gift-product-name { font-size: .78rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

.color-dots { display: flex; gap: .5rem; align-items: center; justify-content: center; margin-bottom: .8rem; }
.color-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-pink   { background: #e05578; }
.dot-gold   { background: #f5c842; }
.dot-berry  { background: #8b1a4a; }
.dot-green  { background: #4caf50; }
.dot-orange { background: #ff9800; }
.dot-purple { background: #9c27b0; }
.dot-lpink  { background: #f48fb1; }
.dot-yellow { background: #ffd600; }

/* ============================================================
   SPLIT HERO + QUICK CATS
   ============================================================ */

/* --- Split hero --- */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-hero-half {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 3rem;
  overflow: hidden;
  text-decoration: none;
  transition: filter .3s;
}
.split-hero-half:hover { filter: brightness(.97); }
.split-sweet { background: #fff0f6; border-right: 2px solid #fce7f3; }
.split-toy   { background: #eff6ff; }

/* Floating emoji */
.split-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.split-floaters span {
  position: absolute;
  font-size: 34px;
  opacity: 0.5;
  animation: splitFloat 4s ease-in-out infinite;
}
.split-sweet .split-floaters span:nth-child(1) { top: 10%; left:  8%; animation-delay: 0s; }
.split-sweet .split-floaters span:nth-child(2) { top: 18%; right: 9%; animation-delay: 0.7s; }
.split-sweet .split-floaters span:nth-child(3) { bottom: 14%; left: 14%; animation-delay: 1.4s; }
.split-sweet .split-floaters span:nth-child(4) { bottom: 22%; right: 7%; animation-delay: 2.1s; }
.split-sweet .split-floaters span:nth-child(5) { top: 50%; left: 4%; animation-delay: 2.8s; }
.split-toy .split-floaters span:nth-child(1) { top: 12%; left: 10%; animation-delay: 0.3s; }
.split-toy .split-floaters span:nth-child(2) { top: 16%; right: 8%; animation-delay: 1s; }
.split-toy .split-floaters span:nth-child(3) { bottom: 16%; left: 12%; animation-delay: 1.7s; }
.split-toy .split-floaters span:nth-child(4) { bottom: 20%; right: 11%; animation-delay: 2.4s; }
.split-toy .split-floaters span:nth-child(5) { top: 48%; right: 5%; animation-delay: 3.1s; }
@keyframes splitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(8deg); }
}

.split-hero-content {
  position: relative;
  z-index: 1;
}
.split-big-em {
  display: block;
  font-size: 80px;
  margin-bottom: 1rem;
  animation: splitFloat 3s ease-in-out infinite;
}
.split-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .7rem;
}
.split-sweet .split-title { color: #be185d; }
.split-toy   .split-title { color: #1d4ed8; }
.split-sub {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  color: #555;
}
.split-btn {
  display: inline-block;
  background: #ec4899;
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.split-btn-blue { background: #3b82f6; color: #fff; }
.split-hero-half:hover .split-btn {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* --- Quick category cards --- */
.quick-cats { background: var(--white); }
.quick-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-cats-3 {
  grid-template-columns: repeat(3, 1fr);
}
.qcat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  min-height: 140px;
  overflow: hidden;
  transition: filter .25s;
  text-decoration: none;
}
.qcat-card:hover { filter: brightness(.93); }
.qcat-pink   { background: linear-gradient(145deg, #f9c5d5, #e05578); }
.qcat-green  { background: linear-gradient(145deg, #a0c8f9, #2d6ab4); }
.qcat-gold   { background: linear-gradient(145deg, #f9e4a0, #c89020); }
.qcat-purple { background: linear-gradient(145deg, #d8b8f8, #7c3aed); }
.cat-pill-all { font-weight: 700; color: var(--dark); }
.qcat-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -70%);
  font-size: 3rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
  transition: transform .25s;
}
.qcat-card:hover .qcat-emoji { transform: translate(-50%, -80%) scale(1.1); }
.qcat-label {
  position: relative;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
  letter-spacing: .03em;
}

/* --- Responsive split --- */
@media (max-width: 700px) {
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-half { min-height: 220px; padding: 2rem 1.5rem; }
  .quick-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .qcat-card { min-height: 110px; }
}

/* ============================================================
   SUGARFINA-INSPIRED HOMEPAGE REDESIGN
   ============================================================ */

/* --- Announcement bar --- */
.announce-bar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .06em;
  padding: .5rem 1rem;
  font-weight: 400;
}
.announce-bar strong { color: var(--gold-accent); font-weight: 600; }

/* --- Category pill navigation --- */
.cat-pill-nav {
  background: var(--white);
  border-bottom: 1px solid #ece9e3;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-pill-nav::-webkit-scrollbar { display: none; }
.cat-pill-list {
  display: flex;
  gap: 0;
  justify-content: center;
  padding: 0 1rem;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.2rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.cat-pill:hover { color: var(--dark); }
.cat-pill.active { color: var(--dark); border-bottom-color: var(--dark); }

/* --- Hero Editorial --- */
.hero-editorial {
  background: linear-gradient(155deg, #f9f3ff 0%, #fff0f5 45%, #f0f7ff 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero-editorial::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,106,.1), transparent 70%);
  top: -80px; right: 200px;
  pointer-events: none;
}
.hero-editorial-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.hero-ed-eyebrow {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-ed-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: .6rem;
}
.hero-ed-h1 em {
  font-style: italic;
  color: var(--pink);
}
.hero-ed-sub {
  font-size: .9rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero-ed-btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-ed-primary {
  background: var(--dark);
  color: var(--white);
  padding: .75rem 2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s;
}
.btn-ed-primary:hover { background: #333; }
.btn-ed-secondary {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bento box */
.hero-bento-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-bento {
  background: var(--white);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: 0 12px 50px rgba(0,0,0,.10);
  width: 290px;
}
.bento-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #888;
  margin-bottom: 1rem;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
  margin-bottom: 1rem;
}
.bento-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px dashed #e8e4de;
  transition: transform .15s;
}
.bento-cell:hover { transform: scale(1.05); }
.bento-cell.filled { border: 2px solid transparent; }
.bento-cell.bc-pink   { background: #fde8f0; }
.bento-cell.bc-lav    { background: #ede8f5; }
.bento-cell.bc-mint   { background: #e8f5ee; }
.bento-cell.bc-yel    { background: #fdf5e0; }
.bento-cell.bc-blue   { background: #e8f0fd; }
.bento-cell.bc-peach  { background: #fde8e0; }
.bento-cell.bc-empty  { background: #f5f3f0; font-size: 1rem; color: #ccc; cursor: pointer; }
.bento-cta {
  display: block;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: .6rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: background .2s;
}
.bento-cta:hover { background: #333; }
.bento-note {
  font-size: .58rem;
  text-align: center;
  color: #aaa;
  margin-top: .5rem;
}
.bento-float-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--gold-accent);
  color: var(--white);
  border-radius: 50%;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(212,175,106,.45);
}

/* --- Occasions strip --- */
.occasions {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid #ece9e3;
}
.occasions-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
.occasions-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--dark);
}
.occasions-link {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.occasions-link:hover { color: var(--dark); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
}
.occ-item {
  text-align: center;
  cursor: pointer;
  transition: transform .2s;
}
.occ-item:hover { transform: translateY(-4px); }
.occ-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  margin: 0 auto .6rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  transition: box-shadow .2s;
}
.occ-item:hover .occ-circle { box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.oc-1 { background: #fde8f0; }
.oc-2 { background: #fdf5e0; }
.oc-3 { background: #ede8f5; }
.oc-4 { background: #e8f5ee; }
.oc-5 { background: #fde8e0; }
.oc-6 { background: #e8f0fd; }
.occ-name {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #666;
}

/* --- Products editorial section --- */
.popular-ed {
  padding: 4rem 0;
  background: var(--cream);
}
.popular-ed-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.popular-ed-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dark);
}
.popular-ed-link {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.popular-ed-link:hover { color: var(--dark); }
/* Pastel product card backgrounds on homepage */
.popular-ed .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.popular-ed .product-card { border-radius: 6px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.popular-ed .product-card:nth-child(4n+1) .product-img-wrap { background: #fde8f0; }
.popular-ed .product-card:nth-child(4n+2) .product-img-wrap { background: #ede8f5; }
.popular-ed .product-card:nth-child(4n+3) .product-img-wrap { background: #e8f5ee; }
.popular-ed .product-card:nth-child(4n+4) .product-img-wrap { background: #fdf5e0; }

/* --- Editorial / dark CTA banner --- */
.editorial-banner {
  background: var(--dark);
  padding: 4.5rem 0;
  overflow: hidden;
  position: relative;
}
.editorial-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,106,.06), transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.editorial-eyebrow {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 600;
  margin-bottom: .8rem;
}
.editorial-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .8rem;
}
.editorial-h2 em { font-style: italic; color: var(--gold-accent); }
.editorial-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 400px;
}
.btn-editorial {
  display: inline-block;
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  padding: .7rem 1.8rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-editorial:hover {
  background: var(--gold-accent);
  color: var(--dark);
}
.editorial-boxes {
  display: flex;
  gap: .8rem;
  flex-shrink: 0;
}
.ed-box {
  border-radius: 10px;
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  min-width: 90px;
  text-align: center;
}
.ed-box-em { font-size: 2rem; }
.ed-box-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.ed-box-1 { background: rgba(224,85,120,.15); }
.ed-box-2 { background: rgba(45,106,159,.15); }
.ed-box-3 { background: rgba(212,175,106,.15); }

/* --- Responsive sections --- */
@media (max-width: 900px) {
  .hero-editorial-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-bento-wrap { display: none; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial-inner { grid-template-columns: 1fr; gap: 2rem; }
  .editorial-boxes { justify-content: center; }
}
@media (max-width: 600px) {
  .cat-pill-list { justify-content: flex-start; }
  .hero-editorial { padding: 3rem 0; }
  .hero-ed-h1 { font-size: 2.4rem; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .occ-circle { width: 52px; height: 52px; font-size: 1.3rem; }
  .popular-ed .products-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-boxes { display: none; }
}

/* ===== CHECKOUT ===== */
.woocommerce-checkout { background: #fff; }
.woocommerce-checkout .container { max-width: 1200px !important; padding: 0 2rem; }

/* Grid layout */
.woocommerce-checkout form.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-areas:
    "details summary"
    "payment summary";
  gap: 3rem;
  align-items: start;
  padding: 2rem 0;
}
.woocommerce-checkout #customer_details { grid-area: details; }
.woocommerce-checkout #payment { grid-area: payment; }
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review { grid-area: summary; }

/* Section headers */
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3 {
  font-size: .78rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid #f0f0f0;
}

/* Inputs */
.woocommerce-checkout .form-row { margin-bottom: .8rem; }
.woocommerce-checkout .form-row label {
  font-size: .78rem;
  font-weight: 600;
  color: #555;
  margin-bottom: .3rem;
  display: block;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: none !important;
  border-bottom: 1.5px solid #ddd !important;
  border-radius: 0 !important;
  padding: .6rem 0 !important;
  font-size: .92rem !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  box-shadow: none !important;
  background: transparent !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus {
  border-bottom-color: #ec4899 !important;
  outline: none !important;
}

/* Shipping options */
.woocommerce-checkout .woocommerce-shipping-methods { padding: 0; margin: 0; }
.woocommerce-checkout .woocommerce-shipping-methods li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: .6rem;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  list-style: none;
}
.woocommerce-checkout .woocommerce-shipping-methods li:has(input:checked) {
  border-color: #ec4899;
  background: #fff5fb;
}

/* Payment */
.woocommerce-checkout #payment { border-top: 2px solid #f0f0f0; padding-top: 1.5rem; }
.woocommerce-checkout #payment .payment_methods { padding: 0; margin: 0 0 1rem; }
.woocommerce-checkout #payment .payment_methods li {
  padding: .8rem 1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: .6rem;
  list-style: none;
  font-size: .88rem;
  font-weight: 500;
}
.woocommerce-checkout #payment .place-order { padding: 0; background: none; border: none; }
.woocommerce-checkout #payment #place_order {
  background: #ec4899 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  cursor: pointer !important;
  margin-top: 1rem;
  letter-spacing: .5px;
}
.woocommerce-checkout #payment #place_order:hover { background: #db2777 !important; }

/* Order summary */
.woocommerce-checkout #order_review_heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0;
  padding: 1.2rem 1.8rem;
  border-bottom: none;
}
.woocommerce-checkout #order_review {
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  padding: 0;
  position: sticky;
  top: 2rem;
}
.woocommerce-checkout #order_review > h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
}
.woocommerce-checkout #order_review table { width: 100%; border: none; border-collapse: collapse; }
.woocommerce-checkout #order_review table thead th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  padding: .8rem 1.8rem;
  border-bottom: 1px solid #f0f0f0 !important;
}
.woocommerce-checkout #order_review table td {
  border: none !important;
  padding: .8rem 1.8rem;
  font-size: .88rem;
  border-bottom: 1px solid #f5f5f5 !important;
}
.woocommerce-checkout #order_review .product-name { font-weight: 600; color: #1a1a1a; }
.woocommerce-checkout #order_review .product-total { text-align: right; font-weight: 700; color: #ec4899; }
.woocommerce-checkout #order_review .order-total td { font-weight: 700; font-size: 1rem; color: #1a1a1a; border-bottom: none !important; }
.woocommerce-checkout #order_review .cart-subtotal td,
.woocommerce-checkout #order_review .shipping td { color: #555; }

@media (max-width: 860px) {
  .woocommerce-checkout form.woocommerce-checkout {
    grid-template-columns: 1fr;
    grid-template-areas: "details" "summary" "payment";
  }
  .woocommerce-checkout #order_review { position: static; }
}


/* ===== PAGINATION ===== */
.dt-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.dt-pagination ul { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.dt-pagination ul li a,
.dt-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 6px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--dark);
  text-decoration: none; transition: all .2s;
  background: #fff;
}
.dt-pagination ul li a:hover { border-color: var(--pink); color: var(--pink); }
.dt-pagination ul li span.current {
  background: #4a90e2; border-color: #4a90e2; color: #fff;
}
.dt-pagination ul li span.dots { border: none; background: none; color: #999; min-width: 24px; }
