/* =============================================
   Phyto Commerce — Main Stylesheet v1.0.0
   GPL v2 — Phyto Evolution Pvt Ltd
   ============================================= */

/* --- Variables (overridden by child themes) --- */
:root {
  --pc-primary:       #2d6a4f;
  --pc-primary-dark:  #1b4332;
  --pc-primary-light: #95d5b2;
  --pc-primary-pale:  #f0f7f4;
  --pc-text:          #1a1a1a;
  --pc-text-light:    #6b7280;
  --pc-bg:            #ffffff;
  --pc-bg-alt:        #f8faf9;
  --pc-border:        #e5e7eb;
  --pc-font-head:     'Cormorant Garamond', Georgia, serif;
  --pc-font-body:     'Nunito', system-ui, sans-serif;
  --pc-max-width:     1200px;
  --pc-radius:        8px;
  --pc-shadow:        0 2px 8px rgba(0,0,0,.07);
  --pc-shadow-lg:     0 8px 28px rgba(0,0,0,.11);
  --pc-transition:    .2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font: inherit; }

/* --- Base --- */
body {
  font-family: var(--pc-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--pc-text);
  background: var(--pc-bg);
}

a { color: var(--pc-primary); text-decoration: none; transition: color var(--pc-transition); }
a:hover { color: var(--pc-primary-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--pc-font-head);
  line-height: 1.2;
  color: var(--pc-text);
  font-weight: 600;
}
h1 { font-size: clamp(2rem,   5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem);  }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }

/* --- Layout helpers --- */
.pc-container {
  max-width: var(--pc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-section { padding: 72px 0; }
.pc-section-alt { background: var(--pc-bg-alt); }

/* --- Buttons --- */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--pc-radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--pc-font-body);
  cursor: pointer;
  transition: all var(--pc-transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.pc-btn-primary {
  background: var(--pc-primary);
  color: #fff;
  border-color: var(--pc-primary);
}
.pc-btn-primary:hover {
  background: var(--pc-primary-dark);
  border-color: var(--pc-primary-dark);
  color: #fff;
}
.pc-btn-outline {
  background: transparent;
  color: var(--pc-primary);
  border-color: var(--pc-primary);
}
.pc-btn-outline:hover {
  background: var(--pc-primary);
  color: #fff;
}

/* =============================================
   HEADER
   ============================================= */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--pc-border);
  transition: box-shadow var(--pc-transition);
}
.pc-header.scrolled { box-shadow: var(--pc-shadow); }

.pc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.pc-logo a,
.pc-logo .custom-logo-link {
  display: flex;
  align-items: center;
  font-family: var(--pc-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pc-text);
  letter-spacing: -.01em;
}
.pc-logo img,
.pc-logo .custom-logo { height: 48px; width: auto; }

/* Primary Nav */
.pc-nav { flex: 1; display: flex; justify-content: center; }
.pc-nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.pc-nav-list > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--pc-text);
  border-radius: 6px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pc-nav-list > li > a:hover,
.pc-nav-list > li.current-menu-item > a {
  color: var(--pc-primary);
  background: var(--pc-primary-pale);
}

/* Header actions */
.pc-header-actions { display: flex; align-items: center; gap: 12px; }

.pc-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--pc-text);
  padding: 4px;
}
.pc-cart-link:hover { color: var(--pc-primary); }
.pc-cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--pc-primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pc-font-body);
}

/* Hamburger */
.pc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px; height: 36px;
}
.pc-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pc-text);
  border-radius: 2px;
  transition: all .25s;
}
.pc-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-hamburger.active span:nth-child(2) { opacity: 0; }
.pc-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.pc-mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--pc-border);
  padding: 16px 24px 24px;
  transform: translateY(-110%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 199;
  box-shadow: var(--pc-shadow-lg);
}
.pc-mobile-nav.open { transform: translateY(0); }
.pc-mobile-nav-list { list-style: none; padding: 0; }
.pc-mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pc-text);
  border-bottom: 1px solid var(--pc-border);
}
.pc-mobile-nav-list li:last-child a { border-bottom: none; }

.pc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 198;
}
.pc-overlay.show { display: block; }

/* =============================================
   MAIN
   ============================================= */
.pc-main { min-height: 60vh; }
.pc-content-wrap { padding: 56px 0; }
.pc-page-wrap { padding: 56px 0; max-width: 800px; }
.pc-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pc-primary-pale);
}

.pc-entry-content h2,
.pc-entry-content h3 { margin: 2rem 0 1rem; }
.pc-entry-content ul,
.pc-entry-content ol { margin-bottom: 1.25rem; }
.pc-entry-content img { border-radius: var(--pc-radius); margin: 1.5rem 0; }
.pc-entry-content blockquote {
  border-left: 4px solid var(--pc-primary);
  padding: 12px 24px;
  margin: 1.5rem 0;
  background: var(--pc-primary-pale);
  border-radius: 0 var(--pc-radius) var(--pc-radius) 0;
  font-style: italic;
  color: var(--pc-text-light);
}

/* =============================================
   BLOG — Index / Archive
   ============================================= */
.pc-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }

.pc-post-card {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  overflow: hidden;
  transition: box-shadow var(--pc-transition), transform var(--pc-transition);
}
.pc-post-card:hover {
  box-shadow: var(--pc-shadow-lg);
  transform: translateY(-3px);
}
.pc-post-thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.pc-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pc-post-card:hover .pc-post-thumb img { transform: scale(1.04); }

.pc-post-body { padding: 24px; }
.pc-post-meta { display: flex; gap: 12px; font-size: .8rem; color: var(--pc-text-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.pc-post-cat a { color: var(--pc-primary); font-weight: 700; }
.pc-post-title { margin-bottom: 10px; }
.pc-post-title a { color: var(--pc-text); }
.pc-post-title a:hover { color: var(--pc-primary); }
.pc-post-excerpt { color: var(--pc-text-light); font-size: .95rem; margin-bottom: 16px; }

/* Pagination */
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  font-weight: 600; font-size: .9rem;
  color: var(--pc-text);
  transition: all var(--pc-transition);
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--pc-primary); color: #fff; border-color: var(--pc-primary);
}

/* =============================================
   SINGLE POST
   ============================================= */
.pc-single-wrap { padding: 56px 0; max-width: 780px; }
.pc-single-header { margin-bottom: 40px; }
.pc-single-title { font-size: clamp(1.8rem, 4vw, 3rem); margin: 16px 0 24px; }
.pc-single-thumb { border-radius: var(--pc-radius); overflow: hidden; margin-bottom: 40px; }
.pc-single-thumb img { width: 100%; }
.pc-single-content { font-size: 1.05rem; }
.pc-single-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--pc-border); }
.pc-post-nav { display: flex; justify-content: space-between; margin-top: 16px; }
.pc-post-nav a { color: var(--pc-primary); font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.pc-footer { background: var(--pc-text); color: rgba(255,255,255,.75); margin-top: 72px; }


.pc-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding: 56px 24px;
}
.pc-footer-brand .pc-footer-logo {
  font-family: var(--pc-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.pc-footer-brand .custom-logo-link img { filter: brightness(0) invert(1); height: 40px; width: auto; margin-bottom: 12px; }
.pc-footer-tagline { font-size: .9rem; line-height: 1.6; }

.pc-footer .widget-title { color: #fff; font-family: var(--pc-font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.pc-footer ul { list-style: none; padding: 0; }
.pc-footer ul li { margin-bottom: 8px; }
.pc-footer ul li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--pc-transition); }
.pc-footer ul li a:hover { color: var(--pc-primary-light); }

/* Brand contact strip */
.pc-footer-brand-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.pc-footer-phone,
.pc-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--pc-transition);
}
.pc-footer-phone {
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}
.pc-footer-phone:hover { background: rgba(255,255,255,.08); color: #fff; }
.pc-footer-wa {
  background: #25d366;
  color: #fff;
}
.pc-footer-wa:hover { background: #1da851; color: #fff; }

/* Contact list column */
.pc-footer-contact-list { list-style: none; padding: 0; }
.pc-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.pc-footer-contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.pc-footer-contact-list a { color: rgba(255,255,255,.65); }
.pc-footer-contact-list a:hover { color: var(--pc-primary-light); }
.pc-footer-cod-note {
  font-size: .75rem !important;
  color: rgba(255,255,255,.35) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Footer bar */
.pc-footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.pc-footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pc-footer-bar a { color: rgba(255,255,255,.5); }
.pc-footer-bar a:hover { color: var(--pc-primary-light); }
.pc-footer-payment {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pc-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .pc-nav { display: none; }
  .pc-hamburger { display: flex; }
  .pc-footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
  .pc-posts { grid-template-columns: 1fr; }
  .pc-section { padding: 48px 0; }
  .pc-container { padding: 0 16px; }
  .pc-header-inner { height: 60px; }
  .pc-mobile-nav { top: 60px; }
  .pc-single-wrap,
  .pc-page-wrap { padding: 32px 0; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .pc-footer-bar { font-size: .75rem; padding: 14px 16px; }
  .pc-btn { padding: 10px 20px; font-size: .88rem; }
}

/* =============================================
   HOME PAGE SECTIONS
   ============================================= */

.pc-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--pc-primary);
  margin-bottom: 12px;
}
.pc-section-title {
  text-align: center;
  margin-bottom: 12px;
}
.pc-section-sub {
  text-align: center;
  color: var(--pc-text-light);
  margin-bottom: 48px;
  font-size: .98rem;
}

/* Hero */
.pc-hero {
  background: linear-gradient(140deg, var(--pc-primary-dark) 0%, var(--pc-primary) 100%);
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.pc-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--pc-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.pc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 100px 0 128px;
}
.pc-hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pc-primary-light);
  margin-bottom: 16px;
}
.pc-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.pc-hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.pc-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.pc-btn-white {
  background: #fff;
  color: var(--pc-primary);
  border-color: #fff;
}
.pc-btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.pc-btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.pc-btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* Hero art card */
.pc-hero-art { display: flex; justify-content: center; align-items: center; }
.pc-hero-card {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  backdrop-filter: blur(6px);
}
.pc-hero-stat {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
}
.pc-hero-stat strong {
  display: block;
  font-family: var(--pc-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pc-hero-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Trust strip */
.pc-trust-strip {
  padding: 52px 0;
  border-bottom: 1px solid var(--pc-border);
}
.pc-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pc-trust-item { display: flex; align-items: flex-start; gap: 14px; }
.pc-trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--pc-primary-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-primary);
}
.pc-trust-item strong { display: block; font-size: .92rem; font-weight: 700; margin-bottom: 2px; }
.pc-trust-item small { font-size: .8rem; color: var(--pc-text-light); line-height: 1.4; }

/* Featured products section */
.pc-home-products { padding: 72px 0; }

/* Story section */
.pc-home-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pc-story-text .pc-eyebrow { margin-bottom: 10px; }
.pc-story-text h2 { margin-bottom: 16px; }
.pc-story-text p { color: var(--pc-text-light); margin-bottom: 16px; }

.pc-story-visual {
  background: var(--pc-primary-pale);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pc-story-stat {
  background: #fff;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--pc-shadow);
}
.pc-story-stat strong {
  display: block;
  font-family: var(--pc-font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pc-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.pc-story-stat span { font-size: .78rem; color: var(--pc-text-light); }

/* CTA band */
.pc-cta-band {
  background: var(--pc-primary-pale);
  padding: 72px 0;
  text-align: center;
}
.pc-cta-band h2 { margin-bottom: 16px; }
.pc-cta-band p {
  color: var(--pc-text-light);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.pc-contact-wrap { padding: 56px 0; }
.pc-contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.pc-contact-card {
  background: var(--pc-bg-alt);
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  padding: 36px;
}
.pc-contact-card h3 { margin-bottom: 28px; }
.pc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pc-border);
}
.pc-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.pc-contact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--pc-primary-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-primary);
}
.pc-contact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pc-text-light);
  margin-bottom: 4px;
}
.pc-contact-val { font-size: .95rem; color: var(--pc-text); font-weight: 500; line-height: 1.5; }
.pc-contact-val a { color: var(--pc-text); }
.pc-contact-val a:hover { color: var(--pc-primary); }

.pc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: #25d366;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  transition: background var(--pc-transition);
}
.pc-wa-btn:hover { background: #1da851; color: #fff; }

.pc-contact-form-wrap h3 { margin-bottom: 28px; }

/* CF7 styling */
.wpcf7-form p { margin-bottom: 18px; }
.wpcf7-form label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pc-text-light);
  margin-bottom: 6px;
}
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-radius);
  font-family: var(--pc-font-body);
  font-size: .95rem;
  background: #fff;
  transition: border-color var(--pc-transition), box-shadow var(--pc-transition);
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-textarea:focus {
  border-color: var(--pc-primary);
  box-shadow: 0 0 0 3px rgba(var(--pc-primary-rgb, 45,106,79),.1);
  outline: none;
}
.wpcf7-form .wpcf7-textarea { min-height: 130px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--pc-primary);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: var(--pc-radius);
  font-family: var(--pc-font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--pc-transition);
}
.wpcf7-form input[type="submit"]:hover { background: var(--pc-primary-dark); }
.wpcf7-not-valid-tip { color: #e53e3e; font-size: .8rem; margin-top: 4px; }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: var(--pc-radius); font-size: .9rem; }

/* =============================================
   HOME + CONTACT RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .pc-hero-inner { grid-template-columns: 1fr; }
  .pc-hero-art { display: none; }
  .pc-hero-inner { padding: 72px 0 96px; }
  .pc-trust-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pc-home-story { grid-template-columns: 1fr; gap: 40px; }
  .pc-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pc-trust-inner { grid-template-columns: 1fr; }
  .pc-story-visual { grid-template-columns: 1fr 1fr; }
  .pc-hero-inner { padding: 56px 0 80px; }
}

/* =============================================
   PROMO BAR
   ============================================= */
.pc-promo-bar {
  background: var(--pc-promo-bg, var(--pc-primary-dark));
  color: rgba(255,255,255,.93);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  padding: 9px 24px;
  position: relative;
  z-index: 99;
}
.pc-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: var(--pc-max-width);
  margin: 0 auto;
}
.pc-promo-sep { opacity: .4; }

/* =============================================
   DARK HERO VARIANT (carnivorous)
   ============================================= */
.pc-hero-dark {
  background: linear-gradient(140deg, #050f0b 0%, #0c1f17 45%, #1b4332 100%);
}
.pc-hero-dark::before {
  background: radial-gradient(ellipse 70% 60% at 75% 45%, rgba(45,106,79,.3) 0%, transparent 70%);
}
.pc-hero-dark::after {
  background: var(--pc-bg);
}
.pc-hero-dark .pc-hero-eyebrow {
  background: rgba(149,213,178,.15);
  color: #95d5b2;
  border: 1px solid rgba(149,213,178,.28);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: .7rem;
  letter-spacing: .12em;
}
.pc-hero-dark .pc-hero-title em {
  font-style: italic;
  color: #74c69d;
}
.pc-hero-dark .pc-hero-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.pc-hero-dark .pc-hero-stat strong { color: #95d5b2; }

/* =============================================
   MARQUEE
   ============================================= */
.pc-marquee-wrap {
  background: var(--pc-primary);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.pc-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: pcMarquee 32s linear infinite;
  will-change: transform;
}
.pc-marquee-track span {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 20px;
}
.pc-marquee-dot {
  color: rgba(255,255,255,.35) !important;
  padding: 0 2px !important;
  font-size: .55rem !important;
  letter-spacing: 0 !important;
}
@keyframes pcMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   CATEGORY SECTION + GRID
   ============================================= */
.pc-cat-section { padding-bottom: 56px; }
.pc-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pc-cat-card {
  background: var(--pc-bg-alt);
  border: 1.5px solid var(--pc-border);
  border-radius: 14px;
  padding: 28px 16px 22px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all var(--pc-transition);
  color: var(--pc-text);
}
.pc-cat-card:hover {
  border-color: var(--pc-primary);
  background: var(--pc-primary-pale);
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow-lg);
  color: var(--pc-text);
}
.pc-cat-icon { font-size: 2.1rem; line-height: 1; margin-bottom: 6px; }
.pc-cat-name {
  font-family: var(--pc-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pc-text);
  line-height: 1.2;
}
.pc-cat-note {
  font-size: .7rem;
  color: var(--pc-text-light);
  line-height: 1.4;
}
.pc-cat-count {
  margin-top: 10px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pc-primary);
  background: var(--pc-primary-pale);
  border: 1px solid var(--pc-primary-light);
  border-radius: 100px;
  padding: 2px 10px;
}

/* =============================================
   SECTION HEADER (title + cta link row)
   ============================================= */
.pc-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   BADGES
   ============================================= */
.pc-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.pc-badge-new {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.pc-badge-rare {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fcd34d;
}

/* =============================================
   SMALL BUTTON VARIANT
   ============================================= */
.pc-btn-sm {
  padding: 8px 18px;
  font-size: .82rem;
}

/* =============================================
   FASCINATION STRIP
   ============================================= */
.pc-fascination {
  background: #050f0b;
  padding: 88px 0;
  text-align: center;
}
.pc-fascination-inner {
  max-width: 780px;
  margin: 0 auto;
}
.pc-fascination-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #74c69d;
  border: 1px solid rgba(116,198,157,.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 28px;
}
.pc-fascination-quote {
  font-family: var(--pc-font-head);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 44px;
  border: none;
  padding: 0;
}

/* =============================================
   CARNIVOROUS RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .pc-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pc-promo-inner { gap: 6px 10px; font-size: .7rem; }
  .pc-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-cat-section { padding-bottom: 40px; }
  .pc-fascination { padding: 64px 0; }
  .pc-section-header { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   BRIGHT HERO (carnivorous marketplace)
   ============================================= */
.pc-hero-bright {
  background: #fff;
  border-bottom: 2px solid #f3f4f6;
  padding: 72px 0 64px;
}
.pc-hero-bright-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.pc-hb-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pc-accent, #ea580c);
  display: block;
  margin-bottom: 18px;
}
.pc-hb-title {
  font-family: var(--pc-font-head);
  font-size: clamp(3.2rem, 8vw, 6rem);
  color: #111;
  line-height: 0.95;
  margin-bottom: 24px;
  font-weight: 700;
}
.pc-hb-title em {
  font-style: italic;
  color: var(--pc-accent, #ea580c);
  display: block;
}
.pc-hb-sub {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.72;
  margin-bottom: 30px;
  max-width: 460px;
}
.pc-hb-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.pc-hb-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding-top: 4px;
}
.pc-hb-trust span {
  font-size: .76rem;
  font-weight: 700;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pc-hb-trust span::before {
  content: '✓';
  color: var(--pc-primary);
  font-weight: 800;
}

/* Hero category tiles (right column) */
.pc-hb-cats {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pc-hb-cat-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  transition: all .18s ease;
}
.pc-hb-cat-tile:hover {
  border-color: var(--pc-accent, #ea580c);
  background: var(--pc-accent-pale, #fff7ed);
  color: #111;
  transform: translateX(3px);
}
.pc-hb-cat-emoji { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.pc-hb-cat-info { flex: 1; min-width: 0; }
.pc-hb-cat-info strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.pc-hb-cat-info small { font-size: .68rem; color: #6b7280; }
.pc-hb-cat-count {
  font-size: .7rem;
  font-weight: 800;
  color: var(--pc-primary);
  background: var(--pc-primary-pale);
  border: 1px solid var(--pc-primary-light);
  border-radius: 100px;
  padding: 1px 8px;
  flex-shrink: 0;
}
.pc-hb-cat-arrow {
  color: var(--pc-accent, #ea580c);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   ACCENT BUTTON (orange)
   ============================================= */
.pc-btn-accent {
  background: var(--pc-accent, #ea580c);
  color: #fff;
  border: 2px solid var(--pc-accent, #ea580c);
}
.pc-btn-accent:hover {
  background: var(--pc-accent-dark, #c2410c);
  border-color: var(--pc-accent-dark, #c2410c);
  color: #fff;
}

/* =============================================
   BEGINNER BAND
   ============================================= */
.pc-beginner-band {
  background: var(--pc-primary-dark);
  padding: 64px 0 72px;
}
.pc-section-header-light .pc-badge-beginner {
  background: rgba(149,213,178,.18);
  color: #95d5b2;
  border: 1px solid rgba(149,213,178,.3);
}
.pc-badge-beginner {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.pc-beginner-band .pc-section-header {
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.pc-products-4col-dark .woocommerce ul.products li.product {
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(255,255,255,.1) !important;
}
.pc-products-4col-dark .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #fff !important;
}
.pc-products-4col-dark .woocommerce ul.products li.product .price {
  color: #95d5b2 !important;
}

/* =============================================
   STICKY WHATSAPP BUTTON
   ============================================= */
.pc-wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
  color: #fff;
  text-decoration: none;
}
.pc-wa-sticky:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  color: #fff;
}

/* =============================================
   BRIGHT HERO RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .pc-hero-bright-inner { grid-template-columns: 1fr; gap: 32px; }
  .pc-hb-cats { flex-direction: row; flex-wrap: wrap; }
  .pc-hb-cat-tile { flex: 1 1 calc(50% - 5px); }
  .pc-hb-title { font-size: clamp(2.8rem, 10vw, 4rem); }
}
@media (max-width: 600px) {
  .pc-hero-bright { padding: 48px 0 44px; }
  .pc-hb-cats { display: none; }
  .pc-hb-title { font-size: clamp(2.6rem, 12vw, 3.5rem); }
  .pc-beginner-band { padding: 48px 0 56px; }
  .pc-wa-sticky { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}
