/*
Theme Name:   The Tea Story — Premium
Theme URI:    https://theteastory.in
Description:  Premium WooCommerce child theme for The Tea Story. Elegant, luxury tea e-commerce experience with Razorpay, health categories, gift collections, and full mobile responsiveness.
Author:       The Tea Story / Abhishek Gupta
Template:     storefront
Version:      2.0.0
Tags:         woocommerce, tea, premium, luxury, e-commerce
Text Domain:  teastory-premium
*/

/* ============================================================
   DESIGN TOKENS — THE TEA STORY PREMIUM PALETTE
   ============================================================ */
:root {
  /* Primary Palette */
  --ts-forest:      #1A3D2B;   /* Deep Meghalaya forest green */
  --ts-gold:        #C9A84C;   /* Premium gold accent */
  --ts-gold-light:  #E8C97A;
  --ts-gold-pale:   #FBF5E6;
  --ts-cream:       #FAF6EF;
  --ts-parchment:   #F2EAD8;
  --ts-bark:        #5C3D2E;
  --ts-bark-light:  #8B6247;
  --ts-leaf:        #2E6B49;
  --ts-sage:        #7A9E7E;
  --ts-fog:         #ECE8E0;
  --ts-charcoal:    #222018;
  --ts-text:        #2C2A25;
  --ts-text-muted:  #6B6558;

  /* Typography */
  --font-display:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:      'Jost', 'Gill Sans', sans-serif;
  --font-mono:      'DM Mono', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(26,61,43,0.08);
  --shadow-md:  0 4px 20px rgba(26,61,43,0.12);
  --shadow-lg:  0 12px 48px rgba(26,61,43,0.18);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --dur-fast: 180ms;
  --dur-mid:  320ms;
  --dur-slow: 600ms;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ts-text);
  background: var(--ts-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ts-charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p { margin-bottom: var(--space-md); }
a { color: var(--ts-forest); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--ts-gold); }

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

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&family=DM+Mono:wght@400&display=swap');

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ts-announcement {
  background: var(--ts-forest);
  color: var(--ts-gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px var(--space-md);
  position: relative;
  z-index: 200;
}

.ts-announcement a { color: var(--ts-gold-light); border-bottom: 1px solid rgba(232,201,122,0.4); }
.ts-announcement strong { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header,
header.site-header {
  background: var(--ts-cream) !important;
  border-bottom: 1px solid var(--ts-fog);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ts-forest) !important;
  letter-spacing: 0.02em;
}

.site-title a { color: inherit !important; }

/* ── Header inner layout ── */
.ts-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  height: 72px;
}

/* ── Search bar in header ── */
.ts-header-search {
  position: relative;
  max-width: 340px;
  width: 100%;
  justify-self: center;
}

.ts-header-search input {
  width: 100%;
  border: 1.5px solid var(--ts-fog);
  border-radius: var(--radius-pill);
  padding: 8px 40px 8px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  background: #fff;
  color: var(--ts-text);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none;
}

.ts-header-search input:focus {
  border-color: var(--ts-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.ts-header-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ts-text-muted);
  display: flex;
  align-items: center;
  padding: 0;
}

/* ── Header icons ── */
.ts-header-icons {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.ts-header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ts-text-muted);
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
  position: relative;
  text-decoration: none;
}

.ts-header-icon:hover { color: var(--ts-forest); }
.ts-header-icon svg { width: 22px; height: 22px; }

/* Cart count badge */
.ts-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--ts-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ============================================================
   PRIMARY NAVIGATION
   ============================================================ */
.ts-nav-wrap {
  background: var(--ts-forest);
  border-bottom: 2px solid var(--ts-gold);
}

.ts-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: stretch;
}

.ts-nav-inner ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.ts-nav-inner ul li {
  position: relative;
}

.ts-nav-inner ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.ts-nav-inner ul li a:hover,
.ts-nav-inner ul li.current-menu-item > a,
.ts-nav-inner ul li.current-menu-ancestor > a {
  color: var(--ts-gold-light);
  background: rgba(201,168,76,0.08);
}

/* Dropdown */
.ts-nav-inner ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--ts-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  flex-direction: column;
  gap: 0;
  padding: var(--space-sm) 0;
}

.ts-nav-inner ul li:hover > ul { display: flex; }

.ts-nav-inner ul li ul li a {
  color: var(--ts-text) !important;
  font-size: 13px;
  padding: 10px 20px;
  background: none !important;
  border-radius: 0;
  letter-spacing: 0.04em;
  text-transform: none;
}

.ts-nav-inner ul li ul li a:hover { color: var(--ts-forest) !important; background: var(--ts-cream) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.ts-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ts-forest) 0%, #0D2518 60%, #1A3D2B 100%);
}

.ts-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ts-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
}

.ts-hero-content { color: #fff; }

.ts-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ts-gold);
  margin-bottom: var(--space-lg);
}

.ts-hero-eyebrow::before,
.ts-hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ts-gold);
}

.ts-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.ts-hero h1 em {
  font-style: italic;
  color: var(--ts-gold-light);
}

.ts-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.ts-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ts-gold-light);
}

.ts-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.ts-hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.3);
}

.ts-hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -32px;
  background: var(--ts-gold);
  color: var(--ts-charcoal);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-gold);
}

.ts-hero-float-card strong { display: block; font-size: 1.6rem; font-family: var(--font-display); }

/* ============================================================
   BUTTONS
   ============================================================ */
.ts-btn, .btn, button.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.ts-btn-primary {
  background: var(--ts-gold);
  color: var(--ts-charcoal);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.ts-btn-primary:hover {
  background: var(--ts-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
  color: var(--ts-charcoal);
}

.ts-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.ts-btn-outline:hover {
  border-color: var(--ts-gold);
  color: var(--ts-gold);
  transform: translateY(-2px);
}

.ts-btn-green {
  background: var(--ts-forest);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.ts-btn-green:hover {
  background: var(--ts-leaf);
  transform: translateY(-2px);
  color: #fff;
}

/* WooCommerce button overrides */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--ts-forest);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 11px 24px;
  border: none;
  transition: all var(--dur-mid) var(--ease);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: var(--ts-gold);
  color: var(--ts-charcoal);
  transform: translateY(-1px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--ts-gold);
  color: var(--ts-charcoal);
}

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */
.ts-section {
  padding: var(--space-3xl) 0;
}

.ts-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.ts-section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.ts-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ts-gold);
  margin-bottom: var(--space-sm);
}

.ts-section-eyebrow::before,
.ts-section-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ts-gold);
}

.ts-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ts-charcoal);
  margin-bottom: var(--space-md);
}

.ts-section-subtitle {
  font-size: 15px;
  color: var(--ts-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   CATEGORY CARDS GRID
   ============================================================ */
.ts-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.ts-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.ts-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.ts-cat-card:hover img { transform: scale(1.07); }

.ts-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,20,0.85) 0%, rgba(10,30,20,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.ts-cat-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.ts-cat-card-count {
  font-size: 12px;
  color: var(--ts-gold-light);
  letter-spacing: 0.08em;
}

.ts-cat-card-arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--dur-fast) var(--ease);
  backdrop-filter: blur(4px);
}

.ts-cat-card:hover .ts-cat-card-arrow {
  background: var(--ts-gold);
  border-color: var(--ts-gold);
}

/* Featured category */
.ts-cat-card.featured { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 640px) { .ts-cat-card.featured { grid-column: span 1; aspect-ratio: 3/4; } }

/* ============================================================
   HEALTH BENEFITS GRID
   ============================================================ */
.ts-health-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (max-width: 1024px) { .ts-health-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .ts-health-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ts-health-grid { grid-template-columns: 1fr; } }

.ts-health-card {
  background: #fff;
  border: 1.5px solid var(--ts-fog);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  text-decoration: none;
  color: var(--ts-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.ts-health-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-pale, var(--ts-gold-pale));
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

.ts-health-card:hover {
  border-color: var(--card-color, var(--ts-gold));
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--ts-text);
}

.ts-health-card:hover::before { opacity: 1; }

.ts-health-icon {
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}

.ts-health-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.ts-health-desc {
  font-size: 12px;
  color: var(--ts-text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRODUCT CARDS (WooCommerce override)
   ============================================================ */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

@media (max-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .woocommerce ul.products { grid-template-columns: 1fr; } }

.woocommerce ul.products li.product {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--ts-fog);
  transition: all var(--dur-mid) var(--ease);
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.woocommerce ul.products li.product:hover a img { transform: scale(1.06); }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ts-charcoal);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  line-height: 1.35;
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ts-forest);
  padding: 0 var(--space-md);
}

.woocommerce ul.products li.product .button {
  margin: var(--space-md) !important;
  display: block !important;
  text-align: center !important;
}

/* Product image wrap */
.woocommerce ul.products li.product .ts-product-img-wrap {
  position: relative;
  overflow: hidden;
}

/* On-sale badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background: var(--ts-gold);
  color: var(--ts-charcoal);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  min-height: auto;
  min-width: auto;
  line-height: 1;
}

/* ============================================================
   GIFT SECTION
   ============================================================ */
.ts-gift-section {
  background: linear-gradient(135deg, var(--ts-bark) 0%, var(--ts-charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.ts-gift-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M20 0L0 20l20 20 20-20L20 0z'/%3E%3C/g%3E%3C/svg%3E");
}

.ts-gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}

.ts-gift-content { color: #fff; }
.ts-gift-content .ts-section-eyebrow { color: var(--ts-gold-light); }
.ts-gift-content .ts-section-title { color: #fff; }
.ts-gift-content p { color: rgba(255,255,255,0.75); }

.ts-gift-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.ts-gift-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-decoration: none;
  color: #fff;
  transition: all var(--dur-mid) var(--ease);
  backdrop-filter: blur(8px);
}

.ts-gift-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--ts-gold);
  transform: translateY(-4px);
  color: #fff;
}

.ts-gift-card-icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.ts-gift-card-title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.ts-gift-card-desc { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ============================================================
   WHY US / TRUST STRIP
   ============================================================ */
.ts-trust-strip {
  background: var(--ts-forest);
  padding: var(--space-xl) 0;
}

.ts-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) { .ts-trust-inner { grid-template-columns: repeat(2, 1fr); } }

.ts-trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: #fff;
}

.ts-trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.ts-trust-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.ts-trust-sub { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ts-testimonials { background: var(--ts-parchment); }

.ts-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) { .ts-testimonial-grid { grid-template-columns: 1fr; } }

.ts-testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1.5px solid var(--ts-fog);
  position: relative;
}

.ts-testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--ts-gold);
  opacity: 0.2;
  position: absolute;
  top: -8px;
  left: var(--space-lg);
  line-height: 1;
}

.ts-stars { color: var(--ts-gold); font-size: 13px; margin-bottom: var(--space-md); }
.ts-testimonial-text { font-size: 14px; line-height: 1.7; color: var(--ts-text-muted); margin-bottom: var(--space-md); }
.ts-testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }
.ts-author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--ts-forest); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.ts-author-name { font-weight: 600; font-size: 13px; color: var(--ts-charcoal); }
.ts-author-loc { font-size: 11px; color: var(--ts-text-muted); }

/* ============================================================
   NEWSLETTER / FOOTER CTA
   ============================================================ */
.ts-newsletter {
  background: var(--ts-gold-pale);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.ts-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.ts-newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.ts-newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 1.5px solid var(--ts-fog);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: #fff;
  color: var(--ts-text);
  transition: border-color var(--dur-fast) var(--ease);
}

.ts-newsletter-form input:focus { border-color: var(--ts-gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ts-charcoal) !important;
  color: rgba(255,255,255,0.75) !important;
  padding-top: var(--space-3xl) !important;
}

.ts-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) { .ts-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ts-footer-inner { grid-template-columns: 1fr; } }

.ts-footer-brand { }
.ts-footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
}
.ts-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: var(--space-lg); }

.ts-footer-fssai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ts-gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.ts-footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}

.ts-footer-col ul { list-style: none; }
.ts-footer-col ul li { margin-bottom: 10px; }
.ts-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease);
}
.ts-footer-col ul li a:hover { color: var(--ts-gold-light); }

.ts-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.ts-payment-icons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.ts-pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  max-width: 1280px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .woocommerce div.product { grid-template-columns: 1fr; }
}

.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ts-charcoal);
}

.woocommerce div.product p.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ts-forest);
}

.ts-brew-note {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 16px;
  background: var(--ts-cream);
  border: 1px solid var(--ts-fog);
  border-left: 3px solid var(--ts-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12.5px;
  color: var(--ts-text-muted);
  margin: var(--space-md) 0;
}

.ts-origin-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ts-forest);
  background: rgba(46,107,73,0.06);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

/* ============================================================
   CART & CHECKOUT
   ============================================================ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1280px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

.woocommerce table.shop_table {
  border: none !important;
}

.woocommerce table.shop_table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ts-text-muted);
  border-bottom: 2px solid var(--ts-fog);
  padding: var(--space-md) var(--space-lg);
  background: none;
}

.woocommerce-checkout #payment {
  border-radius: var(--radius-lg);
  background: var(--ts-cream);
}

/* Razorpay payment option styling */
.woocommerce-checkout #payment ul.payment_methods li label {
  font-weight: 600;
}

/* ============================================================
   MY ACCOUNT PAGE
   ============================================================ */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ts-text);
  transition: all var(--dur-fast) var(--ease);
  font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--ts-gold-pale);
  color: var(--ts-forest);
}

/* ============================================================
   MINI CART DRAWER
   ============================================================ */
.ts-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,15,0.5);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
  backdrop-filter: blur(2px);
}

.ts-cart-overlay.active { opacity: 1; pointer-events: all; }

.ts-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100vw);
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.ts-cart-drawer.active { transform: translateX(0); }

.ts-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--ts-fog);
}

.ts-cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.ts-cart-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ts-fog);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  background: none;
  color: var(--ts-text-muted);
}

.ts-cart-close:hover { background: var(--ts-fog); color: var(--ts-charcoal); }

.ts-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-xl);
}

.ts-cart-drawer-foot {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--ts-fog);
}

.ts-cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.ts-search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}

.ts-search-modal.active { opacity: 1; pointer-events: all; }

.ts-search-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,20,15,0.6);
  backdrop-filter: blur(8px);
}

.ts-search-modal-box {
  position: relative;
  width: min(640px, 90vw);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ts-search-modal-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ts-charcoal);
  border-bottom: 1px solid var(--ts-fog);
}

.ts-search-suggestions {
  padding: var(--space-sm) 0;
  max-height: 340px;
  overflow-y: auto;
}

.ts-search-suggestion-item {
  padding: 10px 24px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ts-text);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: background var(--dur-fast) var(--ease);
}

.ts-search-suggestion-item:hover { background: var(--ts-cream); }

/* ============================================================
   RAZORPAY SPECIFIC
   ============================================================ */
.ts-razorpay-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(46,107,73,0.06);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--ts-forest);
  margin-top: var(--space-sm);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.woocommerce-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl) 0;
  font-size: 12px;
  color: var(--ts-text-muted);
}

.woocommerce-breadcrumb a { color: var(--ts-text-muted); }
.woocommerce-breadcrumb a:hover { color: var(--ts-forest); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .ts-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 var(--space-md);
    height: 60px;
  }

  .ts-header-search { display: none; }

  .ts-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
  }

  .ts-hero-img { display: none; }
  .ts-hero-badges { justify-content: center; }
  .ts-hero-ctas { justify-content: center; }
  .ts-hero-desc { margin: 0 auto var(--space-xl); }

  .ts-section-inner { padding: 0 var(--space-md); }
  .ts-gift-grid { grid-template-columns: 1fr; }
  .ts-trust-inner { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .ts-newsletter-form { flex-direction: column; }

  .ts-footer-inner { gap: var(--space-xl); }
  .ts-footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

  .ts-nav-wrap { display: none; }
  .ts-mobile-nav-toggle { display: flex !important; }
}

/* Mobile nav toggle */
.ts-mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--ts-fog);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ts-text);
}

/* Mobile nav drawer */
.ts-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(300px, 85vw);
  background: var(--ts-charcoal);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
  padding: var(--space-xl) var(--space-lg);
}

.ts-mobile-nav.active { transform: translateX(0); }

.ts-mobile-nav ul { list-style: none; }
.ts-mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ts-mobile-nav ul li a:hover { color: var(--ts-gold-light); }

/* ============================================================
   WOOCOMMERCE NOTICES
   ============================================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius-md) !important;
  font-size: 14px !important;
}

.woocommerce-message { border-top-color: var(--ts-forest) !important; }
.woocommerce-info { border-top-color: var(--ts-gold) !important; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.ts-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.ts-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.ts-reveal:nth-child(2) { transition-delay: 80ms; }
.ts-reveal:nth-child(3) { transition-delay: 160ms; }
.ts-reveal:nth-child(4) { transition-delay: 240ms; }
.ts-reveal:nth-child(5) { transition-delay: 320ms; }
.ts-reveal:nth-child(6) { transition-delay: 400ms; }
.ts-reveal:nth-child(7) { transition-delay: 480ms; }
.ts-reveal:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   UTILITY
   ============================================================ */
.ts-text-center { text-align: center; }
.ts-mt-lg { margin-top: var(--space-lg); }
.ts-mt-xl { margin-top: var(--space-xl); }
.ts-d-flex { display: flex; }
.ts-align-center { align-items: center; }
.ts-gap-md { gap: var(--space-md); }
.ts-justify-center { justify-content: center; }

/* ============================================================
   CRITICAL FIXES — added v2.1
   ============================================================ */

/* Header layout override — works with Storefront's .site-header structure */
.site-header .col-full {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    padding: 0 40px !important;
    height: 72px;
}

.site-branding { flex: 0 0 auto; }

.ts-header-center {
    flex: 1;
    max-width: 380px;
    margin: 0 auto;
}

.ts-header-center .search-form {
    display: flex;
    width: 100%;
}

.ts-header-center .search-form input[type="search"] {
    flex: 1;
    border: 1.5px solid var(--ts-fog);
    border-radius: 999px 0 0 999px;
    padding: 8px 16px;
    font-size: 13px;
    outline: none;
    background: #fff;
}

.ts-header-center .search-form input[type="search"]:focus {
    border-color: var(--ts-gold);
}

.ts-header-center .search-form button {
    background: var(--ts-forest);
    color: #fff;
    border: none;
    border-radius: 0 999px 999px 0;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Hero grid — two columns */
.ts-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.ts-hero-img-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-hero-img-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.3);
}

.ts-hero-float-card {
    position: absolute;
    bottom: -12px;
    left: -24px;
    background: var(--ts-gold);
    color: var(--ts-charcoal);
    padding: 14px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    letter-spacing: 0.04em;
}

.ts-hero-float-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

/* Storefront nav overrides — style the primary nav */
.main-navigation {
    background: var(--ts-forest) !important;
    border-bottom: 2px solid var(--ts-gold) !important;
}

.main-navigation ul li a {
    font-family: var(--font-body) !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 14px 18px !important;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
    color: var(--ts-gold-light) !important;
    background: rgba(201,168,76,0.1) !important;
}

.main-navigation ul ul {
    background: #fff !important;
    border-top: 3px solid var(--ts-gold) !important;
    box-shadow: 0 12px 40px rgba(26,61,43,0.18) !important;
}

.main-navigation ul ul li a {
    color: var(--ts-text) !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0.04em !important;
    padding: 10px 20px !important;
}

/* Storefront site-header background */
.site-header {
    background: var(--ts-cream) !important;
    border-bottom: 1px solid var(--ts-fog) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
}

/* Hide storefront's default search in header (we add our own) */
.storefront-handheld-footer-bar { display: none; }

/* ts-header-icons layout */
.ts-header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.ts-header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ts-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms;
    position: relative;
}

.ts-header-icon:hover { color: var(--ts-forest); }

.ts-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--ts-gold);
    color: var(--ts-charcoal);
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* Mobile nav toggle — hidden on desktop */
.ts-mobile-nav-toggle { display: none !important; }

@media (max-width: 768px) {
    .ts-mobile-nav-toggle { display: flex !important; align-items:center; justify-content:center; width:38px; height:38px; background:none; border:1.5px solid var(--ts-fog); border-radius:6px; cursor:pointer; color:var(--ts-text); }
    .ts-header-center { display: none !important; }
    .site-header .col-full { padding: 0 16px !important; height: 60px; }
    .main-navigation { display: none; }
    .ts-hero-inner { grid-template-columns: 1fr !important; padding: 48px 20px !important; }
    .ts-hero-img-side { display: none !important; }
    .ts-section-inner { padding: 0 20px !important; }
    .ts-cat-grid { grid-template-columns: 1fr 1fr !important; }
    .ts-cat-card.featured { grid-column: span 2; aspect-ratio: 2/1; }
    .ts-health-grid { grid-template-columns: 1fr 1fr !important; }
    .ts-trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ts-gift-grid { grid-template-columns: 1fr !important; }
    .ts-testimonial-grid { grid-template-columns: 1fr !important; }
    .ts-footer-inner { grid-template-columns: 1fr 1fr !important; gap: 32px; }
    .ts-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .ts-newsletter-form { flex-direction: column; }
}

/* Cart drawer z-index fix */
.ts-cart-drawer { z-index: 10000; }
.ts-cart-overlay { z-index: 9999; }
.ts-mobile-nav { z-index: 10001; }

/* Woocommerce product grid fix */
.woocommerce ul.products { width: 100% !important; }
