/*
Theme Name: Cosmetic Booster BV
Theme URI: https://cosmeticboosterbv.com
Author: Cosmetic Booster B.V.
Author URI: https://cosmeticboosterbv.com
Description: Premium wholesale beauty supplier theme for Cosmetic Booster B.V. — Netherlands-based distributor of cosmetics, fragrances, skincare and hair care.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cosmeticbooster
Tags: e-commerce, beauty, wholesale, business
*/

/* ================================================
   COSMETIC BOOSTER B.V. — THEME STYLES
   ================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --rose:      #C8526A;
  --rose-dk:   #a33d56;
  --rose-lt:   #f9e8ec;
  --charcoal:  #1E1E2A;
  --dark2:     #2a1a22;
  --cream:     #FDF8F5;
  --light:     #F0E8E4;
  --mid:       #5A5A6E;
  --white:     #ffffff;
  --gold:      #B89A7C;
  --green:     #25D366;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-label {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 18px;
}
.section-body {
  font-size: 1rem;
  color: var(--mid);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .22s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-rose { background: var(--rose); color: var(--white); border-color: var(--rose); }
.btn-rose:hover { background: var(--rose-dk); border-color: var(--rose-dk); color: var(--white); }
.btn-outline { background: transparent; color: var(--rose); border-color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.btn-lg { padding: 17px 44px; font-size: .95rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- HEADER / NAV ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.site-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.site-logo .logo-accent { color: var(--rose); }
.site-logo .logo-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

#primary-nav ul {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
#primary-nav a {
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}
#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width .22s;
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a { color: var(--white); }
#primary-nav a:hover::after,
#primary-nav .current-menu-item > a::after { width: 100%; }
.nav-cta-btn {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: .82rem !important;
  transition: background .2s !important;
}
.nav-cta-btn:hover { background: var(--rose-dk) !important; }
.nav-cta-btn::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.cb-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: linear-gradient(135deg, var(--charcoal) 55%, var(--dark2) 100%);
  align-items: center;
  padding: 0 5%;
  gap: 60px;
  overflow: hidden;
}
.hero-text { padding: 80px 0; }
.hero-eyebrow {
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--rose);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--rose); display: block; }
.hero-sub {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.78;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  object-fit: cover;
  height: 580px;
}
.stat-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 8px 36px rgba(0,0,0,.15);
  text-align: center;
  min-width: 120px;
}
.stat-badge .sb-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
.stat-badge .sb-lbl {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 5px;
  font-weight: 600;
}
.badge-bottom-left { bottom: 40px; left: -10px; }
.badge-top-right   { top: 40px; right: -10px; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--light);
  padding: 48px 5%;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: 10px;
  padding: 26px 22px;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: box-shadow .2s;
}
.trust-item:hover { box-shadow: 0 6px 28px rgba(0,0,0,.1); }
.trust-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.trust-item h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.trust-item p { font-size: .85rem; color: var(--mid); margin: 0; }

/* ---------- ABOUT SPLIT ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 54px;
  align-items: center;
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.about-split img {
  width: 100%; border-radius: 14px;
  object-fit: cover; height: 520px;
}
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.check-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.check-text h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .95rem; font-weight: 700;
  margin-bottom: 4px;
}
.check-text p { font-size: .87rem; color: var(--mid); margin: 0; }

/* ---------- CATEGORIES ---------- */
.categories-section {
  background: var(--cream);
  padding: 100px 5%;
}
.cat-header { text-align: center; margin-bottom: 52px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cat-card:hover { transform: translateY(-7px); box-shadow: 0 16px 48px rgba(0,0,0,.18); }
.cat-card img {
  width: 100%; height: 350px;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.cat-card:hover img { transform: scale(1.04); }
.cat-card .cat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, transparent 100%);
}
.cat-card .cat-overlay span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.cat-card .cat-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
}

/* ---------- BRANDS MARQUEE ---------- */
.brands-section {
  background: var(--charcoal);
  padding: 72px 5%;
  text-align: center;
  overflow: hidden;
}
.brands-section .section-title { color: var(--white); }
.marquee-wrap {
  overflow: hidden;
  margin-top: 44px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: cb-marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes cb-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px;
  padding: 12px 28px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: background .2s;
}
.brand-pill:hover { background: rgba(200,82,106,.25); border-color: var(--rose); color: white; }

/* ---------- WHY US ---------- */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 5%;
  background: var(--cream);
}
.why-visual img {
  width: 100%; border-radius: 14px;
  object-fit: cover; height: 580px;
}
.icon-list { list-style: none; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8ddd9;
}
.icon-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.il-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  border: 2px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
}
.il-icon svg { width: 22px; height: 22px; }
.il-text h4 { font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.il-text p  { font-size: .88rem; color: var(--mid); margin: 0; }

/* ---------- STATS ROW ---------- */
.stats-row {
  background: var(--rose);
  padding: 60px 5%;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item .si-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-item .si-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark2) 100%);
  padding: 100px 5% 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
  margin: 14px 0 20px;
  line-height: 1.15;
}
.page-hero p {
  color: rgba(255,255,255,.68);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---------- ABOUT PAGE ---------- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.story-split img { width: 100%; border-radius: 14px; object-fit: cover; height: 500px; }
.values-section { background: var(--cream); padding: 100px 5%; }
.values-header { text-align: center; margin-bottom: 56px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border-top: 4px solid var(--rose);
  transition: transform .22s, box-shadow .22s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.1); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.value-card p  { font-size: .9rem; color: var(--mid); margin: 0; line-height: 1.7; }
.company-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 5%;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.company-section img { width: 100%; border-radius: 14px; object-fit: cover; height: 480px; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.info-table tr { border-bottom: 1px solid var(--light); }
.info-table td { padding: 15px 0; font-size: .93rem; vertical-align: top; }
.info-table td:first-child { font-weight: 700; color: var(--charcoal); width: 38%; }
.info-table td:last-child { color: var(--mid); }

/* ---------- CONTACT PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  padding: 100px 5%;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-wrap .sub { color: var(--mid); font-size: .92rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0d8d5;
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); background: var(--white); }
.form-group textarea { height: 140px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--mid); margin-top: 8px; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 8px;
  padding: 16px 20px;
  color: #166534;
  font-size: .92rem;
  margin-top: 18px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}
.info-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.info-card-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white;
}
.info-card-text h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .88rem; font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.info-card-text p,
.info-card-text a { font-size: .93rem; color: var(--mid); line-height: 1.6; }
.info-card-text a:hover { color: var(--rose); }
.wa-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #dcfce7;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 30px;
  text-decoration: none;
  transition: background .22s;
}
.wa-cta:hover { background: #bbf7d0; }
.wa-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-cta h4 { font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 700; color: #166534; margin-bottom: 3px; }
.wa-cta p { font-size: .85rem; color: #166534; opacity: .8; margin: 0; }
.map-wrap { padding: 0 5% 80px; }
.map-wrap iframe { width: 100%; height: 380px; border-radius: 14px; border: none; display: block; }

/* ---------- RETURN POLICY PAGE ---------- */
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: 80px 5%;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.policy-nav {
  position: sticky;
  top: 94px;
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 22px;
}
.policy-nav h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 700;
  margin-bottom: 16px;
}
.policy-nav ul { list-style: none; }
.policy-nav a {
  font-size: .9rem;
  color: var(--mid);
  padding: 8px 10px;
  display: block;
  border-radius: 6px;
  font-weight: 600;
  transition: all .2s;
  margin-bottom: 2px;
}
.policy-nav a:hover { background: var(--rose); color: white; }
.policy-section { margin-bottom: 60px; scroll-margin-top: 100px; }
.policy-section h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid var(--rose);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.policy-section p { color: var(--mid); font-size: .96rem; line-height: 1.82; margin-bottom: 14px; }
.policy-section ul { margin: 14px 0; padding-left: 0; list-style: none; }
.policy-section ul li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px;
  font-size: .94rem;
  color: var(--mid);
  line-height: 1.65;
}
.policy-section ul li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 8px;
}
.policy-section strong { color: var(--charcoal); }
.highlight-box {
  background: #fff7f4;
  border-left: 4px solid var(--rose);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 20px 0;
  font-size: .94rem;
  color: var(--mid);
  line-height: 1.75;
}
.highlight-box strong { color: var(--rose); }
.last-updated {
  display: inline-block;
  font-size: .82rem;
  color: var(--mid);
  background: var(--light);
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 40px;
}

/* ---------- POLICY CTA ---------- */
.policy-cta {
  background: var(--charcoal);
  padding: 70px 5%;
  text-align: center;
}
.policy-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.policy-cta p { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 30px; }

/* ---------- FOOTER ---------- */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.68);
  padding: 70px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand .f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 14px;
}
.footer-brand .f-logo .logo-accent { color: var(--rose); }
.footer-brand p { font-size: .87rem; line-height: 1.72; }
footer h5 {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color .2s;
}
footer ul a:hover { color: var(--rose); }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 12px;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9998;
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- WOOCOMMERCE LIGHT RESET ---------- */
.woocommerce-notices-wrapper { max-width: 1200px; margin: 20px auto; padding: 0 5%; }

/* ---------- WORDPRESS CORE ---------- */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .about-split { grid-template-columns: 1fr; }
  .why-section { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .company-section { grid-template-columns: 1fr; }
  .company-section img { height: 300px; }
  .story-split { grid-template-columns: 1fr; }
  .story-split img { height: 300px; }
}
@media (max-width: 900px) {
  .cb-hero { grid-template-columns: 1fr; min-height: auto; padding: 80px 5% 60px; }
  .hero-visual { display: none; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  #primary-nav { display: none; }
  .nav-toggle { display: flex; }
  #primary-nav.open {
    display: block;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 20px 5%;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  #primary-nav.open ul { flex-direction: column; gap: 0; }
  #primary-nav.open ul li a { padding: 12px 0; display: block; border-bottom: 1px solid rgba(255,255,255,.06); }
  #primary-nav.open ul li:last-child a { border-bottom: none; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}

/* ============================
   PRODUCT SECTIONS
============================= */
.cb-products-section {
  padding: 80px 5%;
  background: var(--white);
}
.cb-products-section:nth-child(even) {
  background: var(--cream);
}
.ps-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ps-header .section-label { margin-bottom: 0; }
.ps-header .section-title { margin: 0; flex: 1; }
.ps-view-all {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.ps-view-all:hover { opacity: .75; }
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ps-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.ps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.ps-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.ps-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.ps-card:hover .ps-card-img-wrap img { transform: scale(1.04); }
.ps-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1;
}
.ps-badge-sale  { background: var(--rose);    color: var(--white); }
.ps-badge-oos   { background: var(--charcoal); color: var(--white); }
.ps-card-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ps-card-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.ps-card-title a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color .2s;
}
.ps-card-title a:hover { color: var(--rose); }
.ps-card-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.ps-card-price del { color: #aaa; font-weight: 400; margin-right: 4px; }
.ps-card-price ins { text-decoration: none; color: var(--rose); }
.ps-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.btn-outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  padding: 7px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
@media (max-width: 1024px) {
  .ps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ps-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ps-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ps-card-actions { flex-direction: column; }
}

/* ============================================================
   SINGLE PRODUCT — WHOLESALE PREMIUM DESIGN
   ============================================================ */

/* Breadcrumb */
.spv-breadcrumb {
  padding: 14px 5%;
  font-size: .82rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  background: var(--cream);
  border-bottom: 1px solid var(--light);
}
.spv-breadcrumb a { color: var(--rose); font-weight: 600; transition: opacity .2s; }
.spv-breadcrumb a:hover { opacity: .75; }
.spv-breadcrumb svg { color: var(--light); flex-shrink: 0; }
.spv-breadcrumb span[aria-current] { color: var(--charcoal); font-weight: 600; }

/* ---- Two-column product layout ---- */
.spv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  background: var(--white);
}

/* Gallery column */
.spv-col-gallery {
  position: relative;
  background: var(--cream);
  min-height: 500px;
}
.spv-gallery-inner {
  position: sticky;
  top: 74px;
  padding: 40px 5% 40px 6%;
}

/* WC gallery overrides — fit our layout */
.spv-col-gallery .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.spv-col-gallery .woocommerce-product-gallery__wrapper { border-radius: 16px; overflow: hidden; }
.spv-col-gallery .woocommerce-product-gallery__wrapper img {
  border-radius: 16px;
  object-fit: contain;
  background: var(--cream);
  max-height: 520px;
  width: 100%;
}
.spv-col-gallery .flex-control-thumbs {
  display: flex !important;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px !important;
  list-style: none;
  padding: 0;
}
.spv-col-gallery .flex-control-thumbs li { margin: 0 !important; }
.spv-col-gallery .flex-control-thumbs img {
  border-radius: 8px !important;
  border: 2px solid transparent !important;
  width: 72px !important;
  height: 72px !important;
  object-fit: cover;
  cursor: pointer;
  transition: border-color .2s !important;
}
.spv-col-gallery .flex-control-thumbs .flex-active,
.spv-col-gallery .flex-control-thumbs img:hover { border-color: var(--rose) !important; opacity: 1 !important; }

/* Sale ribbon */
.spv-sale-ribbon {
  position: absolute;
  top: 52px; left: 0;
  background: var(--rose);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px 6px 14px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  z-index: 2;
}

/* Info column */
.spv-col-info {
  padding: 44px 6% 44px 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--light);
}

/* Category pills */
.spv-cat-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.spv-cat-pill {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-lt);
  padding: 4px 14px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.spv-cat-pill:hover { background: var(--rose); color: var(--white); }

/* Product title */
.spv-product-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.18;
  color: var(--charcoal);
  margin: 0;
}

/* SKU + price row */
.spv-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--light);
  flex-wrap: wrap;
}
.spv-sku {
  font-size: .82rem;
  color: var(--mid);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--light);
}
.spv-price-display {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}
.spv-price-display del { color: #bbb; font-weight: 400; font-size: 1.1rem; margin-right: 4px; }
.spv-price-display ins { text-decoration: none; color: var(--rose); }

/* Short description */
.spv-short-desc {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.8;
  border-left: 3px solid var(--rose-lt);
  padding-left: 16px;
}
.spv-short-desc p:last-child { margin-bottom: 0; }

/* Wholesale CTA box */
.spv-cta-box {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spv-cta-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
}
.spv-cta-box-header svg { color: var(--rose); flex-shrink: 0; }
.spv-cta-box p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}
.spv-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.spv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.spv-btn-primary:hover { background: var(--rose-dk); color: var(--white); }
.spv-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 24px;
  text-decoration: none;
  transition: background .2s;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.spv-btn-whatsapp:hover { background: #1ebe5d; color: var(--white); }
.spv-btn-full { width: 100%; }

/* Trust badges row */
.spv-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spv-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--light);
  border-radius: 8px;
  padding: 10px 12px;
}
.spv-trust-item svg { color: var(--rose); flex-shrink: 0; }

/* Tags */
.spv-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.spv-tags-label { font-weight: 700; color: var(--charcoal); }
.spv-tag {
  background: var(--light);
  color: var(--mid);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .78rem;
  transition: background .2s, color .2s;
}
.spv-tag:hover { background: var(--charcoal); color: var(--white); }

/* ---- WC Tabs override ---- */
.spv-tabs-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5% 60px;
}
.spv-tabs-wrap .woocommerce-tabs { margin: 0; padding: 0; }
.spv-tabs-wrap .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--light);
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
  background: none;
}
.spv-tabs-wrap .woocommerce-tabs ul.tabs::before { display: none; }
.spv-tabs-wrap .woocommerce-tabs ul.tabs li {
  border: none; background: none; border-radius: 0; margin: 0; padding: 0;
}
.spv-tabs-wrap .woocommerce-tabs ul.tabs li::before,
.spv-tabs-wrap .woocommerce-tabs ul.tabs li::after { display: none; }
.spv-tabs-wrap .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 28px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  background: none;
}
.spv-tabs-wrap .woocommerce-tabs ul.tabs li.active a,
.spv-tabs-wrap .woocommerce-tabs ul.tabs li a:hover {
  color: var(--rose); border-bottom-color: var(--rose); background: none;
}
.spv-tabs-wrap .woocommerce-tabs .panel {
  font-size: .97rem; color: var(--mid); line-height: 1.8; max-width: 820px;
  padding: 0; background: none; border: none; box-shadow: none;
}
.spv-tabs-wrap .woocommerce-tabs .panel h2 {
  font-size: 1.2rem; margin-bottom: 12px; color: var(--charcoal);
}

/* ---- Contact for Wholesale section ---- */
.spv-contact-section {
  background: var(--charcoal);
  padding: 80px 5%;
}
.spv-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.spv-contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
}
.spv-contact-text p {
  color: rgba(255,255,255,.65);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.spv-contact-text strong { color: var(--white); }

.spv-contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.spv-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.5;
}
.spv-contact-details svg {
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
}
.spv-contact-details div { display: flex; flex-direction: column; gap: 2px; }
.spv-contact-details strong { color: var(--white); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.spv-contact-details a { color: rgba(255,255,255,.7); transition: color .2s; }
.spv-contact-details a:hover { color: var(--rose); }

/* Quote form box */
.spv-contact-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.spv-contact-form-box h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.spv-form-sub {
  font-size: .88rem;
  color: var(--mid);
  margin-bottom: 24px;
}
.spv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.spv-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.spv-form-group:last-child { margin-bottom: 0; }
.spv-form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.spv-form-group label span { color: var(--rose); }
.spv-form-group input,
.spv-form-group textarea {
  border: 1.5px solid var(--light);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.spv-form-group input:focus,
.spv-form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-lt);
}
.spv-form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: .88rem;
  display: none;
}
.spv-form-msg:not(:empty) { display: block; }
.spv-form-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.spv-form-error   { background: #fff1f2; color: #9f1239; border: 1px solid #fda4af; }

/* ---- Related products ---- */
.spv-related {
  background: var(--cream);
  padding: 70px 5%;
}
.spv-related-header { margin-bottom: 36px; }
.spv-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .spv-layout { grid-template-columns: 1fr; }
  .spv-col-gallery { min-height: auto; }
  .spv-gallery-inner { position: static; padding: 28px 5%; }
  .spv-col-info { border-left: none; border-top: 1px solid var(--light); padding: 32px 5%; }
  .spv-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .spv-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .spv-trust-row { grid-template-columns: 1fr 1fr; }
  .spv-cta-buttons { flex-direction: column; }
  .spv-form-row { grid-template-columns: 1fr; }
  .spv-contact-form-box { padding: 24px 20px; }
  .spv-related-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
