/*
Theme Name: Care to Glow
Theme URI: https://www.caretobeauty.com/ng/
Author: CareToBeauty
Author URI: https://www.caretobeauty.com
Description: A premium beauty e-commerce WordPress theme built for Care to Beauty Nigeria. WooCommerce ready with full product categories, brands, and checkout support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
WC requires at least: 7.0
WC tested up to: 8.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: caretobeauty
Tags: e-commerce, woocommerce, beauty, cosmetics, responsive
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --primary:       #482C2E;
  --primary-light: #6B3F42;
  --accent:        #7EC8A4;
  --accent-dark:   #5BAA88;
  --coral:         #E89B85;
  --coral-dark:    #DD8870;
  --white:         #FFFFFF;
  --off-white:     #FAF9F7;
  --cream:         #FBF3EA;
  --light-gray:    #F4F2EF;
  --mid-gray:      #E0DCDA;
  --text-dark:     #1A1A1A;
  --text-mid:      #555555;
  --text-light:    #888888;
  --red:           #C0392B;
  --sale-red:      #E74C3C;

  --font-heading:  'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:     'Jost', 'Helvetica Neue', sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-full:   9999px;

  --shadow-sm:     0 1px 4px rgba(72,44,46,0.08);
  --shadow-md:     0 4px 16px rgba(72,44,46,0.12);
  --shadow-lg:     0 8px 32px rgba(72,44,46,0.16);

  --transition:    0.25s ease;
  --container:     1280px;
}

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

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

/* Prevent any horizontal overflow on all screen sizes */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nothing may exceed its container's width */
*, *::before, *::after { min-width: 0; }
img, svg, video, iframe, table { max-width: 100%; }
img { height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

a:hover { color: var(--primary); }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

input, select, textarea { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  overflow: hidden;
  position: relative;
}

.announcement-bar__track {
  display: flex;
  align-items: center;
  height: 40px;
  position: relative;
}

.announcement-bar__slides {
  display: flex;
  width: 100%;
}

.announcement-bar__slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 60px;
  text-align: center;
}

.announcement-bar__slide.active { display: flex; }

.announcement-bar__slide a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-bar__slide a:hover { opacity: 0.85; }

.announcement-bar__arrow {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.announcement-bar__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 12px;
  transition: color var(--transition);
  z-index: 2;
}

.announcement-bar__nav:hover { color: var(--white); }
.announcement-bar__nav--prev { left: 8px; }
.announcement-bar__nav--next { right: 8px; }

/* ===========================
   HEADER
=========================== */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

/* Row 1: logo + search + actions */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 84px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #F3E9E2;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.site-logo__text em { font-style: italic; font-weight: 600; color: var(--accent); }

.site-logo__sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,233,226,0.6);
  display: block;
  margin-top: 2px;
}

/* Row 2: primary navigation, centered below search */
.main-nav {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(243,233,226,0.12);
}

.main-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #F3E9E2;
  transition: color var(--transition);
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__item:hover > .main-nav__link {
  color: var(--accent);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: max-content;
  max-width: min(640px, calc(100vw - 48px));
  padding: 28px;
  display: none;
  z-index: 500;
}

.main-nav__item:hover .mega-dropdown { display: block; animation: fadeInDown 0.2s ease; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-dropdown__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--mid-gray);
}

.mega-dropdown__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.mega-dropdown__shop-all {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.mega-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-dropdown__section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.mega-dropdown__links { display: flex; flex-direction: column; gap: 6px; }

.mega-dropdown__links a {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 3px 0;
  transition: color var(--transition);
}

.mega-dropdown__links a:hover { color: var(--primary); padding-left: 4px; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #F3E9E2;
  transition: all var(--transition);
  position: relative;
}

.header-action-btn:hover {
  background: rgba(243,233,226,0.12);
  color: #fff;
}

.header-action-btn svg { width: 23px; height: 23px; }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.currency-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(243,233,226,0.25);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: #F3E9E2;
  line-height: 1.15;
  cursor: pointer;
  transition: all var(--transition);
}

.currency-switcher img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.currency-switcher:hover { border-color: rgba(243,233,226,0.6); }

/* Search bar — centered pill with coral button */
.header-search {
  position: relative;
  flex: 1;
  max-width: 680px;
  display: flex;
  align-items: center;
}

.header-search input {
  width: 100%;
  padding: 13px 56px 13px 22px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.97);
  color: var(--text-dark);
}

.header-search input::placeholder { color: #9b8e88; }

.header-search__btn {
  position: absolute;
  right: 5px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.header-search__btn:hover { background: var(--coral-dark); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #F3E9E2;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   MOBILE NAV
=========================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 320px; height: 100%;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

.mobile-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
}

.mobile-nav__overlay.open { display: block; }

.mobile-nav__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.mobile-nav__list { display: flex; flex-direction: column; }

.mobile-nav__item { border-bottom: 1px solid var(--mid-gray); }

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-nav__sub {
  display: none;
  padding: 0 0 12px 16px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__sub.open { display: flex; }

.mobile-nav__sub a {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
}

/* ===========================
   HERO SLIDER (admin-managed)
=========================== */
.hero-slider { padding: 28px 0 14px; background: var(--cream); }
.hero-slider__track { position: relative; }

.hero-slide {
  display: none;
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-slide.is-active { display: block; animation: ctbFade 0.5s ease; }
@keyframes ctbFade { from { opacity: 0; } to { opacity: 1; } }

.hero-slide__blob {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 300px;
  height: 210px;
  background: #CFF27E;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 4px;
}
.hero-slide__heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.hero-slide__sub {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-slide__badge {
  margin-top: 12px;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}
.hero-slide__btn {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.hero-slide__btn:hover { background: #5e3a3c; color: #fff; }

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 4px;
}
.hero-slider__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #d8c9bf;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.hero-slider__dot.is-active { background: var(--primary); }

@media (max-width: 768px) {
  .hero-slide { min-height: 320px; }
  .hero-slide__blob { width: 210px; height: 165px; right: 4%; padding: 14px; }
  .hero-slide__heading { font-size: 21px; }
  .hero-slide__sub { font-size: 15px; }
  .hero-slide__badge { font-size: 11px; padding: 6px 12px; margin-top: 8px; }
}
@media (max-width: 480px) {
  .hero-slide { min-height: 240px; }
  .hero-slide__blob { width: 150px; height: 130px; right: 5%; padding: 10px; }
  .hero-slide__heading { font-size: 15px; }
  .hero-slide__sub { font-size: 12px; }
  .hero-slide__badge { font-size: 9px; padding: 4px 9px; margin-top: 6px; }
  .hero-slide__btn { bottom: 12px; padding: 9px 20px; font-size: 12px; }
}

/* ===========================
   HERO / BANNER
=========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #2d1a1c 60%, #1a0f10 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(126,200,164,0.15) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(126,200,164,0.2);
  border: 1px solid rgba(126,200,164,0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__title span { color: var(--accent); font-style: italic; }

.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  object-fit: cover;
  opacity: 0.3;
}

/* ===========================
   CATEGORY PILLS / QUICK NAV
=========================== */
.quick-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--mid-gray);
  padding: 0;
  overflow-x: auto;
}

.quick-nav::-webkit-scrollbar { height: 0; }

.quick-nav__list {
  display: flex;
  gap: 4px;
  padding: 12px 24px;
  white-space: nowrap;
}

.quick-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

.quick-nav__link:hover,
.quick-nav__link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===========================
   CATEGORY TILES (circular)
=========================== */
.cat-tiles {
  background: var(--cream);
  padding: 8px 0 32px;
}

.cat-tiles__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cat-tiles__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 112px;
  text-align: center;
}

.cat-tiles__thumb {
  display: block;
  width: 96px;
  height: 112px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #efe4d7;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cat-tiles__link:hover .cat-tiles__thumb {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.cat-tiles__label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cat-tiles__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 18px;
    padding: 0 16px 8px;
  }
  .cat-tiles__list::-webkit-scrollbar { height: 0; }
  .cat-tiles__link { width: 84px; }
  .cat-tiles__thumb { width: 74px; height: 86px; }
  .cat-tiles__label { font-size: 14px; }
}

/* ===========================
   SECTION TITLES
=========================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary);
}

.section-title span {
  font-style: italic;
  color: var(--accent-dark);
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.section-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 24px;
}

/* ===========================
   PRODUCT CARDS
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--light-gray);
  overflow: hidden;
}

.product-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image-wrap img { transform: scale(1.05); }

.product-card__badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-sale { background: var(--sale-red); color: var(--white); }
.badge-new  { background: var(--accent); color: var(--white); }
.badge-hot  { background: var(--primary); color: var(--white); }

.product-card__wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 1;
  opacity: 0;
}

.product-card:hover .product-card__wishlist { opacity: 1; }

.product-card__wishlist:hover { background: var(--primary); color: var(--white); }

.product-card__body {
  padding: 14px;
}

.product-card__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.price-old {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-save {
  font-size: 11px;
  font-weight: 600;
  color: var(--sale-red);
}

.product-card__add {
  width: 100%;
  padding: 9px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  transition: all var(--transition);
  display: block;
}

.product-card__add:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: none;
}

/* ===========================
   BRANDS STRIP
=========================== */
.brand-carousel { padding: 50px 0; background: #E7D6B8; }

.brand-carousel__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.brand-carousel__head .section-title { color: var(--primary); }
.brand-carousel__head .section-subtitle { margin: 4px 0 16px; color: var(--text-mid); }

.btn-outline-dark {
  display: inline-block;
  padding: 11px 26px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }

.brand-carousel__arrows { display: flex; gap: 10px; flex-shrink: 0; padding-top: 6px; }
.brand-carousel__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.brand-carousel__arrow:hover { background: var(--primary); color: #fff; }

.brand-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}
.brand-carousel__track::-webkit-scrollbar { height: 0; }

.brand-logo-card {
  flex: 0 0 auto;
  width: 160px;
  height: 165px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.brand-logo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brand-logo-card img { max-width: 100%; max-height: 72px; width: auto; object-fit: contain; }
.brand-logo-card--text span { font-family: var(--font-heading); font-size: 18px; color: var(--primary); text-align: center; }

.brand-carousel__hint { margin-top: 14px; font-size: 13px; color: var(--text-mid); }

@media (max-width: 768px) {
  .brand-carousel__head { flex-direction: column; }
  .brand-logo-card { width: 140px; height: 145px; padding: 18px; }
}

/* ===========================
   REVIEWS / TESTIMONIALS
=========================== */
.reviews-section { padding: 56px 0; background: var(--cream); }

.reviews-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.reviews-section__head .section-title { color: var(--primary); margin-bottom: 14px; }
.reviews-section__arrows { display: flex; gap: 10px; flex-shrink: 0; padding-top: 6px; }
.reviews-section__arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.reviews-section__arrow:hover { background: var(--primary); color: #fff; }

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}
.reviews-track::-webkit-scrollbar { height: 0; }

.review-card {
  flex: 0 0 auto;
  width: 300px;
  min-height: 260px;
  background: #E6F2C9;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-card__stars { color: #2f6b2f; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card__text { font-size: 14px; color: var(--text-dark); line-height: 1.6; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #cfe3a8;
  color: #3a5a2a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card__meta { display: flex; flex-direction: column; line-height: 1.35; }
.review-card__meta strong { font-size: 14px; color: var(--primary); }
.review-card__meta span { font-size: 12px; color: var(--text-mid); }

@media (max-width: 640px) {
  .reviews-section__head { flex-direction: column; }
  .review-card { width: 260px; }
}

/* Brands A-Z directory page */
.brands-az { max-width: 100%; }

.brands-az__index {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--mid-gray);
  position: sticky;
  top: 84px;
  background: var(--white);
  z-index: 10;
}

.brands-az__index a,
.brands-az__index span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

.brands-az__index a {
  color: var(--primary);
  background: var(--light-gray);
  transition: all var(--transition);
}

.brands-az__index a:hover { background: var(--primary); color: #fff; }
.brands-az__index .is-empty { color: var(--mid-gray); cursor: default; }

.brands-az__group { margin-bottom: 36px; scroll-margin-top: 140px; }

.brands-az__letter {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--primary);
}

.brands-az__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 24px;
  list-style: none;
}

.brands-az__list a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px solid transparent;
  transition: color var(--transition);
}

.brands-az__list a:hover { color: var(--primary); border-bottom-color: var(--accent); }

@media (max-width: 640px) {
  .brands-az__index { top: 64px; }
  .brands-az__index a, .brands-az__index span { width: 32px; height: 32px; font-size: 14px; }
  .brands-az__letter { font-size: 24px; }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: all var(--transition);
  min-height: 90px;
}

.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.brand-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ===========================
   PROMO BANNERS
=========================== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 32px;
  background: var(--primary);
}

.promo-banner--accent { background: linear-gradient(135deg, #2d5a4a 0%, var(--accent-dark) 100%); }
.promo-banner--light  { background: linear-gradient(135deg, var(--light-gray) 0%, var(--mid-gray) 100%); }

.promo-banner__discount {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  position: absolute;
  right: 20px; top: 10px;
  line-height: 1;
}

.promo-banner__content { position: relative; z-index: 1; }

.promo-banner__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.promo-banner--light .promo-banner__eyebrow { color: var(--accent-dark); }

.promo-banner__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.promo-banner--light .promo-banner__title { color: var(--primary); }

/* ===========================
   HOMEPAGE SECTIONS
=========================== */
.home-section { padding: 64px 0; }
.home-section--gray { background: var(--off-white); }

/* ===========================
   WOOCOMMERCE BASE OVERRIDES
=========================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Critical: override WooCommerce's default float + 22% width that collapses cards */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: var(--font-body);
  padding: 12px 14px 4px;
}

.woocommerce ul.products li.product .price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-body);
  padding: 0 14px 8px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button {
  display: block;
  margin: 0 14px 14px;
  width: calc(100% - 28px);
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--primary-light);
  color: var(--white);
}

.woocommerce-page .woocommerce-products-header__title,
.woocommerce-page h1.page-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(26px, 3.5vw, 34px);
  margin-bottom: 24px;
}

/* Single product */
.woocommerce div.product div.images { margin-bottom: 0; }

.woocommerce div.product div.summary {
  padding-left: 40px;
}

.woocommerce div.product .product_title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-body);
}

.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  transition: background var(--transition);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* Cart & Checkout */
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout {
  font-family: var(--font-body);
}

.woocommerce form .form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--primary);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--cream);
  color: var(--text-dark);
  margin-top: 40px;
  border-radius: 28px 28px 0 0;
}

/* Top: why-shop + big links */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding: 48px 0 32px;
}
.footer-why__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.footer-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}
.footer-why__item { display: flex; gap: 14px; align-items: flex-start; }
.footer-why__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #DCEBC6;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.footer-why__item strong { display: block; font-size: 14px; color: var(--primary); margin-bottom: 3px; }
.footer-why__item p { font-size: 12.5px; line-height: 1.55; color: var(--text-mid); margin: 0; }
.footer-why__item a { color: var(--primary); text-decoration: underline; font-weight: 600; }

.footer-biglinks { display: flex; flex-direction: column; }
.footer-biglink {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  padding: 15px 0;
  border-bottom: 1px solid rgba(72,44,46,0.18);
}
.footer-biglink:first-child { border-top: 1px solid rgba(72,44,46,0.18); }
.footer-biglink:hover { color: var(--accent-dark); }

/* Link columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1.4fr;
  gap: 32px;
  padding: 16px 0 32px;
}
.footer-col__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 9px; list-style: none; margin: 0; padding: 0; }
.footer-col__links a { font-size: 13.5px; color: var(--text-mid); }
.footer-col__links a:hover { color: var(--primary); }

.footer-currency { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-mid); }
.footer-currency img { border-radius: 50%; object-fit: cover; }
.footer-currency strong { color: var(--primary); }

.footer-pay { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-chip {
  background: #fff;
  border: 1px solid var(--mid-gray);
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 5px;
  letter-spacing: 0.03em;
}

/* Social */
.footer-social { display: flex; gap: 12px; padding: 4px 0 36px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: #5e3a3c; color: #fff; }

/* Trust band */
.footer-band {
  background: #FDF6EE;
  border-top: 1px solid rgba(72,44,46,0.08);
  padding: 22px 0;
  text-align: center;
}
.footer-band__text { font-family: var(--font-heading); font-size: 18px; color: var(--primary); }

/* Bottom */
.footer-bottom {
  background: var(--cream);
  border-top: 1px solid rgba(72,44,46,0.08);
  padding: 18px 0;
}
.footer-bottom__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom__copy { font-size: 12.5px; color: var(--text-mid); }
.footer-bottom__tag { font-size: 12.5px; color: var(--text-light); }

/* ===========================
   SHOP PAGE LAYOUT
=========================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.sidebar-widget__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mid-gray);
}

.sidebar-filter-list { display: flex; flex-direction: column; gap: 6px; }

.sidebar-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  cursor: pointer;
  padding: 4px 0;
}

.sidebar-filter-item input[type="checkbox"] { accent-color: var(--primary); }

.sidebar-filter-item span { margin-left: auto; color: var(--text-light); font-size: 12px; }

/* ===========================
   SHOP TOOLBAR
=========================== */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mid-gray);
  flex-wrap: wrap;
  gap: 12px;
}

.shop-toolbar__count { font-size: 14px; color: var(--text-light); }

.shop-toolbar__sort select {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

/* ===========================
   BREADCRUMBS
=========================== */
.breadcrumbs {
  padding: 14px 0;
  font-size: 12.5px;
  color: var(--text-light);
  border-bottom: 1px solid var(--mid-gray);
  margin-bottom: 0;
}

.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 6px; }
.breadcrumbs .current { color: var(--text-dark); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .header-search { max-width: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .promo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .home-section { padding: 44px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-link { margin-left: 0; }
  .currency-switcher span { display: none; }
  .currency-switcher { padding: 5px; }
}

@media (max-width: 640px) {
  .header-top { height: 64px; gap: 12px; }
  .site-logo__sub { display: none; }
  .header-search { order: 3; flex-basis: 100%; max-width: none; padding-bottom: 12px; }
  .footer-why__grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero { min-height: 380px; }
  .hero__title { font-size: 30px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .woocommerce ul.products,
  .woocommerce-page ul.products { gap: 10px !important; }
  .site-logo__text { font-size: 18px; }
  .header-actions { gap: 2px; }
  .header-action-btn { width: 38px; height: 38px; }
}

/* ===========================
   FIX: Promo banner bg text
   (was .promo-discount — corrected to .promo-banner__bg-text)
=========================== */
.promo-banner__bg-text {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  position: absolute;
  right: 20px;
  top: 10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding: 40px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-bar__icon { font-size: 28px; display: block; margin-bottom: 8px; }

.trust-bar__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-bar__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

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

@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
}

/* ===========================
   PAGE / SINGLE POST
=========================== */
.page-main { padding: 40px 0 64px; }

.page-layout { max-width: 860px; }

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mid-gray);
}

.entry-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}

.entry-content h2, .entry-content h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 32px 0 12px;
}

.entry-content p  { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 0 0 16px 24px; }
.entry-content li { margin-bottom: 6px; }
.entry-content a  { color: var(--primary); border-bottom: 1px solid currentColor; }

.entry-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.entry-thumbnail {
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.entry-thumbnail img { width: 100%; }

/* ===========================
   BLOG GRID (archive.php)
=========================== */
.archive-header { margin-bottom: 32px; }
.archive-desc   { font-size: 15px; color: var(--text-light); margin-top: 8px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.blog-card:hover { box-shadow: var(--shadow-md); }

.blog-card__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.blog-card__body { padding: 20px; }

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-card__title a { color: var(--primary); }
.blog-card__title a:hover { color: var(--primary-light); }

.blog-card__excerpt {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.pagination { text-align: center; margin-top: 40px; }

/* ===========================
   SIDEBAR ACTIVE STATE
=========================== */
.sidebar-filter-item.is-active a {
  color: var(--primary);
  font-weight: 600;
}

/* ===========================
   EMPTY STATE
=========================== */
.ctb-empty {
  text-align: center;
  color: var(--text-light);
  padding: 60px 24px;
  font-size: 14px;
  border: 2px dashed var(--mid-gray);
  border-radius: var(--radius-md);
}

/* ===========================
   WooCommerce price formatting
   (override inline with proper classes)
=========================== */
.product-card__price ins { text-decoration: none; }
.product-card__price del { color: var(--text-light); font-size: 12px; }
.product-card__price .woocommerce-Price-amount { font-weight: 700; }
