/* ============================================================
   ThePetBaba — main.css
   Brand: Navy #0B1F4D | Orange #FF6B2B | Sky #3B82F6
   Fonts: Barlow (headings) | DM Sans (body)
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --navy:       #0B1F4D;
    --navy-light: #1A3A8A;
    --navy-mid:   #2A4E9A;
    --orange:     #FF6B2B;
    --orange-dark:#E55518;
    --sky:        #3B82F6;
    --light-bg:   #F4F6FA;
    --light-blue: #EEF2FB;
    --white:      #FFFFFF;
    --text-dark:  #0A0F1E;
    --text-mid:   #444466;
    --text-muted: #7A8FAA;
    --border:     #D0D9EC;
    --gold:       #E8C830;
    --green:      #25D366;
    --radius:     10px;
    --radius-lg:  16px;
    --shadow:     0 4px 24px rgba(11,31,77,0.10);
    --shadow-lg:  0 12px 48px rgba(11,31,77,0.16);
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
    --header-h:   72px;
}

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

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

body {
    font-family: 'DM Sans', 'Inter', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', 'DM Sans', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.pb-section { padding: 80px 0; }
.pb-dark-section { background: var(--navy); }
.pb-dark-section h2, .pb-dark-section h3 { color: var(--white); }

.pb-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.pb-section-label {
    display: inline-block;
    background: var(--light-blue);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.pb-dark-section .pb-section-label {
    background: rgba(255,107,43,0.15);
}
.pb-section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}
.pb-section-title.pb-light { color: var(--white); }
.pb-section-desc { color: var(--text-muted); font-size: 16px; }
.pb-section-desc.pb-light { color: rgba(255,255,255,0.7); }

.pb-section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.pb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--orange);
    transition: all var(--transition);
}
.pb-btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,43,0.35);
}

.pb-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--navy);
    transition: all var(--transition);
}
.pb-btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.pb-btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all var(--transition);
}
.pb-btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.pb-btn-whatsapp,
.pb-btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--green);
    transition: all var(--transition);
}
.pb-btn-whatsapp:hover,
.pb-btn-whatsapp-hero:hover {
    background: #1EA952;
    border-color: #1EA952;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── HEADER / NAVBAR ────────────────────────────────────────── */
.pb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: box-shadow var(--transition), background var(--transition);
}
.pb-header.scrolled {
    box-shadow: 0 4px 32px rgba(11,31,77,0.25);
    background: rgba(11,31,77,0.97);
    backdrop-filter: blur(12px);
}
.pb-header-spacer { height: var(--header-h); }

.pb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 100%;
}

/* Logo */
.pb-logo { display: flex; align-items: center; }
.pb-logo-text {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.pb-logo-the  { color: var(--white); }
.pb-logo-pet  { color: var(--orange); }
.pb-logo-baba { color: var(--white); }

/* Nav links */
.pb-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pb-nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
}
.pb-nav-link:hover,
.pb-nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.pb-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* Nav actions */
.pb-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pb-nav-actions .pb-btn-whatsapp {
    padding: 9px 18px;
    font-size: 13px;
}
.pb-nav-actions .pb-btn-quote {
    display: inline-flex;
    align-items: center;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.pb-nav-actions .pb-btn-quote:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.pb-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.pb-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.pb-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pb-hamburger.active span:nth-child(2) { opacity: 0; }
.pb-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.pb-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy-light);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.pb-mobile-menu.active { display: flex; }
.pb-mobile-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}
.pb-mobile-link:hover { color: var(--orange); }
.pb-mobile-whatsapp {
    color: var(--green) !important;
    margin-top: 8px;
    border-bottom: none !important;
}
.pb-mobile-quote {
    margin-top: 8px;
    text-align: center;
    background: var(--orange);
    color: var(--white) !important;
    border-radius: var(--radius);
    padding: 12px !important;
    border-bottom: none !important;
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.pb-hero {
    position: relative;
    background: var(--navy);
    min-height: calc(90vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pb-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,107,43,0.08) 0%, transparent 50%);
}
.pb-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 24px;
}
.pb-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,107,43,0.15);
    border: 1px solid rgba(255,107,43,0.3);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.pb-hero-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.pb-hero-accent { color: var(--orange); }
.pb-hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.pb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.pb-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.pb-hero-stat { text-align: center; }
.pb-stat-num {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
}
.pb-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pb-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.pb-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-hero-img-wrap {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 80px rgba(59,130,246,0.15);
    position: relative;
}
.pb-hero-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-hero-card-float {
    position: absolute;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pb-float 3s ease-in-out infinite;
}
.pb-hero-card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}
.pb-hero-card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
}
@keyframes pb-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Scroll indicator */
.pb-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pb-scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pb-scroll-bounce 2s ease-in-out infinite;
}
@keyframes pb-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(12px); opacity: 0.3; }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.pb-trust-bar {
    background: var(--light-blue);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.pb-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.pb-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    padding: 8px 16px;
}
.pb-trust-item svg { color: var(--orange); flex-shrink: 0; }
.pb-trust-divider { width: 1px; height: 24px; background: var(--border); }

/* ── CATEGORIES GRID ────────────────────────────────────────── */
.pb-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pb-category-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.pb-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.pb-category-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.pb-category-card:hover::before { transform: scaleX(1); }
.pb-category-icon { font-size: 40px; line-height: 1; }
.pb-category-name { font-size: 18px; font-weight: 700; color: var(--navy); }
.pb-category-count { font-size: 13px; color: var(--text-muted); }
.pb-category-arrow {
    font-size: 18px;
    color: var(--orange);
    transition: transform var(--transition);
}
.pb-category-card:hover .pb-category-arrow { transform: translateX(4px); }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.pb-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pb-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.pb-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Product image */
.pb-product-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-blue);
}
.pb-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pb-product-card:hover .pb-product-img { transform: scale(1.05); }
.pb-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}
.pb-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,77,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transition: opacity var(--transition);
}
.pb-product-card:hover .pb-product-overlay { opacity: 1; }

/* Product content */
.pb-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pb-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pb-product-tag {
    background: var(--light-blue);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pb-product-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.pb-product-name a { color: var(--navy); }
.pb-product-name a:hover { color: var(--orange); }
.pb-product-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}
.pb-product-moq {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--light-blue);
    padding: 8px 12px;
    border-radius: 6px;
}
.pb-product-moq svg { color: var(--orange); flex-shrink: 0; }
.pb-product-moq strong { color: var(--navy); }

.pb-product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.pb-quote-btn {
    flex: 1;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: var(--radius);
    border: none;
    transition: all var(--transition);
}
.pb-quote-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.pb-product-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius);
    transition: all var(--transition);
    flex-shrink: 0;
}
.pb-product-whatsapp:hover {
    background: #1EA952;
    color: var(--white);
    transform: translateY(-1px);
}

/* No products */
.pb-no-products,
.pb-no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: rgba(255,255,255,0.6);
}
.pb-no-products-found { color: var(--text-muted); }
.pb-no-products-icon { font-size: 48px; margin-bottom: 16px; }
.pb-no-products-found h3 { color: var(--navy); margin-bottom: 8px; }

/* ── WHY GRID ───────────────────────────────────────────────── */
.pb-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pb-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition);
}
.pb-why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--orange);
    transform: translateY(-4px);
}
.pb-why-icon { font-size: 36px; margin-bottom: 16px; }
.pb-why-title { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.pb-why-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.pb-cta-section { background: var(--light-blue); }
.pb-cta-inner { text-align: center; }
.pb-cta-content { max-width: 600px; margin: 0 auto; }
.pb-cta-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.pb-cta-desc { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.pb-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* CTA Strip */
.pb-cta-strip .container { padding: 40px 24px; }
.pb-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.pb-cta-strip-inner h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 6px;
}
.pb-cta-strip-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ── PAGE HERO ──────────────────────────────────────────────── */
.pb-page-hero {
    padding: 72px 0 56px;
    background: var(--light-blue);
    border-bottom: 1px solid var(--border);
}
.pb-page-hero.pb-dark-section {
    background: var(--navy);
    border-bottom: none;
}
.pb-page-hero-inner { text-align: center; }
.pb-page-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}
.pb-page-title.pb-light { color: var(--white); }
.pb-page-desc { font-size: 18px; color: var(--text-muted); }
.pb-page-desc.pb-light { color: rgba(255,255,255,0.7); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.pb-breadcrumb {
    background: var(--light-blue);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.pb-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.pb-breadcrumb-inner a { color: var(--navy); font-weight: 600; }
.pb-breadcrumb-inner a:hover { color: var(--orange); }
.pb-breadcrumb-current { color: var(--orange); font-weight: 600; }

/* ── FILTERS BAR ────────────────────────────────────────────── */
.pb-filters-bar {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pb-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}
.pb-search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.pb-search-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.pb-search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--navy);
    background: var(--light-bg);
    transition: border-color var(--transition);
}
.pb-search-input:focus {
    outline: none;
    border-color: var(--orange);
}
.pb-filter-select {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--navy);
    background: var(--light-bg);
    cursor: pointer;
    transition: border-color var(--transition);
}
.pb-filter-select:focus {
    outline: none;
    border-color: var(--orange);
}
.pb-filter-btn {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    transition: all var(--transition);
}
.pb-filter-btn:hover { background: var(--orange); }
.pb-filter-clear {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition);
}
.pb-filter-clear:hover { color: var(--orange); }
.pb-results-count {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 600;
}

/* ── PAGINATION ─────────────────────────────────────────────── */
.pb-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pb-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    transition: all var(--transition);
}
.pb-pagination .page-numbers:hover,
.pb-pagination .page-numbers.current {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.pb-pagination .prev,
.pb-pagination .next {
    width: auto;
    padding: 0 16px;
}

/* ── SINGLE PRODUCT ─────────────────────────────────────────── */
.pb-product-single { padding-top: 48px; }
.pb-product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.pb-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-blue);
    aspect-ratio: 1;
    cursor: zoom-in;
}
.pb-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pb-gallery-main:hover .pb-gallery-main-img { transform: scale(1.03); }
.pb-gallery-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11,31,77,0.7);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity var(--transition);
}
.pb-gallery-main:hover .pb-gallery-zoom-hint { opacity: 1; }
.pb-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.pb-gallery-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: border-color var(--transition);
}
.pb-gallery-thumb:hover,
.pb-gallery-thumb.active { border-color: var(--orange); }

/* Product info */
.pb-product-info { position: sticky; top: calc(var(--header-h) + 24px); }
.pb-product-badge-solid {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pb-product-single-title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--navy);
    margin: 16px 0;
    line-height: 1.2;
}
.pb-moq-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light-blue);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.pb-moq-highlight svg { color: var(--orange); flex-shrink: 0; }
.pb-moq-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pb-moq-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
}
.pb-product-description {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}
.pb-product-description p { margin-bottom: 12px; }

/* Specs */
.pb-specs-table { margin-bottom: 28px; }
.pb-specs-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.pb-specs-table table { width: 100%; border-collapse: collapse; }
.pb-specs-table tr { border-bottom: 1px solid var(--border); }
.pb-specs-table tr:last-child { border-bottom: none; }
.pb-spec-label {
    padding: 10px 16px 10px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    width: 35%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pb-spec-value {
    padding: 10px 0;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}

/* Single product actions */
.pb-product-single-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.pb-quote-btn-large {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: var(--radius);
}
.pb-btn-whatsapp-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.pb-btn-whatsapp-product:hover {
    background: #1EA952;
    color: var(--white);
    transform: translateY(-2px);
}

/* Trust badges */
.pb-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.pb-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.pb-trust-badge svg { color: var(--orange); }

/* Video */
.pb-video-section { background: var(--light-bg); }
.pb-video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    box-shadow: var(--shadow-lg);
}
.pb-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.pb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pb-about-content p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}
.pb-about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.pb-about-stat { text-align: center; }
.pb-about-stat-num {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
}
.pb-about-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pb-about-visual { display: flex; flex-direction: column; gap: 16px; }
.pb-about-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}
.pb-about-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.pb-about-card-accent {
    background: var(--navy);
    border-color: var(--navy);
}
.pb-about-card-accent h3 { color: var(--white); }
.pb-about-card-accent p { color: rgba(255,255,255,0.7); }
.pb-about-card-icon { font-size: 28px; margin-bottom: 10px; }
.pb-about-card h3 { font-size: 16px; margin-bottom: 8px; }
.pb-about-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Values */
.pb-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pb-value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}
.pb-value-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--orange);
    transform: translateY(-4px);
}
.pb-value-icon { font-size: 32px; margin-bottom: 12px; }
.pb-value-card h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.pb-value-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }

/* ── WHY US PAGE ────────────────────────────────────────────── */
.pb-why-features { display: flex; flex-direction: column; gap: 48px; }
.pb-why-feature {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.pb-why-feature:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}
.pb-why-feature-reverse {
    grid-template-columns: 1fr 120px;
}
.pb-why-feature-reverse .pb-why-feature-icon-wrap { order: 2; }
.pb-why-feature-reverse .pb-why-feature-content { order: 1; }
.pb-why-feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-why-feature-icon {
    font-size: 56px;
    width: 100px;
    height: 100px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.pb-why-feature-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}
.pb-why-feature-content p {
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}
.pb-why-feature-list { display: flex; flex-direction: column; gap: 8px; }
.pb-why-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.pb-why-feature-list svg { color: var(--orange); flex-shrink: 0; }

/* Comparison table */
.pb-comparison-table {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.pb-comparison-table table { width: 100%; border-collapse: collapse; }
.pb-comparison-table th {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
}
.pb-comparison-table th.pb-our-col { color: var(--orange); }
.pb-comparison-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,0.06);
    font-weight: 500;
}
.pb-comparison-table td.pb-our-col { font-weight: 700; }
.pb-check { color: #4ADE80 !important; font-size: 18px; }
.pb-cross { color: rgba(255,255,255,0.3) !important; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.pb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.pb-contact-title { font-size: 28px; margin-bottom: 12px; }
.pb-contact-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.pb-contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.pb-contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    color: var(--navy);
}
.pb-contact-method:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.pb-contact-whatsapp { border-color: var(--green); background: rgba(37,211,102,0.05); }
.pb-contact-whatsapp:hover { border-color: var(--green); }
.pb-contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pb-contact-email-icon { background: var(--navy); }
.pb-contact-method-info { flex: 1; }
.pb-contact-method-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.pb-contact-method-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}
.pb-contact-hours {
    background: var(--light-blue);
    border-radius: var(--radius);
    padding: 20px;
}
.pb-contact-hours h4 {
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pb-contact-hours p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }

/* Contact Form */
.pb-contact-form-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.pb-contact-form-title {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange);
}
.pb-contact-form { display: flex; flex-direction: column; gap: 16px; }
.pb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pb-form-group { display: flex; flex-direction: column; gap: 6px; }
.pb-form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pb-form-group input,
.pb-form-group select,
.pb-form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--navy);
    background: var(--light-bg);
    transition: border-color var(--transition);
    width: 100%;
}
.pb-form-group input:focus,
.pb-form-group select:focus,
.pb-form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}
.pb-form-group textarea { resize: vertical; min-height: 120px; }
.pb-contact-submit { width: 100%; justify-content: center; }
.pb-contact-success {
    text-align: center;
    padding: 16px;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: var(--radius);
    color: #16A34A;
    font-weight: 600;
}

/* ── DEFAULT PAGE ───────────────────────────────────────────── */
.pb-default-page { max-width: 800px; margin: 0 auto; }
.pb-page-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    line-height: 1.8;
    color: var(--text-mid);
}
.pb-page-content h2 { color: var(--navy); margin: 24px 0 12px; }
.pb-page-content h3 { color: var(--navy); margin: 20px 0 10px; }
.pb-page-content p { margin-bottom: 16px; }
.pb-page-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.pb-page-content li { margin-bottom: 8px; }

/* ── 404 PAGE ───────────────────────────────────────────────── */
.pb-404-section {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    background: var(--light-bg);
}
.pb-404-inner {
    text-align: center;
    padding: 80px 24px;
    max-width: 600px;
    margin: 0 auto;
}
.pb-404-icon { margin: 0 auto 24px; }
.pb-404-number {
    font-family: 'Barlow', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.8;
}
.pb-404-title {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 16px;
}
.pb-404-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.pb-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}
.pb-404-search p { color: var(--text-muted); margin-bottom: 12px; font-size: 14px; }
.pb-404-search-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.pb-404-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
}
.pb-404-search-input:focus { outline: none; border-color: var(--orange); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.pb-footer { background: var(--navy); color: var(--white); }
.pb-footer-top { padding: 64px 0 48px; }
.pb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.pb-footer-logo { margin-bottom: 12px; }
.pb-footer-logo .pb-logo-text { font-size: 22px; }
.pb-footer-tagline {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}
.pb-footer-desc {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.pb-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.pb-footer-whatsapp:hover {
    background: #1EA952;
    color: var(--white);
    transform: translateY(-2px);
}
.pb-footer-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 20px;
}
.pb-footer-links { display: flex; flex-direction: column; gap: 10px; }
.pb-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pb-footer-links a:hover { color: var(--orange); }
.pb-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.pb-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.pb-footer-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.pb-footer-contact a { color: rgba(255,255,255,0.6); }
.pb-footer-contact a:hover { color: var(--orange); }

.pb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.pb-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.pb-footer-bottom-inner a { color: rgba(255,255,255,0.4); }
.pb-footer-bottom-inner a:hover { color: var(--orange); }
.pb-footer-privacy { margin-left: auto; }

/* ── FLOATING WHATSAPP ──────────────────────────────────────── */
.pb-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    transition: all var(--transition);
    position: fixed;
}
.pb-whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37,211,102,0.55);
    color: var(--white);
}
.pb-whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
    animation: pb-pulse 2s ease-out infinite;
}
@keyframes pb-pulse {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ── CONTACT AJAX ───────────────────────────────────────────── */
/* handled inline in page.php */

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pb-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .pb-hero-visual { display: none; }
    .pb-hero-actions { justify-content: center; }
    .pb-hero-stats { justify-content: center; }
    .pb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pb-product-single-grid { grid-template-columns: 1fr; }
    .pb-product-info { position: static; }
    .pb-about-grid { grid-template-columns: 1fr; }
    .pb-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pb-section { padding: 56px 0; }
    .pb-nav-links, .pb-nav-actions { display: none; }
    .pb-hamburger { display: flex; }
    .pb-categories-grid { grid-template-columns: 1fr 1fr; }
    .pb-products-grid { grid-template-columns: 1fr 1fr; }
    .pb-why-grid { grid-template-columns: 1fr; }
    .pb-values-grid { grid-template-columns: 1fr 1fr; }
    .pb-footer-grid { grid-template-columns: 1fr; }
    .pb-why-feature { grid-template-columns: 1fr; }
    .pb-why-feature-reverse { grid-template-columns: 1fr; }
    .pb-why-feature-reverse .pb-why-feature-icon-wrap { order: 0; }
    .pb-why-feature-reverse .pb-why-feature-content { order: 0; }
    .pb-trust-inner { gap: 4px; }
    .pb-trust-divider { display: none; }
    .pb-cta-strip-inner { flex-direction: column; text-align: center; }
    .pb-form-row { grid-template-columns: 1fr; }
    .pb-footer-bottom-inner { flex-direction: column; text-align: center; }
    .pb-footer-privacy { margin-left: 0; }
    .pb-comparison-table { overflow-x: auto; }
}

@media (max-width: 480px) {
    .pb-categories-grid { grid-template-columns: 1fr; }
    .pb-products-grid { grid-template-columns: 1fr; }
    .pb-values-grid { grid-template-columns: 1fr; }
    .pb-hero-actions { flex-direction: column; align-items: center; }
    .pb-404-number { font-size: 80px; }
    .pb-contact-form-card { padding: 24px; }
    .pb-page-content { padding: 28px; }
}

/* ── SECTION EYEBROW (missing definition) ──────────────────── */
.pb-section-eyebrow {
  display: inline-block;
  background: rgba(255,107,43,0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pb-section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── INLINE-STYLE GRID OVERRIDES FOR MOBILE ────────────────── */
/* These override inline style= grids that media queries cannot touch */

@media (max-width: 1024px) {
  /* Hero 2-col -> 1-col */
  .pb-hero-inner[style*="grid-template-columns:1fr 1fr"],
  .pb-hero-inner[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
  }
  .pb-hero-visual { display: none !important; }
  .pb-hero-actions { justify-content: center; }
  .pb-hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px !important; }
  /* About/Why-Us 2-col pages */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:64px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  /* Trust bar */
  [style*="justify-content:center"][style*="flex-wrap:wrap"][style*="gap:0"] {
    flex-direction: column;
    align-items: center;
  }
  [style*="border-right:1px solid #e8eef5"] {
    border-right: none !important;
    border-bottom: 1px solid #e8eef5;
  }

  /* Category grid 3-col -> 2-col */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  /* Product trending 4-col -> 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  /* How It Works / Why reasons 3-col -> 1-col */
  [style*="grid-template-columns:repeat(3,1fr)"][style*="gap:32px"],
  [style*="grid-template-columns:repeat(3,1fr)"][style*="gap:24px"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* About + Why-Us alternating 2-col sections */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:48px"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap:64px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* 6-reason alternating sections on Why Us */
  [style*="display:grid"][style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats row */
  .pb-hero-stats {
    flex-wrap: wrap;
    gap: 16px !important;
    justify-content: center;
  }
  .pb-hero-stat-divider { display: none; }

  /* Padding reductions */
  [style*="padding:80px 0"] { padding: 48px 0 !important; }
  [style*="padding:90px 0"] { padding: 56px 0 !important; }
  [style*="padding:60px 0"] { padding: 36px 0 !important; }
  [style*="padding:64px 0"] { padding: 40px 0 !important; }

  /* CTA flex -> column */
  [style*="display:flex"][style*="gap:16px"][style*="justify-content:center"][style*="flex-wrap:wrap"] {
    flex-direction: column;
    align-items: center;
  }

  /* Markets wrap fix */
  [style*="justify-content:center"][style*="gap:10px"] {
    gap: 8px !important;
  }

  /* Single product page */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:48px"][style*="align-items:start"] {
    grid-template-columns: 1fr !important;
  }

  /* SEO text block padding */
  [style*="max-width:860px"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Container padding */
  .container { padding: 0 16px !important; }

  /* Font size fixes for hero title on mobile */
  .pb-hero-title { font-size: clamp(28px, 8vw, 48px) !important; }
  .pb-hero-subtitle { font-size: 15px !important; }

  /* Step number circles centre */
  [style*="width:56px"][style*="height:56px"][style*="background:#0a1628"] {
    margin: 0 auto 20px !important;
  }
}

@media (max-width: 480px) {
  /* Categories 2-col -> 1-col */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Trust bar on tiny screens */
  [style*="padding:12px 28px"] {
    padding: 10px 12px !important;
    border-right: none !important;
    border-bottom: 1px solid #e8eef5;
    width: 100%;
    text-align: center;
    justify-content: center !important;
  }

  /* Hero actions stack */
  .pb-hero-actions {
    flex-direction: column !important;
    align-items: center;
    gap: 10px !important;
  }
  .pb-btn-primary, .pb-btn-whatsapp-hero {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Floating cards hide on very small */
  .pb-hero-card-float { display: none !important; }

  /* Stat numbers smaller */
  .pb-stat-num { font-size: 22px !important; }

  /* General padding */
  [style*="padding:36px"] { padding: 20px !important; }
  [style*="padding:28px"] { padding: 18px !important; }
  [style*="padding:32px"] { padding: 18px !important; }

  /* Product cards */
  .pb-product-single-grid { grid-template-columns: 1fr !important; }
}

/* ── HEADER / NAV MOBILE HARDENING ─────────────────────────── */
@media (max-width: 768px) {
  .pb-header { height: 60px; }
  :root { --header-h: 60px; }
  .pb-logo-text { font-size: 22px !important; }
  .pb-nav { padding: 0 16px; gap: 0; justify-content: space-between; }
  .pb-nav-links { display: none !important; }
  .pb-nav-actions { display: none !important; }
  .pb-hamburger { display: flex !important; }

  /* Mobile menu full width */
  .pb-mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .pb-mobile-link {
    font-size: 16px !important;
    padding: 16px 0 !important;
  }
}

/* ── SINGLE PRODUCT PAGE MOBILE ─────────────────────────────── */
@media (max-width: 768px) {
  [style*="max-width:1200px"][style*="display:grid"][style*="gap:48px"][style*="align-items:start"] {
    grid-template-columns: 1fr !important;
  }
  [style*="height:420px"] { height: 260px !important; }
  [style*="grid-template-columns:repeat(4,1fr)"][style*="gap:20px"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

/* ── ABOUT / WHY-US PAGE MOBILE ─────────────────────────────── */
@media (max-width: 768px) {
  /* 6-step alternating grid on Why Us */
  [style*="padding:48px"][style*="box-shadow"][style*="display:grid"][style*="gap:48px"] {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
  }
  /* Stat chips row */
  [style*="display:grid"][style*="grid-template-columns:repeat(3,1fr)"][style*="gap:20px"] {
    grid-template-columns: 1fr !important;
  }
  /* 4-col buyer types on About */
  [style*="grid-template-columns:repeat(4,1fr)"][style*="gap:20px"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
