/*
Theme Name: Iyaka
Theme URI: https://iyaka.in
Author: Iyaka Agency
Author URI: https://iyaka.in
Description: Custom WordPress theme for Iyaka Social Media Agency — Chennai. Built with a fully custom HTML/CSS/JS design system.
Version: 1.0.0
License: Private
Text Domain: iyaka
*/

/* ═══════════════════════════════════════
   GLOBAL RESET & VARIABLES
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #6c2572;
  --purple-light: #f5eef6;
  --purple-mid: #9b4aa6;
  --off-white: #faf9f7;
  --ink: #1a1018;
  --muted: #7a6e7d;
  --border: rgba(108, 37, 114, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ═══════════════════════════════════════
   GLOBAL NAV
═══════════════════════════════════════ */
.iyaka-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s;
}
.iyaka-nav .logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--purple);
  letter-spacing: -0.02em; text-decoration: none;
}
.iyaka-nav .logo span {
  font-size: 0.68rem; font-family: 'Inter', sans-serif;
  font-weight: 300; letter-spacing: 0.1em; display: block;
  margin-top: -4px; color: var(--muted); text-transform: uppercase;
}
.iyaka-nav .nav-links { display: flex; gap: 2rem; list-style: none; }
.iyaka-nav .nav-links a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); transition: color 0.2s;
}
.no-caps { text-transform: none; }
.iyaka-nav .nav-links a:hover,
.iyaka-nav .nav-links a.active { color: var(--purple); }
.iyaka-nav .nav-cta {
  font-size: 0.78rem; font-weight: 500;
  padding: 0.5rem 1.25rem; background: var(--purple);
  color: #fff; border-radius: 100px; transition: all 0.25s;
}
.iyaka-nav .nav-cta:hover { background: var(--purple-mid); }

/* Mobile nav toggle */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.3s;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--off-white); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'DM Serif Display', serif; font-size: 2rem;
  color: var(--ink); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--purple); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--muted);
}

/* ═══════════════════════════════════════
   GLOBAL FOOTER
═══════════════════════════════════════ */
.iyaka-footer {
  background: var(--ink); padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  flex-wrap: wrap; gap: 1rem;
}
.iyaka-footer .footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: #fff;
}
.iyaka-footer .footer-links {
  display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap;
}
.iyaka-footer .footer-links a {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s;
}
.iyaka-footer .footer-links a:hover { color: rgba(255,255,255,0.7); }
.iyaka-footer .footer-copy {
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════ */
.btn-primary {
  padding: 0.85rem 2rem; background: var(--purple); color: #fff;
  border-radius: 100px; font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.04em; transition: all 0.25s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--purple-mid); transform: scale(1.04); }

.btn-ghost {
  padding: 0.85rem 2rem; background: transparent; color: var(--ink);
  border-radius: 100px; font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.04em; border: 1px solid rgba(26,16,24,0.18);
  transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }

.btn-outline-white {
  padding: 0.85rem 2rem; background: transparent; color: #fff;
  border-radius: 100px; font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.04em; border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s; display: inline-block;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); }

.section-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15; letter-spacing: -0.02em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--purple); }

/* marquee */
.marquee-wrap { background: var(--purple); padding: 0.8rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 2.5rem; animation: marquee 22s linear infinite; }
.marquee-item { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.marquee-dot { color: rgba(255,255,255,0.25); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* cta band */
.cta-band {
  background: var(--ink); padding: 5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.75rem;
}
.cta-band-title em { font-style: italic; color: #c785cf; }
.cta-band-sub { font-size: 0.88rem; color: rgba(255,255,255,0.45); font-weight: 300; max-width: 380px; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* Two-column "What We Do + Portfolio" CTA section */
.dual-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.dual-cta-col { display: flex; flex-direction: column; align-items: flex-start; }
.dual-cta-col .ps-desc { max-width: 100%; }

/* Base two-column layout used by .ps-inner sections (e.g. iMetrik home block) */
.ps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ps-left { display: flex; flex-direction: column; }

@media (max-width: 768px) {
  .dual-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════
   STRATEGY SECTION — COLLAGE
═══════════════════════════════════════ */
.strategy-section {
  background: #f3eef9;
  padding: 5rem 3rem;
  overflow: hidden;
}

.strategy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left text col */
.strategy-inner .ps-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem;
}
.ps-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.ps-title em { font-style: italic; color: var(--purple); }
.ps-desc {
  font-size: 0.9rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 1.5rem; max-width: 320px;
}
.ps-link {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  text-decoration: underline; text-underline-offset: 3px;
  margin-bottom: 2rem; display: inline-block;
}
.ps-link:hover { color: var(--purple); }

/* Notepad card (in left col) */
.sc-notepad {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  box-shadow: 2px 4px 18px rgba(108,37,114,0.08);
  max-width: 230px;
  position: relative;
}
.sc-notepad::before {
  content: '';
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px; background: #c0b0d0; border-radius: 2px;
}
.sc-notepad-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple);
  border-bottom: 1.5px solid #e8d5f5; padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.sc-notepad ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.sc-notepad ul li {
  font-size: 0.78rem; color: var(--ink); font-weight: 500;
  padding-left: 1.1rem; position: relative;
}
.sc-notepad ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--purple); font-size: 0.65rem;
}

/* Collage container */
.strategy-collage {
  position: relative;
  height: 540px;
  width: 100%;
}

/* Base card */
.sc-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 2px 6px 24px rgba(108,37,114,0.1), 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sc-card:hover {
  transform: scale(1.03) rotate(0deg) !important;
  box-shadow: 4px 12px 36px rgba(108,37,114,0.18);
  z-index: 50 !important;
}

/* Tape strip */
.sc-tape {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 16px;
  background: rgba(200,180,230,0.55);
  border-radius: 2px;
  z-index: 5;
}

/* Post placeholder cards */
.sc-post { padding: 0; overflow: hidden; }
.sc-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(135deg, #e8d5f5 0%, #d4b8e8 100%);
  border-radius: 12px;
  min-height: 130px;
}
.sc-img-ph span {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(108,37,114,0.6); text-transform: uppercase;
}
.sc-img-dark { background: linear-gradient(135deg, #2a3a2a 0%, #3d5c3a 100%) !important; }
.sc-img-dark span { color: rgba(255,255,255,0.5) !important; }
.sc-img-dark2 { background: linear-gradient(160deg, #1a1020 0%, #3a1a2a 100%) !important; }
.sc-img-dark2 span { color: rgba(255,255,255,0.45) !important; }
.sc-img-teal { background: linear-gradient(135deg, #0d5e5e 0%, #1a8080 50%, #d4a020 100%) !important; }
.sc-img-teal span { color: rgba(255,255,255,0.5) !important; }
.sc-img-warm { background: linear-gradient(135deg, #c87020 0%, #8b3010 100%) !important; }
.sc-img-warm span { color: rgba(255,255,255,0.5) !important; }
.sc-reel-text {
  font-family: 'DM Serif Display', serif !important;
  font-size: 0.85rem !important; line-height: 1.2;
  color: #fff !important; font-weight: 700;
  text-transform: none !important; letter-spacing: 0 !important;
  align-self: center;
}

/* Post caption */
.sc-post-caption {
  padding: 0.5rem 0.75rem; font-size: 0.65rem;
  color: var(--ink); line-height: 1.4; font-weight: 500;
}
.sc-post-caption small { color: var(--muted); font-weight: 400; }

/* Analytics card */
.sc-analytics {
  padding: 1rem 1.1rem 0.6rem;
  width: 200px;
}
.sc-analytics-header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.62rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.5rem;
}
.sc-analytics-filter {
  font-size: 0.55rem; color: var(--muted);
  background: #f5f0fa; padding: 0.15rem 0.4rem; border-radius: 4px;
}
.sc-analytics-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--ink);
  line-height: 1; margin-bottom: 0.2rem;
}
.sc-analytics-sub {
  font-size: 0.58rem; color: var(--muted); margin-bottom: 0.5rem;
}
.sc-green { color: #3a9a5c; font-weight: 600; }
.sc-chart { width: 100%; height: 40px; display: block; margin-bottom: 0.3rem; }
.sc-chart-labels {
  display: flex; justify-content: space-between;
  font-size: 0.5rem; color: var(--muted);
}

/* Sticky note cards */
.sc-sticky {
  padding: 1rem 1.1rem;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem; line-height: 1.35;
  color: var(--ink);
}
.sc-sticky-lavender { background: #e8d5f5 !important; }
.sc-sticky-white { background: #f5f0fa !important; font-size: 1.1rem; }

/* Quote card */
.sc-quote {
  padding: 1rem 1.2rem;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem; line-height: 1.4;
  color: var(--ink); position: absolute;
}
.sc-sparkle {
  display: block; font-size: 1rem; color: var(--purple);
  margin-top: 0.4rem;
}

/* Calendar card */
.sc-calendar {
  padding: 0.8rem 0.9rem;
  width: 220px;
}
.sc-cal-title {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ink); text-align: center; margin-bottom: 0.5rem;
}
.sc-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.sc-cal-h {
  font-size: 0.42rem; font-weight: 700; color: var(--muted);
  text-align: center; padding: 1px 0; text-transform: uppercase;
}
.sc-cal-tag {
  font-size: 0.38rem; font-weight: 600; text-align: center;
  padding: 2px 1px; border-radius: 3px; line-height: 1.3;
}
.sc-tag-post { background: #e8d5f5; color: var(--purple); }
.sc-tag-reel { background: #daf0e8; color: #2a7a50; }
.sc-tag-story { background: #fde8c8; color: #a05010; }
.sc-tag-launch { background: #fff3cd; color: #856404; border: 1px solid #d4a020; border-radius: 50%; font-size: 0.33rem; }

/* ── CARD POSITIONS & ROTATIONS ── */
.sc-post-1 { width: 140px; height: 155px; top: 10px; left: 0px; transform: rotate(-2deg); z-index: 3; }
.sc-post-2 { width: 130px; top: 0px; left: 155px; transform: rotate(1.5deg); z-index: 2; }
.sc-analytics { top: 5px; left: 310px; transform: rotate(0deg); z-index: 4; }
.sc-sticky.sc-sticky-lavender { width: 90px; top: 30px; right: 0px; transform: rotate(3deg); z-index: 3; }
.sc-post-3 { width: 155px; height: 170px; top: 230px; left: 0px; transform: rotate(-1.5deg); z-index: 3; }
.sc-post-4 { width: 125px; height: 140px; top: 210px; left: 165px; transform: rotate(2deg); z-index: 2; }
.sc-post-5 { width: 115px; height: 125px; top: 220px; right: 30px; transform: rotate(-1deg); z-index: 2; }
.sc-sticky.sc-sticky-white.sc-sticky-mid { width: 110px; top: 180px; left: 300px; transform: rotate(-2deg); z-index: 3; }
.sc-calendar { top: 360px; left: 155px; transform: rotate(1deg); z-index: 4; }
.sc-quote { width: 150px; top: 380px; right: 0px; transform: rotate(-1.5deg); z-index: 3; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .iyaka-nav { padding: 1.25rem 2rem; }
  .iyaka-nav .nav-links { gap: 1.25rem; }
  .iyaka-nav .nav-links a { font-size: 0.72rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .iyaka-nav { padding: 1rem 1.5rem; }
  .iyaka-nav .nav-links { display: none; }
  .iyaka-nav .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .cta-band { padding: 4rem 1.5rem; flex-direction: column; }
  .cta-btns { width: 100%; }
  .btn-primary, .btn-ghost, .btn-outline-white { width: 100%; text-align: center; }

  .iyaka-footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; }
  .iyaka-footer .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════
   GLOBAL RESPONSIVE — injected into all pages
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  /* two-col grids → single col */
  .ps-inner, .form-inner, .product-inner,
  .split-section, .hero-grid, .cta-band { 
    grid-template-columns: 1fr !important; 
    direction: ltr !important;
  }
  .ps-inner.reverse > * { direction: ltr; }
  .product-inner.reverse { direction: ltr; }
  .hero-right { display: none; }
  .hero-visual { display: none; }
  .split-right { position: relative !important; height: 55vh !important; }
  .split-left { border-right: none !important; border-bottom: 0.5px solid var(--border); }
  .cta-band { flex-direction: column; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .steps-row { grid-template-columns: repeat(2, 1fr) !important; }
  .results-row { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-band { grid-template-columns: repeat(2, 1fr) !important; }
  .offer-grid { grid-template-columns: 1fr !important; }
  .strategy-grid { grid-template-columns: 1fr !important; }
  /* strategy collage tablet */
  .strategy-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .strategy-collage { height: 480px; }
  .content-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .labs-grid { grid-template-columns: 1fr !important; }
  .img-2col { grid-template-columns: 1fr !important; }
  .pb-img-2col { grid-template-columns: 1fr !important; }
  .pb-features { grid-template-columns: 1fr !important; }
  .csi-item { grid-template-columns: 100px 1fr !important; }
}

/* Mobile */
@media (max-width: 768px) {
  /* padding */
  section, .page-section, .product-section,
  .how-section, .showcase-section, .offer-section,
  .form-section, .faq-section, .grid-section { 
    padding-left: 1.5rem !important; 
    padding-right: 1.5rem !important;
  }
  .hero { padding: 7rem 1.5rem 4rem !important; }
  .cta-band { padding: 4rem 1.5rem !important; }
  .iyaka-footer { padding: 2rem 1.5rem !important; }
  
  /* grids */
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .steps-row { grid-template-columns: 1fr !important; }
  .results-row { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-band { grid-template-columns: 1fr 1fr !important; }
  .content-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a, .hero-actions button { text-align: center; }
  .filter-bar { padding: 1.5rem 1.5rem 0 !important; }
  
  /* slider */
  .slider-arrow-prev { left: 0.5rem !important; }
  .slider-arrow-next { right: 0.5rem !important; }
  
  /* modal */
  .modal-popup { border-radius: 16px !important; max-height: 95vh !important; }
  .brand-cover { height: 260px !important; padding: 1.5rem !important; }
  .brand-cover-name { font-size: 2.5rem !important; }
  .modal-footer { padding: 1rem 1.5rem !important; flex-direction: column; gap: 0.75rem; }
  
  /* strategy collage mobile */
  .strategy-section { padding: 3.5rem 1.5rem; }
  .strategy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sc-notepad { max-width: 100%; }
  .strategy-collage { 
    height: auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: static;
  }
  .sc-card {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Hide some cards on mobile, show only 4 key ones */
  .sc-post-1, .sc-analytics, .sc-calendar, .sc-quote { display: flex; flex-direction: column; }
  .sc-post-2, .sc-post-3, .sc-post-4, .sc-post-5,
  .sc-sticky, .sc-notepad { display: none; }
  /* Show notepad in left col only (it's outside collage) */
  .strategy-inner .sc-notepad { display: flex; flex-direction: column; }
  .sc-post-1 .sc-img-ph { min-height: 100px; }
  .sc-analytics { width: 100% !important; }
  .sc-analytics-number { font-size: 1.5rem; }
  .sc-quote { width: 100% !important; }

  /* hero parallax off on mobile */
  .hero-heading { transform: none !important; }
  .hero-sub { transform: none !important; }

  /* typography */
  .hero-heading { font-size: clamp(2.2rem, 9vw, 3rem) !important; }
  .brand-cover-name { font-size: 2.8rem !important; }

  /* misc */
  .step-arrow { display: none !important; }
  .hero-scroll { display: none !important; }
  .split-right { height: 45vh !important; }
}

/* Very small */
@media (max-width: 480px) {
  .results-row { grid-template-columns: 1fr 1fr !important; }
  .stats-band { grid-template-columns: 1fr 1fr !important; }
  .csi-item { grid-template-columns: 1fr !important; }
  .csi-item > div:first-child { margin-bottom: 0.5rem; }
  .pb-features { grid-template-columns: 1fr !important; }
  .barter-toggle { flex-direction: column !important; }
}
