/*
Theme Name: Lulié
Theme URI: https://lulie.co.za
Author: Lulié Wellness
Description: A modern, premium WooCommerce theme for intimate wellness brands. Designed for the South African market with discreet shopping, age verification, and SA payment gateway support.
Version: 1.0.0
License: GPL-2.0+
Text Domain: lulie
Tags: e-commerce, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, theme-options
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ============================================
   LULIÉ — MODERN INTIMATE WELLNESS THEME
   Color palette: cream, terracotta, ink, rose
   Typography: Fraunces + Inter
   ============================================ */

:root {
  --cream: #f5efe6;
  --cream-light: #faf6f0;
  --cream-dark: #ede4d3;
  --terracotta: #c8654a;
  --terracotta-deep: #a8543d;
  --rose: #d99a8a;
  --ink: #1f1d1a;
  --ink-soft: #4a4641;
  --ink-light: #8a847c;
  --sage: #8a9a7b;
  --gold: #b89968;
  --line: #e0d5c2;
  --shadow: 0 1px 3px rgba(31,29,26,0.04), 0 12px 40px rgba(31,29,26,0.06);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

em { color: var(--terracotta); }

/* AGE GATE */
.age-gate {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate-card {
  max-width: 460px;
  text-align: center;
  padding: 50px 40px;
  background: var(--cream-light);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.age-gate-card h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.age-gate-card h2 em { font-style: italic; }
.age-gate-card p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 15px;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate-buttons button {
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.age-yes { background: var(--ink); color: var(--cream); }
.age-yes:hover { background: var(--terracotta); }
.age-no { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announce-bar span { opacity: 0.7; margin: 0 8px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 18px 40px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}
.site-logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.site-logo em { color: var(--terracotta); font-style: italic; }
.main-menu { display: flex; gap: 32px; list-style: none; }
.main-menu a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
}
.main-menu a:hover, .main-menu .current-menu-item a {
  color: var(--terracotta);
}
.header-actions { display: flex; gap: 20px; align-items: center; }
.header-actions a, .header-actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  position: relative;
  transition: color var(--transition);
}
.header-actions a:hover, .header-actions button:hover { color: var(--terracotta); }
.cart-count {
  background: var(--terracotta);
  color: var(--cream-light);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 60%);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--terracotta);
  border-radius: 100px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1;
}
.hero h1 em { font-style: italic; }
.hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--terracotta) 100%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 13px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-terra {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-terra:hover {
  background: var(--terracotta-deep);
}

/* TICKER */
.ticker {
  background: var(--cream-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
}
.ticker-track span { margin: 0 40px; }
.ticker-track span::after {
  content: '✦';
  margin-left: 80px;
  color: var(--terracotta);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 20px;
}
.section-head h2 em { font-style: italic; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* PRODUCT GRID — WooCommerce */
.woocommerce ul.products,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce ul.products li.product,
.product-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.woocommerce ul.products li.product a img,
.product-card .product-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--cream-dark);
  transition: transform 0.6s;
}
.woocommerce ul.products li.product:hover a img,
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card .product-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  padding: 20px 24px 4px;
  color: var(--ink);
}
.woocommerce ul.products li.product .price,
.product-card .product-price {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  padding: 0 24px 20px;
  display: block;
}
.woocommerce ul.products li.product .price del,
.product-card .product-price del {
  font-size: 14px;
  color: var(--ink-light);
  font-family: 'Inter', sans-serif;
  margin-right: 8px;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--terracotta);
}
.woocommerce ul.products li.product .button,
.product-card .add-to-cart {
  display: inline-block;
  background: var(--ink);
  color: var(--cream-light);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 24px 24px;
  text-decoration: none;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.woocommerce ul.products li.product .button:hover,
.product-card .add-to-cart:hover {
  background: var(--terracotta);
}
.woocommerce ul.products li.product .onsale,
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
  min-width: auto;
  min-height: auto;
  line-height: 1;
}

/* SINGLE PRODUCT */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.woocommerce div.product .product_title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}
.woocommerce div.product p.price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 500;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.woocommerce div.product form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.woocommerce .quantity input.qty {
  width: 64px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  text-align: center;
  background: var(--cream-light);
}
.woocommerce div.product form.cart .button {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.woocommerce div.product form.cart .button:hover {
  background: var(--terracotta);
}
.product-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.trust-badge svg { color: var(--terracotta); flex-shrink: 0; }

/* STOCK STATUS */
.woocommerce div.product .stock {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
}
.woocommerce div.product .in-stock {
  background: rgba(138, 154, 123, 0.15);
  color: var(--sage);
}
.woocommerce div.product .out-of-stock {
  background: rgba(200, 101, 74, 0.15);
  color: var(--terracotta);
}

/* TABS ON PRODUCT */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin: 60px 0 32px;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 14px 22px;
  background: none;
  border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ink-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: inherit;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--terracotta);
}

/* VALUES BAR */
.values {
  background: var(--cream-dark);
  padding: 80px 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.value-item { text-align: center; }
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.value-item h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}
.value-item p { font-size: 14px; color: var(--ink-soft); }

/* TESTIMONIALS */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 40px;
}
.testimonials .eyebrow { color: var(--rose); }
.testimonials h2, .testimonials .section-head h2 { color: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  padding: 32px;
  border: 1px solid rgba(245, 239, 230, 0.15);
  border-radius: var(--radius);
}
.stars { color: var(--rose); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}
.testimonial cite {
  font-size: 13px;
  font-style: normal;
  opacity: 0.7;
  letter-spacing: 0.06em;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 40px 0;
}
article.post,
.blog-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
article.post:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card-img,
article.post .post-thumbnail img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
article.post .entry-header,
.blog-card-content { padding: 24px; }
article.post h2.entry-title,
.blog-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}
article.post h2.entry-title a {
  color: var(--ink);
  text-decoration: none;
}
article.post h2.entry-title a:hover { color: var(--terracotta); }
article.post .entry-meta,
.blog-card-meta {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
article.post .entry-summary,
.blog-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* SINGLE POST */
.single-post .entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px;
  font-size: 17px;
  line-height: 1.8;
}
.single-post .entry-content p { margin-bottom: 20px; color: var(--ink-soft); }
.single-post .entry-content h2 {
  font-size: 32px;
  margin: 40px 0 16px;
}
.single-post .entry-content h3 {
  font-size: 24px;
  margin: 32px 0 12px;
}
.single-post .entry-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding-left: 24px;
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--ink);
  margin: 32px 0;
}

/* CART & CHECKOUT */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart table.shop_table,
.woocommerce-checkout #order_review {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.woocommerce-cart table.shop_table {
  border-collapse: separate;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-light);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: var(--terracotta);
}
.woocommerce-checkout .form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.woocommerce-checkout #place_order {
  background: var(--ink);
  color: var(--cream);
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-top: 16px;
  font-family: inherit;
  transition: background var(--transition);
}
.woocommerce-checkout #place_order:hover { background: var(--terracotta); }

/* NEWSLETTER */
.newsletter {
  text-align: center;
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.newsletter-form {
  max-width: 480px;
  margin: 32px auto 0;
  display: flex;
  gap: 8px;
  background: var(--cream-light);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.newsletter-form button {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--terracotta); }

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 40px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.footer-brand h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-brand h3 em { color: var(--rose); font-style: italic; }
.footer-brand p {
  color: rgba(245, 239, 230, 0.6);
  font-size: 14px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(245, 239, 230, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(245, 239, 230, 0.5);
}
.payment-icons { display: flex; gap: 12px; opacity: 0.6; flex-wrap: wrap; }
.payment-icons span {
  background: rgba(245, 239, 230, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* SIDEBAR / SHOP FILTERS */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
}
.shop-sidebar {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.widget-title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.widget ul { list-style: none; padding: 0; margin-bottom: 28px; }
.widget li { padding: 6px 0; font-size: 14px; }
.widget li a { color: var(--ink-soft); }
.widget li a:hover { color: var(--terracotta); }

/* SEARCH FORM */
.search-form input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--cream);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

/* PAGINATION */
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 4px;
  list-style: none;
  justify-content: center;
  margin: 40px 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* NOTICES */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  list-style: none;
}
.woocommerce-message { border-left-color: var(--sage); }

/* RESPONSIVE */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}
@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .main-menu { display: none; }
  .main-menu.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    gap: 12px;
  }
  .mobile-toggle { display: block; }
  .hero { padding: 40px 20px 60px; }
  .section { padding: 60px 20px; }
  .testimonials, .values, .newsletter { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* OUT OF STOCK BADGE */
.out-of-stock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ACCESSIBILITY */
.screen-reader-text {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
