/*
Theme Name: LumpyLlama
Author: LumpyLlama Studio
Description: A sweet pastel-themed WordPress theme for handmade stationery shops — stickers, totes, notebooks, and more.
Version: 1.0.0
Requires at least: 5.8
License: GNU General Public License v2 or later
Text Domain: lumpy-llama
Tags: e-commerce, woocommerce, pastel, stationery, handmade, minimal, feminine
*/

/* =====================
   CUSTOM PROPERTIES
   ===================== */
:root {
  --pink:           #FFB7C5;
  --pink-light:     #FFE4EC;
  --pink-pale:      #FFF0F5;
  --lavender:       #C8B5FF;
  --lavender-light: #EDE8FF;
  --lavender-pale:  #F5F1FF;
  --mint:           #B5EAD7;
  --mint-light:     #DFFAF0;
  --yellow:         #FFEAA0;
  --yellow-light:   #FFF8D0;
  --peach:          #FFD4A3;
  --peach-light:    #FFF0DE;
  --bg:             #FFF8FC;
  --text:           #6B5B7B;
  --text-light:     #9B8BA8;
  --heading:        #7C5CA8;
  --heading-dark:   #4A3560;
  --white:          #FFFFFF;
  --card-bg:        #FFFAFC;
  --border:         #F2DCE8;
  --shadow-sm:  0 2px 12px rgba(155,127,212,0.10);
  --shadow-md:  0 4px 24px rgba(155,127,212,0.15);
  --shadow-lg:  0 8px 40px rgba(155,127,212,0.20);
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-full:9999px;
  --transition: 0.3s ease;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--heading);
  line-height: 1.3;
}
a { color: var(--heading); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--heading-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all var(--transition); border: none; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  color: white; box-shadow: 0 4px 20px rgba(200,181,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,181,255,0.5); color: white; }
.btn-secondary {
  background: transparent; color: var(--heading);
  border: 2px solid var(--lavender);
}
.btn-secondary:hover { background: var(--lavender-pale); transform: translateY(-2px); }
.btn-accent {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: white; box-shadow: 0 4px 20px rgba(255,183,197,0.4);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,183,197,0.5); color: white; }

/* =====================
   SECTION TITLES
   ===================== */
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .subtitle {
  display: inline-block; background: var(--lavender-light);
  color: var(--heading); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 20px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.section-title h2 { font-size: clamp(26px,4vw,40px); margin-bottom: 14px; }
.section-title p { color: var(--text-light); max-width: 520px; margin: 0 auto; }

/* =====================
   ANNOUNCEMENT BAR
   ===================== */
.announcement-bar {
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  color: white; text-align: center; padding: 10px 24px;
  font-size: 13px; font-weight: 600;
}
.announcement-bar a { color: white; text-decoration: underline; }

/* =====================
   HEADER
   ===================== */
.site-header {
  background: rgba(255,248,252,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 76px;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 12px rgba(200,181,255,0.4);
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--heading); }
.logo-text span { color: var(--pink); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 15px; color: var(--text);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item > a { background: var(--lavender-light); color: var(--heading); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-btn {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--pink-pale); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--heading); font-size: 16px;
  transition: all var(--transition); text-decoration: none; position: relative;
}
.header-btn:hover { background: var(--lavender-light); transform: translateY(-2px); color: var(--heading); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--pink); color: white;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
/* Shop dropdown */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-arrow { font-size: 9px; transition: transform var(--transition); display: inline-block; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 8px; min-width: 190px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all var(--transition); z-index: 200;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; color: var(--text);
  transition: background var(--transition); width: 100%;
  background: transparent;
}
.dropdown-menu a:hover { background: var(--lavender-light) !important; color: var(--heading); }

/* WordPress sub-menu support */
.main-nav .menu-item-has-children { position: relative; }
.main-nav .menu-item-has-children > a::after { content: ' ▾'; font-size: 9px; }
.main-nav .sub-menu {
  list-style: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 8px; min-width: 190px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all var(--transition); z-index: 200;
  display: flex; flex-direction: column; gap: 2px;
}
.main-nav .menu-item-has-children:hover .sub-menu,
.main-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.main-nav .sub-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; color: var(--text);
  transition: background var(--transition); width: 100%;
}
.main-nav .sub-menu li a:hover { background: var(--lavender-light); color: var(--heading); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; background: var(--pink-pale);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--heading); border-radius: 4px; transition: all var(--transition); }

/* =====================
   HERO
   ===================== */
.hero-section {
  min-height: calc(100vh - 116px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--lavender-pale) 50%, var(--mint-light) 100%);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; opacity: 0.45;
}
.blob-1 { width:380px; height:380px; background: radial-gradient(circle, var(--lavender-light), transparent); top:-120px; right:-80px; animation: floaty 7s ease-in-out infinite; }
.blob-2 { width:250px; height:250px; background: radial-gradient(circle, var(--pink-light), transparent); bottom:0; left:-60px; animation: floaty 9s ease-in-out infinite reverse; }
.blob-3 { width:180px; height:180px; background: radial-gradient(circle, var(--mint-light), transparent); top:40%; left:55%; animation: floaty 8s ease-in-out infinite 1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; color: var(--heading);
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.hero-title { font-size: clamp(34px,5vw,60px); color: var(--heading-dark); margin-bottom: 20px; line-height: 1.15; }
.hero-title .highlight { color: var(--pink); position: relative; }
.hero-title .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px; background: var(--pink-light); border-radius: 4px; z-index: -1;
}
.hero-desc { font-size: 17px; color: var(--text); margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--heading); display: block; }
.stat-label { font-size: 12px; color: var(--text-light); font-weight: 600; }

.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
.hero-card {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px) rotate(2deg); }
.hero-card:nth-child(2) { margin-top: 28px; }
.hero-card:nth-child(4) { margin-top: 28px; }
.hero-card:nth-child(1) { background: var(--pink-pale); }
.hero-card:nth-child(2) { background: var(--lavender-pale); }
.hero-card:nth-child(3) { background: var(--mint-light); }
.hero-card:nth-child(4) { background: var(--yellow-light); }

/* =====================
   CATEGORIES
   ===================== */
.categories-section { background: var(--white); }
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.category-card {
  border-radius: var(--radius-lg); padding: 36px 20px;
  text-align: center; border: 2px solid transparent;
  transition: all var(--transition); display: block; text-decoration: none;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card:nth-child(1) { background: var(--pink-pale); }  .category-card:nth-child(1):hover { border-color: var(--pink); }
.category-card:nth-child(2) { background: var(--lavender-pale); } .category-card:nth-child(2):hover { border-color: var(--lavender); }
.category-card:nth-child(3) { background: var(--mint-light); }  .category-card:nth-child(3):hover { border-color: var(--mint); }
.category-card:nth-child(4) { background: var(--yellow-light); } .category-card:nth-child(4):hover { border-color: var(--yellow); }
.category-icon { font-size: 46px; margin-bottom: 14px; display: block; }
.category-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.category-count { font-size: 12px; color: var(--text-light); font-weight: 600; }

/* =====================
   PRODUCTS
   ===================== */
.products-section { background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image {
  position: relative; aspect-ratio: 1; background: var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 60px; overflow: hidden;
}
.product-image img { width:100%; height:100%; object-fit:cover; transition: transform var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  color: white; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-new      { background: #7EC8A0; }
.badge-sale     { background: var(--pink); }
.badge-best     { background: var(--lavender); }
.product-wish {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: all var(--transition); border: none;
  opacity: 0; transform: scale(0.8);
}
.product-card:hover .product-wish { opacity: 1; transform: scale(1); }
.product-wish:hover { background: var(--pink-light); transform: scale(1.1) !important; }
.product-info { padding: 18px; }
.product-cat { font-size: 11px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--heading); margin-bottom: 12px; line-height: 1.4; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 17px; font-weight: 800; color: var(--heading); }
.product-price .was { font-size: 13px; color: var(--text-light); text-decoration: line-through; font-weight: 400; margin-left: 5px; }
.product-add {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  border: none; border-radius: 50%; color: white;
  font-size: 20px; cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(200,181,255,0.4); line-height: 1;
}
.product-add:hover { transform: scale(1.15) rotate(90deg); }
.products-cta { text-align: center; margin-top: 44px; }

/* =====================
   ABOUT
   ===================== */
.about-section { background: white; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--pink-pale), var(--lavender-pale));
  display: flex; align-items: center; justify-content: center; font-size: 96px;
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: white; padding: 20px 24px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge .big-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--heading); display: block; line-height: 1; }
.about-badge .badge-lbl { font-size: 12px; color: var(--text-light); font-weight: 600; }
.about-floaty {
  position: absolute; top: -14px; left: -14px;
  background: var(--yellow-light); padding: 14px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); font-size: 26px;
}
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content .section-title h2 { margin-bottom: 0; }
.about-desc { color: var(--text); margin-bottom: 14px; font-size: 16px; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.about-check {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--text); font-size: 14px;
}
.about-check::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--mint-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #3D9970; font-weight: 800; flex-shrink: 0;
}

/* =====================
   FEATURES
   ===================== */
.features-section { background: linear-gradient(135deg, var(--lavender-pale), var(--pink-pale)); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 22px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 62px; height: 62px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 18px;
}
.feature-card:nth-child(1) .feature-icon { background: var(--pink-pale); }
.feature-card:nth-child(2) .feature-icon { background: var(--lavender-pale); }
.feature-card:nth-child(3) .feature-icon { background: var(--mint-light); }
.feature-card:nth-child(4) .feature-icon { background: var(--yellow-light); }
.feature-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.t-card { background: var(--bg); border-radius: var(--radius-lg); padding: 30px; position: relative; }
.t-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 72px; color: var(--lavender-light); position: absolute; top: 14px; left: 22px; line-height: 1; }
.t-stars { color: #FFD700; font-size: 15px; margin-bottom: 14px; }
.t-text { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 15px; font-family: 'Playfair Display', serif;
}
.t-name { font-weight: 700; color: var(--heading); font-size: 14px; display: block; }
.t-loc { font-size: 12px; color: var(--text-light); }

/* =====================
   NEWSLETTER
   ===================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--heading) 0%, #C47FD4 100%);
  color: white; text-align: center; overflow: hidden; position: relative;
}
.newsletter-section::before,
.newsletter-section::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; opacity: 0.08; background: white;
}
.newsletter-section::before { top: -100px; left: -100px; }
.newsletter-section::after  { bottom: -100px; right: -100px; }
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-inner h2 { color: white; font-size: clamp(26px,4vw,38px); margin-bottom: 12px; }
.newsletter-inner p { font-size: 16px; opacity: 0.88; margin-bottom: 32px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 10px; }
.nl-input {
  flex: 1; padding: 15px 22px; border-radius: var(--radius-full);
  border: none; font-size: 15px; outline: none;
  background: rgba(255,255,255,0.18); color: white; backdrop-filter: blur(8px);
}
.nl-input::placeholder { color: rgba(255,255,255,0.65); }
.nl-input:focus { background: rgba(255,255,255,0.28); }
.nl-btn {
  background: white; color: var(--heading);
  padding: 15px 26px; border-radius: var(--radius-full);
  border: none; font-weight: 700; font-size: 15px; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.nl-btn:hover { background: var(--pink-light); transform: translateY(-2px); }
.nl-perks { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 20px; font-size: 13px; opacity: 0.78; }
.nl-perks span::before { content: '✓ '; }

/* =====================
   FOOTER
   ===================== */
.site-footer { background: #2D1F3D; color: rgba(255,255,255,0.75); }
.footer-top {
  padding: 60px 0 44px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: white; font-size: 22px; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 22px; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px; transition: all var(--transition); text-decoration: none;
}
.social-link:hover { background: var(--pink); transform: translateY(-2px); color: white; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: white; font-size: 16px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--pink-light); }
.pay-icons { display: flex; gap: 7px; align-items: center; }
.pay-icon { background: rgba(255,255,255,0.1); padding: 3px 9px; border-radius: 5px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55); }

/* =====================
   PAGE / BLOG
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--pink-pale), var(--lavender-pale));
  padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(28px,4vw,46px); margin-bottom: 10px; }
.page-hero p { color: var(--text-light); font-size: 16px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--heading); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

.page-wrap { padding: 60px 0; }
.entry-content { max-width: 760px; margin: 0 auto; }
.entry-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.entry-content h2 { font-size: 26px; margin: 32px 0 14px; }
.entry-content h3 { font-size: 21px; margin: 26px 0 12px; }
.entry-content img { border-radius: var(--radius-md); margin: 24px 0; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote {
  border-left: 4px solid var(--lavender); padding: 16px 24px;
  background: var(--lavender-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0; font-style: italic; color: var(--heading);
}

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--lavender-pale); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition: transform var(--transition); }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-body { padding: 22px; }
.blog-meta { font-size: 12px; color: var(--text-light); font-weight: 600; margin-bottom: 8px; display: flex; gap: 12px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--heading); margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--pink); }
.blog-excerpt { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.blog-read-more { font-size: 14px; font-weight: 700; color: var(--heading); display: inline-flex; align-items: center; gap: 5px; }
.blog-read-more:hover { color: var(--pink); }
.blog-read-more::after { content: '→'; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; transition: all var(--transition);
}
.pagination a { background: white; color: var(--text); box-shadow: var(--shadow-sm); }
.pagination a:hover { background: var(--lavender-light); color: var(--heading); }
.pagination .current { background: linear-gradient(135deg, var(--lavender), var(--pink)); color: white; }

/* =====================
   WOOCOMMERCE
   ===================== */
.woocommerce-page .site-main,
.woocommerce .site-main { padding: 60px 0; }

.woocommerce ul.products {
  display: grid !important; grid-template-columns: repeat(4,1fr) !important;
  gap: 22px !important; margin: 0 !important; float: none !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product {
  background: white !important; border-radius: var(--radius-lg) !important;
  overflow: hidden !important; box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition) !important;
  padding: 0 !important; margin: 0 !important; width: auto !important; float: none !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-lg) !important; }
.woocommerce ul.products li.product a img { margin: 0 !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif !important; color: var(--heading) !important;
  font-size: 15px !important; padding: 14px 16px 6px !important;
}
.woocommerce ul.products li.product .price { color: var(--heading) !important; font-weight: 700 !important; padding: 0 16px 12px !important; }
.woocommerce ul.products li.product .button {
  background: linear-gradient(135deg, var(--lavender), var(--pink)) !important;
  color: white !important; border-radius: var(--radius-full) !important;
  font-weight: 700 !important; transition: all var(--transition) !important;
  border: none !important; padding: 10px 20px !important;
  margin: 0 14px 14px !important; width: calc(100% - 28px) !important;
  display: block !important;
}
.woocommerce ul.products li.product .button:hover { transform: translateY(-2px) !important; }
.woocommerce-breadcrumb { color: var(--text-light); font-size: 13px; margin-bottom: 24px; }
.woocommerce-breadcrumb a { color: var(--text-light); }
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count { margin-bottom: 24px; }

/* 3-col grid when sidebar is present */
.shop-main .woocommerce ul.products { grid-template-columns: repeat(3,1fr) !important; }
@media (max-width: 900px) { .shop-main .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; } }

/* Single product */
.woocommerce div.product .product_title { font-family: 'Playfair Display', serif !important; color: var(--heading-dark) !important; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--heading) !important; font-size: 22px !important; font-weight: 800 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--heading) !important; border-color: var(--border) !important; }
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, var(--lavender), var(--pink)) !important;
  color: white !important; border-radius: var(--radius-full) !important;
  font-weight: 700 !important; border: none !important;
  padding: 14px 32px !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { transform: translateY(-2px) !important; opacity: 1 !important; }

/* =====================
   SHOP SIDEBAR LAYOUT
   ===================== */
.shop-layout { display: grid; grid-template-columns: 268px 1fr; gap: 28px; align-items: start; }

.shop-sidebar {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  position: sticky; top: 96px;
}
.sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--border);
  background: var(--lavender-pale);
}
.sidebar-head h3 { font-size: 16px; color: var(--heading); margin: 0; }
.btn-clear {
  font-size: 12px; font-weight: 700; color: var(--pink);
  background: none; border: none; cursor: pointer; padding: 0; font-family: inherit;
  display: none;
}
.btn-clear.visible { display: block; }

.filter-section { border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }
.filter-section-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 22px; background: none; border: none;
  cursor: pointer; font-family: inherit; text-align: left;
}
.filter-section-title { font-size: 14px; font-weight: 700; color: var(--heading); }
.filter-arrow { font-size: 10px; color: var(--text-light); transition: transform var(--transition); }
.filter-section.closed .filter-arrow { transform: rotate(-90deg); }
.filter-section.closed .filter-body { display: none; }
.filter-body { padding: 4px 22px 16px; }

.filter-opt { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; }
.filter-opt input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0; cursor: pointer;
  border-radius: 5px; accent-color: var(--lavender); margin: 0;
}
.filter-opt label { font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; flex: 1; display: flex; align-items: center; justify-content: space-between; }
.filter-opt label .fcount { color: var(--text-light); font-weight: 400; font-size: 12px; }
.filter-opt input:checked + label { color: var(--heading); }

/* Out of stock badge */
.badge-out { background: #AAAAAA; }
.product-card.oos .product-add { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.product-card.oos .product-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.45); pointer-events: none;
}

/* Price inputs */
.price-range-inputs { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.price-inp {
  width: 72px; padding: 8px 10px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  color: var(--heading); outline: none; font-family: inherit;
  transition: border-color var(--transition);
}
.price-inp:focus { border-color: var(--lavender); }
.price-sep { color: var(--text-light); font-weight: 700; font-size: 13px; }
.price-apply {
  padding: 8px 14px; border-radius: var(--radius-full);
  background: var(--lavender-light); border: none;
  color: var(--heading); font-weight: 700; font-size: 12px; cursor: pointer;
  font-family: inherit; transition: all var(--transition);
}
.price-apply:hover { background: var(--lavender); color: white; }

/* Active filter chips */
.active-filter-chips { display: none; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-filter-chips.show { display: flex; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; background: var(--lavender-light);
  color: var(--heading); border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
}
.chip button {
  background: none; border: none; cursor: pointer;
  font-size: 14px; color: var(--heading); line-height: 1; padding: 0;
  display: flex; align-items: center;
}
.chip button:hover { color: var(--pink); }

/* Mobile filter toggle */
.mobile-filter-btn {
  display: none; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-full);
  background: white; border: 2px solid var(--border);
  font-weight: 700; font-size: 14px; color: var(--heading);
  cursor: pointer; font-family: inherit; box-shadow: var(--shadow-sm);
}
.mobile-filter-btn .fcount-badge {
  background: var(--lavender); color: white;
  font-size: 11px; width: 18px; height: 18px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; font-weight: 700;
}
.mobile-filter-btn .fcount-badge.show { display: flex; }

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(74,53,96,0.6); z-index: 500;
}
.sidebar-overlay.show { display: block; }

@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 240px 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .shop-layout { grid-template-columns: 1fr; }
  .mobile-filter-btn { display: flex; }
  .shop-sidebar {
    position: fixed; top: 0; left: -100%; bottom: 0; z-index: 600;
    width: 300px; overflow-y: auto; border-radius: 0;
    transition: left var(--transition); box-shadow: var(--shadow-lg);
  }
  .shop-sidebar.open { left: 0; }
  .sidebar-overlay.show { display: block; }
}

/* =====================
   SHOP / ARCHIVE PAGE
   ===================== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; align-items: center; }
.filter-tag {
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  background: white; color: var(--text); box-shadow: var(--shadow-sm);
  text-decoration: none; display: inline-block;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--lavender-light); color: var(--heading); border-color: var(--lavender);
}
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding: 16px 20px;
  background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.shop-count { font-size: 14px; color: var(--text-light); font-weight: 600; }
.shop-sort {
  padding: 8px 16px; border-radius: var(--radius-full);
  border: 2px solid var(--border); background: white; font-size: 14px;
  color: var(--text); cursor: pointer; outline: none; font-family: inherit; font-weight: 600;
}
.shop-sort:focus { border-color: var(--lavender); }

/* =====================
   SINGLE PRODUCT PAGE
   ===================== */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; padding: 60px 0;
}
.gallery-wrap { position: sticky; top: 96px; }
.gallery-main {
  aspect-ratio: 1; border-radius: var(--radius-lg);
  background: var(--pink-pale); display: flex; align-items: center;
  justify-content: center; font-size: 130px; margin-bottom: 14px;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-thumb {
  aspect-ratio: 1; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; transition: all var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--lavender); transform: scale(1.03); }
.gallery-thumb:nth-child(1) { background: var(--pink-pale); }
.gallery-thumb:nth-child(2) { background: var(--lavender-pale); }
.gallery-thumb:nth-child(3) { background: var(--mint-light); }
.gallery-thumb:nth-child(4) { background: var(--yellow-light); }

.product-cat-tag {
  display: inline-block; background: var(--lavender-light); color: var(--heading);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.product-detail-title { font-size: clamp(22px,3vw,34px); margin-bottom: 10px; color: var(--heading-dark); line-height: 1.2; }
.product-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.stars { color: #FFD700; font-size: 16px; letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--heading); font-size: 14px; }
.rating-count { color: var(--text-light); font-size: 14px; text-decoration: underline; cursor: pointer; }
.product-detail-price { font-size: 34px; font-weight: 800; color: var(--heading); margin-bottom: 18px; line-height: 1; }
.product-detail-price .was { font-size: 18px; color: var(--text-light); text-decoration: line-through; font-weight: 400; margin-left: 10px; }
.product-short-desc { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 22px; }
.product-short-desc ul { padding-left: 20px; list-style: none; }
.product-short-desc li::before { content: '✦ '; color: var(--lavender); font-size: 11px; }
.product-short-desc li { margin-bottom: 6px; }
.product-divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }

.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--radius-full); overflow: hidden; background: white; }
.qty-btn {
  width: 42px; height: 46px; background: var(--pink-pale);
  border: none; font-size: 20px; cursor: pointer;
  color: var(--heading); transition: background var(--transition); font-weight: 700; line-height: 1;
}
.qty-btn:hover { background: var(--lavender-light); }
.qty-input { width: 48px; text-align: center; border: none; font-size: 16px; font-weight: 700; color: var(--heading); outline: none; background: white; }
.btn-cart { flex: 1; min-width: 180px; }
.btn-wish {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  font-size: 20px; cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.btn-wish:hover { border-color: var(--pink); background: var(--pink-pale); }

.product-guarantees { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 22px 0; }
.guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text); font-weight: 600;
  padding: 10px 12px; background: var(--bg); border-radius: var(--radius-sm);
}
.product-meta-row { font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
.product-meta-row strong { color: var(--text); }

/* Product tabs */
.product-tabs-section { padding: 48px 0; background: white; border-top: 1px solid var(--border); }
.tab-nav { display: flex; gap: 2px; border-bottom: 2px solid var(--border); margin-bottom: 36px; }
.tab-btn {
  padding: 12px 28px; font-size: 15px; font-weight: 700;
  color: var(--text-light); border: none; background: none;
  cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all var(--transition); font-family: inherit;
}
.tab-btn.active, .tab-btn:hover { color: var(--heading); border-bottom-color: var(--lavender); }
.tab-pane { display: none; max-width: 760px; }
.tab-pane.active { display: block; }
.tab-pane p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.tab-pane ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.tab-pane li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; display: flex; gap: 12px; }
.tab-pane li strong { min-width: 140px; color: var(--heading); display: inline-block; flex-shrink: 0; }

/* Reviews */
.reviews-summary { display: flex; align-items: center; gap: 36px; padding: 28px; background: var(--bg); border-radius: var(--radius-lg); margin-bottom: 28px; flex-wrap: wrap; }
.big-score { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700; color: var(--heading); line-height: 1; text-align: center; }
.big-score .score-stars { display: block; font-size: 18px; margin-top: 4px; letter-spacing: 2px; }
.review-bars { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 7px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: #FFD700; border-radius: 4px; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { padding: 22px; background: var(--bg); border-radius: var(--radius-md); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--lavender), var(--pink)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.reviewer-name { font-weight: 700; color: var(--heading); font-size: 14px; display: block; }
.reviewer-date { font-size: 12px; color: var(--text-light); }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-top: 8px; }
.review-verified { font-size: 11px; color: #3D9970; font-weight: 700; background: var(--mint-light); padding: 3px 10px; border-radius: var(--radius-full); }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
  .gallery-wrap { position: static; }
  .product-guarantees { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .product-guarantees { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; gap: 20px; }
}

/* =====================
   SCROLL TO TOP
   ===================== */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  border-radius: 50%; color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md);
  transition: all var(--transition); border: none;
  opacity: 0; transform: translateY(20px); z-index: 999;
  text-decoration: none;
}
#scroll-top.show { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-4px); color: white; }

/* =====================
   SEARCH OVERLAY
   ===================== */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(74,53,96,0.85); backdrop-filter: blur(8px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-box { background: white; border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 560px; position: relative; }
.search-box input {
  width: 100%; border: 2px solid var(--border); border-radius: var(--radius-full);
  padding: 16px 56px 16px 24px; font-size: 16px; outline: none;
  transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--lavender); }
.search-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  background: var(--pink-pale); border: none; border-radius: 50%;
  cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center;
  color: var(--heading);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .categories-grid, .products-grid, .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr) !important; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  .hero-inner, .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual, .about-visual { display: none; }
  .hero-content { padding: 40px 0; }
  .hero-stats { gap: 20px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--bg); padding: 16px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 999;
  }
  .newsletter-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .categories-grid, .products-grid, .features-grid { grid-template-columns: 1fr; }
  .about-checks { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .nl-perks { flex-direction: column; gap: 6px; }
}
