/*
Theme Name: Adbiyas Women's Health
Theme URI: https://adbiyas.com
Author: Adbiyas Inc
Author URI: https://adbiyas.com
Description: Premium feminine health supplement theme for Adbiyas Women's Probiotic Capsules - with WooCommerce support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adbiyas
Tags: e-commerce, health, supplement, feminine, pink, woocommerce
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --rose:        #C9626A;
  --rose-dark:   #A94550;
  --rose-light:  #F2B8BC;
  --blush:       #FAE8E8;
  --blush-mid:   #F5D5D7;
  --cream:       #FFF8F7;
  --white:       #FFFFFF;
  --charcoal:    #2C1F20;
  --text:        #3D2B2C;
  --text-muted:  #8C6B6D;
  --border:      #F0DADB;
  --gold:        #D4A843;
  --success:     #5BA87A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --shadow-sm:  0 2px 8px rgba(201,98,106,0.10);
  --shadow-md:  0 8px 32px rgba(201,98,106,0.15);
  --shadow-lg:  0 20px 60px rgba(201,98,106,0.20);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  48px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-rose { color: var(--rose); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,98,106,0.35);
}
.btn--primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,98,106,0.45);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn--outline:hover {
  background: var(--rose);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--rose);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--blush);
  color: var(--rose-dark);
}
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: var(--rose) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%;
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announcement-bar {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 100;
}
.announcement-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo svg { width: 32px; height: 32px; }

.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }
.primary-nav a:hover { color: var(--rose); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions a {
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-actions a:hover { color: var(--rose); }
.cart-icon { position: relative; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--rose); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  background: linear-gradient(135deg, #FFF0EF 0%, #FAE8E8 50%, #F5D5D7 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,98,106,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  background: var(--rose);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--rose); }
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(201,98,106,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero-image-bg {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,98,106,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ============================================================
   TRUST BADGES BAR
============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item-icon {
  width: 44px; height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 22px; height: 22px; color: var(--rose); }
.trust-item strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   ABOUT / PRODUCT FEATURE SECTION
============================================================ */
.product-feature {
  padding: 80px 0;
  background: var(--cream);
}
.product-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-feature-image { position: relative; }
.product-feature-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.badge-bestseller {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--rose);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}
.product-feature-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.product-feature-content h2 em {
  font-style: normal;
  color: var(--rose);
}
.product-feature-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ============================================================
   WHY CHOOSE SECTION
============================================================ */
.why-choose {
  background: var(--blush);
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 32px; height: 32px; color: var(--rose); }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--charcoal); }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   PRODUCT IMAGE GALLERY (A+ style)
============================================================ */
.product-gallery {
  padding: 80px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--white);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.85rem; color: var(--charcoal); }
.reviewer span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   AFFILIATE BANNER
============================================================ */
.affiliate-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 60px 24px;
}
.affiliate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.affiliate-info { display: flex; align-items: center; gap: 24px; }
.affiliate-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.affiliate-icon svg { width: 36px; height: 36px; color: white; }
.affiliate-text { color: white; }
.affiliate-text h3 { font-size: 1.5rem; margin-bottom: 6px; }
.affiliate-text p { font-size: 0.9rem; opacity: 0.85; }
.affiliate-stats {
  display: flex;
  gap: 40px;
  color: white;
}
.stat-item { text-align: center; }
.stat-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.stat-item .lbl { font-size: 0.8rem; opacity: 0.8; }

/* ============================================================
   WHOLESALE SECTION
============================================================ */
.wholesale {
  padding: 80px 0;
  background: var(--cream);
}
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.wholesale-content h2 { font-size: 2rem; margin-bottom: 16px; }
.wholesale-content h2 span { color: var(--rose); }
.wholesale-content p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.wholesale-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.wholesale-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--charcoal);
  text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: white;
}

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter {
  background: var(--blush-mid);
  padding: 60px 24px;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.newsletter-text h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 4px; }
.newsletter-text p { font-size: 0.9rem; color: var(--text-muted); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 280px;
  background: white;
  color: var(--text);
}
.newsletter-form input:focus { outline: none; border-color: var(--rose); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand .site-logo { color: white; font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.social-links a:hover { background: var(--rose); }
.social-links a svg { width: 18px; height: 18px; color: white; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--rose-light); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.footer-col .contact-item svg { width: 16px; height: 16px; color: var(--rose-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.payment-methods { display: flex; gap: 8px; align-items: center; }
.payment-methods img { height: 24px; border-radius: 4px; }
.payment-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
============================================================ */
/* Shop Page */
.woocommerce .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  float: none !important;
}
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: var(--shadow-sm);
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.woocommerce ul.products li.product img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 16px 16px 4px;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose);
  padding: 0 16px;
}
.woocommerce ul.products li.product .button {
  background: var(--rose) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  margin: 12px 16px 16px !important;
  padding: 10px 24px !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  width: calc(100% - 32px) !important;
  text-align: center !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--rose-dark) !important;
}

/* Single Product */
.woocommerce div.product .woocommerce-tabs .panel { padding: 24px 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--rose); border-bottom: 2px solid var(--rose); }
.woocommerce div.product p.price { color: var(--rose); font-size: 1.8rem; font-family: var(--font-display); }
.woocommerce div.product .single_add_to_cart_button {
  background: var(--rose) !important;
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 16px 40px !important;
  letter-spacing: 0.02em !important;
}
.woocommerce div.product .single_add_to_cart_button:hover { background: var(--rose-dark) !important; }
.woocommerce-notices-wrapper .woocommerce-message {
  border-top: 3px solid var(--rose) !important;
  background: var(--blush) !important;
  color: var(--charcoal) !important;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  font-family: var(--font-body);
  border-radius: 50px;
}

/* Cart & Checkout */
.woocommerce table.shop_table { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.woocommerce table.shop_table th { background: var(--blush); color: var(--charcoal); padding: 14px 16px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.woocommerce table.shop_table td { padding: 16px; border-top: 1px solid var(--border); }
.woocommerce #payment #place_order {
  background: var(--rose) !important;
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 16px 40px !important;
}

/* ============================================================
   PRODUCT DETAIL PAGE ADDITIONS
============================================================ */
.product-detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.product-badge-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--rose-light);
}

/* ============================================================
   BLOG
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body .tag {
  display: inline-block;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--charcoal); }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.blog-card-footer { padding: 0 24px 20px; display: flex; justify-content: space-between; align-items: center; }
.blog-card-footer .read-more { color: var(--rose); font-size: 0.85rem; font-weight: 600; }
.blog-card-footer .date { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 300px; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .product-feature-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .wholesale-inner { grid-template-columns: 1fr; }
  .affiliate-inner { flex-direction: column; text-align: center; }
  .affiliate-stats { justify-content: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .woocommerce .products { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .woocommerce .products { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 1.8rem; }
  .affiliate-stats { gap: 20px; flex-wrap: wrap; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
}

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