/*
Theme Name: VBB Store
Theme URI: https://verifiedbmservices.com
Author: Verified BM Services
Description: Multi-page WordPress theme with WooCommerce for Verified BM Services. Light theme, pixel-perfect.
Version: 15.0
License: GNU General Public License v2 or later
Text Domain: vbb-store
Tags: e-commerce, woocommerce, multi-page, responsive, custom-menu, custom-logo
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
WooCommerce tested up to: 8.8
*/

/* ═══ CSS VARIABLES — matches React index.css exactly ═══ */
:root {
  --bg: 0 0% 100%;
  --fg: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-fg: 222.2 84% 4.9%;
  --primary: 217 91% 60%;
  --primary-fg: 0 0% 100%;
  --secondary: 210 40% 96.1%;
  --secondary-fg: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-fg: 215.4 20% 40%;
  --accent: 210 40% 96.1%;
  --accent-fg: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --border: 214.3 31.8% 91.4%;
  --ring: 217 91% 60%;
  --radius: 0.5rem;
  --green: 142 70% 45%;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ═══ RESET ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:var(--font-sans);background:hsl(var(--bg));color:hsl(var(--fg));line-height:1.6;min-height:100vh}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none}

/* ═══ TYPOGRAPHY ═══ */
h1{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:700;line-height:1.2}
h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:700;line-height:1.2}
h3{font-size:1.125rem;font-weight:600}
h4{font-size:1rem;font-weight:600}
p{color:hsl(var(--muted-fg));line-height:1.7}

/* ═══ CONTAINER ═══ */
.vbb-container{max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.vbb-container{padding:0 1.5rem}}
@media(min-width:1024px){.vbb-container{padding:0 2rem}}

/* ═══ BUTTONS ═══ */
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.625rem 1.25rem;border-radius:var(--radius);font-weight:600;font-size:0.875rem;cursor:pointer;transition:all 0.2s;border:none;text-decoration:none}
.btn-primary{background:hsl(var(--primary));color:hsl(var(--primary-fg))}
.btn-primary:hover{filter:brightness(1.1);transform:translateY(-1px)}
.btn-green{background:hsl(var(--green));color:hsl(0 0% 100%)}
.btn-green:hover{filter:brightness(1.1)}
.btn-outline{background:transparent;border:1px solid hsl(var(--border));color:hsl(var(--fg))}
.btn-outline:hover{background:hsl(var(--secondary))}
.btn-lg{padding:0.75rem 1.75rem;font-size:1rem}
.btn-sm{padding:0.5rem 1rem;font-size:0.8125rem}

/* ═══ HEADER ═══ */
.site-header{position:sticky;top:0;z-index:50;background:hsl(var(--bg)/0.97);backdrop-filter:blur(12px);border-bottom:1px solid hsl(var(--border))}
.site-header .vbb-container{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:72px;padding-top:0.75rem;padding-bottom:0.75rem}
.site-logo{display:flex;align-items:center;gap:0.5rem;font-weight:700;font-size:1.125rem;flex-shrink:0}
.site-logo img{height:36px;width:auto;max-width:180px;object-fit:contain}

.main-nav{display:flex;align-items:center;justify-content:center;flex:1;gap:0.5rem}
.main-nav a,.main-nav .menu-item a{padding:0.5rem 0.75rem;border-radius:var(--radius);font-size:0.8125rem;font-weight:600;color:hsl(var(--muted-fg));transition:all 0.2s;text-transform:uppercase;letter-spacing:0.02em}
.main-nav a:hover,.main-nav .menu-item a:hover{color:hsl(var(--primary));background:hsl(var(--secondary))}
.main-nav .current-menu-item a,.main-nav a.active{color:hsl(var(--primary))}

.header-actions{display:flex;align-items:center;gap:0.75rem;min-width:120px;justify-content:flex-end}
.header-icon{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:var(--radius);color:hsl(var(--fg));transition:all 0.2s;background:none;border:none;cursor:pointer}
.header-icon:hover{background:hsl(var(--secondary))}

.mobile-toggle{display:none;background:none;border:none;color:hsl(var(--fg));cursor:pointer;padding:0.5rem}
@media(max-width:768px){
  .mobile-toggle{display:flex}
  .main-nav{display:none;position:absolute;top:72px;left:0;right:0;background:hsl(var(--bg));border-bottom:1px solid hsl(var(--border));flex-direction:column;padding:1rem}
  .main-nav.open{display:flex}
  .header-actions .btn{display:none}
}

/* ═══ PAGE HEADER / HERO BANNER ═══ */
.page-hero{position:relative;height:200px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.page-hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.5)}
.page-hero-solid{position:absolute;inset:0;background:hsl(var(--primary))}
.page-hero .vbb-container{position:relative;z-index:1}
.page-hero .breadcrumb{display:flex;align-items:center;justify-content:center;gap:0.375rem;margin-bottom:0.5rem;font-size:0.75rem;color:hsl(var(--primary-fg)/0.92)}
.page-hero .breadcrumb a{color:hsl(var(--primary-fg)/0.92)}
.page-hero .breadcrumb a:hover{color:hsl(var(--primary-fg))}
.page-hero .subtitle{font-size:0.6875rem;font-weight:700;letter-spacing:0.15em;color:hsl(var(--primary-fg)/0.92);text-transform:uppercase;margin-bottom:0.375rem}
.page-hero h1{color:hsl(var(--primary-fg));margin-bottom:0.5rem}
.page-hero p{color:hsl(var(--primary-fg)/0.92);max-width:600px;margin:0 auto;font-size:0.9375rem}
.page-hero .search-bar{max-width:500px;margin:1rem auto 0;display:flex}
.page-hero .search-bar input{flex:1;padding:0.75rem 1rem;border-radius:var(--radius);border:1px solid hsl(var(--border));font-size:0.875rem;background:hsl(var(--bg));color:hsl(var(--fg))}
@media(min-width:768px){.page-hero{height:220px}}

/* ═══ HOME HERO ═══ */
.hero-section{padding:2.75rem 0 1.25rem;background:hsl(var(--bg))}
.hero-grid{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center}
@media(min-width:1024px){.hero-grid{grid-template-columns:minmax(300px,380px) minmax(0,1fr);gap:4rem}}
.hero-logo-wrap{position:relative;display:flex;align-items:center;justify-content:center;padding:0.25rem;border-radius:1.75rem;overflow:hidden;background:conic-gradient(from 0deg,hsl(var(--primary)),hsl(22 90% 55%),hsl(var(--primary)),hsl(22 90% 55%));box-shadow:0 18px 50px hsl(var(--primary)/0.14)}
.hero-logo-wrap::before{content:'';position:absolute;inset:2px;border-radius:calc(1.75rem - 2px);background:hsl(var(--bg))}
.hero-logo-wrap img{position:relative;z-index:1;width:min(100%,320px);margin:0 auto;border-radius:1.5rem;background:hsl(var(--secondary))}
.hero-badge{display:inline-flex;align-items:center;gap:0.375rem;padding:0.25rem 0.75rem;border-radius:9999px;background:hsl(var(--primary)/0.08);border:1px solid hsl(var(--primary)/0.2);color:hsl(var(--primary));font-size:0.8125rem;font-weight:600;margin-bottom:1rem}
.hero-section h1 .text-primary{color:hsl(var(--primary))}
.hero-section h1 .text-green{color:hsl(var(--green))}
.hero-section p.hero-desc{font-size:1rem;margin:1rem 0 1.5rem;max-width:640px;color:hsl(var(--muted-fg))}
.hero-actions{display:flex;gap:0.75rem;flex-wrap:wrap}
.hero-actions .btn{min-width:160px;justify-content:center}

/* Stats bar */
.stats-bar{border-top:1px solid hsl(var(--border));border-bottom:1px solid hsl(var(--border));padding:1.5rem 0}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;text-align:center}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(4,1fr)}}
.stat-item .stat-icon{display:flex;justify-content:center;margin-bottom:0.5rem;color:hsl(var(--primary))}
.stat-item .stat-num{font-size:1.5rem;font-weight:700;color:hsl(var(--fg))}
.stat-item .stat-label{font-size:0.8125rem;color:hsl(var(--muted-fg))}

/* ═══ SECTIONS ═══ */
.section{padding:4rem 0}
.section-sm{padding:2.5rem 0}
.section-header{text-align:center;margin-bottom:2.5rem}
.section-header .subtitle{font-size:0.6875rem;font-weight:700;letter-spacing:0.15em;color:hsl(var(--primary));text-transform:uppercase;margin-bottom:0.375rem}
.section-header h2{margin-bottom:0.75rem}
.section-header p{max-width:600px;margin:0 auto}
.section-alt{background:hsl(var(--secondary))}

/* ═══ CARDS ═══ */
.card{background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:var(--radius);overflow:hidden;transition:all 0.3s}
.card:hover{border-color:hsl(var(--primary)/0.3);box-shadow:0 4px 12px hsl(var(--fg)/0.05)}

/* ═══ FEATURE CARDS (homepage) ═══ */
.feature-card{padding:1.5rem;background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:var(--radius);transition:all 0.3s}
.feature-card:hover{border-color:hsl(var(--primary)/0.3);box-shadow:0 2px 8px hsl(var(--fg)/0.04)}
.feature-icon{width:2.5rem;height:2.5rem;margin-bottom:0.75rem;display:flex;align-items:center;justify-content:center;border-radius:0.5rem;background:hsl(var(--primary)/0.08);color:hsl(var(--primary))}
.feature-card h3{margin-bottom:0.375rem;font-size:0.9375rem}
.feature-card p{font-size:0.8125rem}

/* ═══ PRODUCT CARD ═══ */
.product-card{display:flex;flex-direction:column}
.product-card .product-img{position:relative;aspect-ratio:4/3;overflow:hidden;background:hsl(var(--secondary))}
.product-card .product-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s}
.product-card:hover .product-img img{transform:scale(1.05)}
.product-card .badge-label{position:absolute;top:0.5rem;right:0.5rem;padding:0.2rem 0.625rem;border-radius:9999px;font-size:0.6875rem;font-weight:600}
.product-card .badge-label.green{background:hsl(var(--green));color:#fff}
.product-card .badge-label.red{background:hsl(var(--destructive));color:#fff}
.product-card .badge-label.blue{background:hsl(var(--primary));color:hsl(var(--primary-fg))}
.product-card .badge-label.orange{background:hsl(24 95% 53%);color:hsl(0 0% 100%)}
.product-card .badge-label.purple{background:hsl(270 60% 55%);color:hsl(0 0% 100%)}
.product-card .badge-save{position:absolute;top:0.5rem;left:0.5rem;padding:0.2rem 0.625rem;border-radius:9999px;font-size:0.6875rem;font-weight:600;background:hsl(var(--green));color:hsl(0 0% 100%)}
.product-card .product-info{padding:1rem;flex:1;display:flex;flex-direction:column}
.product-card .product-category{font-size:0.6875rem;color:hsl(var(--primary));font-weight:600;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.375rem}
.product-card .product-title{font-size:0.9375rem;font-weight:600;color:hsl(var(--fg));margin-bottom:0.375rem;line-height:1.3}
.product-card .product-desc{font-size:0.8125rem;color:hsl(var(--muted-fg));margin-bottom:0.75rem;flex:1;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card .product-footer{display:flex;align-items:center;justify-content:space-between;margin-top:auto}
.product-card .price{font-size:1.125rem;font-weight:700;color:hsl(var(--primary))}
.product-card .price .original{text-decoration:line-through;color:hsl(var(--muted-fg));font-size:0.8125rem;font-weight:400;margin-left:0.375rem}
.product-card .product-rating{display:flex;gap:1px;color:#fbbf24;font-size:0.8125rem}

/* Category pills */
.cat-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:0.5rem;margin-bottom:2rem}
.cat-pill{padding:0.5rem 1rem;border-radius:9999px;font-size:0.8125rem;font-weight:500;border:1px solid hsl(var(--border));color:hsl(var(--fg));background:hsl(var(--bg));cursor:pointer;transition:all 0.2s}
.cat-pill:hover{border-color:hsl(var(--primary));color:hsl(var(--primary))}
.cat-pill.active{background:hsl(var(--primary));color:hsl(var(--primary-fg));border-color:hsl(var(--primary))}

/* ═══ GRIDS ═══ */
.grid-2{display:grid;grid-template-columns:1fr;gap:1.5rem}
.grid-3{display:grid;grid-template-columns:1fr;gap:1.5rem}
.grid-4{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:640px){.grid-2,.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
}

/* ═══ BENEFITS ═══ */
.benefit-item{display:flex;gap:0.75rem;padding:1rem;background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:var(--radius);transition:all 0.3s}
.benefit-item:hover{border-color:hsl(var(--primary)/0.3)}
.benefit-icon{flex-shrink:0;width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center;border-radius:0.5rem;background:hsl(var(--primary)/0.08);color:hsl(var(--primary))}
.benefit-item h4{margin-bottom:0.125rem;font-size:0.875rem}
.benefit-item p{font-size:0.8125rem}

/* ═══ TESTIMONIALS ═══ */
.testimonial-card{padding:1.25rem;background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:var(--radius)}
.testimonial-stars{color:#fbbf24;margin-bottom:0.75rem;font-size:0.875rem}
.testimonial-text{font-size:0.875rem;color:hsl(var(--muted-fg));margin-bottom:1rem;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:0.625rem}
.testimonial-avatar{width:2.25rem;height:2.25rem;border-radius:50%;background:hsl(var(--primary)/0.1);display:flex;align-items:center;justify-content:center;font-weight:700;color:hsl(var(--primary));font-size:0.8125rem}
.testimonial-name{font-weight:600;font-size:0.8125rem}
.testimonial-role{font-size:0.6875rem;color:hsl(var(--muted-fg))}

/* ═══ FAQ ═══ */
.faq-item{border:1px solid hsl(var(--border));border-radius:var(--radius);margin-bottom:0.5rem;overflow:hidden}
.faq-question{width:100%;padding:1rem 1.25rem;background:hsl(var(--bg));border:none;color:hsl(var(--fg));font-size:0.9375rem;font-weight:600;text-align:left;cursor:pointer;display:flex;align-items:center;justify-content:space-between;transition:background 0.2s}
.faq-question:hover{background:hsl(var(--secondary))}
.faq-question .icon{transition:transform 0.3s;font-size:1.125rem}
.faq-item.open .faq-question .icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s,padding 0.3s;background:hsl(var(--bg))}
.faq-item.open .faq-answer{max-height:500px;padding:0 1.25rem 1rem}
.faq-answer p{font-size:0.875rem}

/* ═══ CONTACT ═══ */
.contact-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-channel{display:flex;align-items:center;gap:0.75rem;padding:1.25rem;background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:var(--radius);transition:all 0.2s}
.contact-channel:hover{border-color:hsl(var(--primary)/0.3)}
.contact-icon{flex-shrink:0;width:2.75rem;height:2.75rem;display:flex;align-items:center;justify-content:center;border-radius:0.625rem;background:hsl(var(--primary)/0.08);color:hsl(var(--primary))}
.contact-channel .badge-fastest{display:inline-block;padding:0.125rem 0.5rem;border-radius:9999px;background:hsl(var(--green));color:#fff;font-size:0.625rem;font-weight:700;text-transform:uppercase;margin-left:0.5rem}

/* Contact form */
.contact-form{max-width:100%}
.form-group{margin-bottom:1rem}
.form-group label{display:block;margin-bottom:0.375rem;font-size:0.8125rem;font-weight:500;color:hsl(var(--fg))}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:0.625rem 0.875rem;background:hsl(var(--bg));border:1px solid hsl(var(--border));border-radius:var(--radius);color:hsl(var(--fg));font-size:0.875rem;transition:border-color 0.2s}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:hsl(var(--primary));box-shadow:0 0 0 3px hsl(var(--primary)/0.1)}
.form-group textarea{min-height:100px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* ═══ CTA ═══ */
.cta-section{padding:3rem 0;text-align:center;background:hsl(var(--secondary));border-top:1px solid hsl(var(--border));border-bottom:1px solid hsl(var(--border))}
.cta-section h2{margin-bottom:0.75rem}
.cta-section p{margin-bottom:1.5rem;max-width:500px;margin-left:auto;margin-right:auto}

/* ═══ ABOUT PAGE ═══ */
.about-content{max-width:800px;margin:0 auto;text-align:center}
.about-content h2{margin-bottom:0.75rem}
.about-content p{margin-bottom:1.25rem;font-size:0.9375rem;line-height:1.8}

/* ═══ LEGAL PAGES ═══ */
.legal-content{max-width:800px;margin:0 auto}
.legal-content h2{margin:1.5rem 0 0.75rem;font-size:1.375rem}
.legal-content h3{margin:1.25rem 0 0.5rem}
.legal-content p{margin-bottom:0.75rem;line-height:1.8}
.legal-content ul{padding-left:1.25rem;margin-bottom:0.75rem}
.legal-content ul li{margin-bottom:0.375rem;color:hsl(var(--muted-fg));list-style:disc}

/* ═══ BLOG ═══ */
.blog-card .blog-img{aspect-ratio:16/9;overflow:hidden}
.blog-card .blog-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s}
.blog-card:hover .blog-img img{transform:scale(1.05)}
.blog-meta{display:flex;gap:0.75rem;font-size:0.75rem;color:hsl(var(--muted-fg));margin-bottom:0.5rem}
.blog-card h3{margin-bottom:0.375rem;font-size:0.9375rem}
.blog-card h3 a:hover{color:hsl(var(--primary))}
.card-body{padding:1.25rem}

/* ═══ FOOTER ═══ */
.site-footer{padding:3rem 0 1.5rem;background:hsl(var(--fg));color:hsl(var(--bg))}
.footer-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-bottom:2rem}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-brand p{margin-top:0.75rem;font-size:0.8125rem;max-width:280px;color:hsl(var(--bg)/0.7)}
.footer-col h4{font-size:0.75rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.75rem;color:hsl(var(--bg))}
.footer-col a{display:block;padding:0.2rem 0;font-size:0.8125rem;color:hsl(var(--bg)/0.7);transition:color 0.2s}
.footer-col a:hover{color:hsl(var(--primary))}
.footer-bottom{padding-top:1.5rem;border-top:1px solid hsl(var(--bg)/0.15);text-align:center;font-size:0.75rem;color:hsl(var(--bg)/0.5)}

/* ═══ WHY CARDS ═══ */
.why-card{padding:1.5rem;background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:var(--radius)}
.why-card .num{font-size:1.75rem;font-weight:800;color:hsl(var(--primary)/0.2);margin-bottom:0.375rem}

/* ═══ 404 ═══ */
.page-404{text-align:center;padding:5rem 0}
.page-404 .big{font-size:6rem;font-weight:900;color:hsl(var(--primary)/0.15);line-height:1}

/* ═══ WOOCOMMERCE OVERRIDES ═══ */
.woocommerce ul.products{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem!important}
.woocommerce ul.products li.product{background:hsl(var(--card))!important;border:1px solid hsl(var(--border))!important;border-radius:var(--radius)!important;overflow:hidden;margin:0!important;width:auto!important;float:none!important;padding:0!important;transition:all 0.3s}
.woocommerce ul.products li.product:hover{border-color:hsl(var(--primary)/0.3)!important;box-shadow:0 4px 12px hsl(var(--fg)/0.05)}
.woocommerce ul.products li.product a img{margin:0!important;width:100%!important;aspect-ratio:4/3;object-fit:cover}
.woocommerce ul.products li.product .woocommerce-loop-product__title{padding:0.75rem 1rem 0!important;color:hsl(var(--fg))!important;font-size:0.9375rem!important}
.woocommerce ul.products li.product .price{color:hsl(var(--primary))!important;padding:0.5rem 1rem!important;font-size:1rem!important}
.woocommerce ul.products li.product .price del{color:hsl(var(--muted-fg))!important}
.woocommerce ul.products li.product .price ins{text-decoration:none}
.woocommerce ul.products li.product .button,.woocommerce ul.products li.product .add_to_cart_button{background:hsl(var(--primary))!important;color:hsl(var(--primary-fg))!important;border-radius:0!important;margin:0!important;width:100%;padding:0.625rem!important;text-align:center}
.woocommerce ul.products li.product .onsale{background:hsl(var(--destructive))!important;border-radius:9999px;min-width:auto;min-height:auto;padding:0.2rem 0.625rem;line-height:1.5;top:0.5rem;right:0.5rem;left:auto}
.woocommerce .star-rating{color:#fbbf24!important}
.woocommerce div.product{max-width:1000px;margin:0 auto 2rem}
.woocommerce div.product p.price{color:hsl(var(--primary))!important;font-size:1.375rem!important}
.woocommerce div.product form.cart .button{background:hsl(var(--primary))!important;color:hsl(var(--primary-fg))!important;border-radius:var(--radius);padding:0.625rem 1.5rem}
.woocommerce div.product .woocommerce-tabs ul.tabs{padding:0!important;margin:0 0 1rem!important;border-bottom:1px solid hsl(var(--border))!important}
.woocommerce div.product .woocommerce-tabs ul.tabs::before{border:none!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li{background:none!important;border:none!important;border-radius:0!important;margin:0!important;padding:0!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{padding:0.625rem 1.25rem!important;color:hsl(var(--muted-fg))!important;font-weight:500}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:hsl(var(--primary))!important;border-bottom:2px solid hsl(var(--primary))}
.woocommerce table.shop_table{border:1px solid hsl(var(--border))!important;border-radius:var(--radius)!important}
.woocommerce table.shop_table th{background:hsl(var(--secondary))!important}
.woocommerce table.shop_table td{border-color:hsl(var(--border))!important}
.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce form .form-row select{border:1px solid hsl(var(--border))!important;border-radius:var(--radius)!important;padding:0.625rem!important}
.woocommerce #place_order{background:hsl(var(--primary))!important;color:hsl(var(--primary-fg))!important;border-radius:var(--radius);font-size:0.9375rem}

/* ═══ SCROLL TO TOP ═══ */
.scroll-top{position:fixed;bottom:1.5rem;right:1.5rem;z-index:40;width:2.75rem;height:2.75rem;border-radius:50%;background:hsl(var(--primary));color:hsl(var(--primary-fg));border:none;cursor:pointer;display:none;align-items:center;justify-content:center;box-shadow:0 4px 12px hsl(var(--primary)/0.3);transition:all 0.3s}
.scroll-top.visible{display:flex}
.scroll-top:hover{transform:translateY(-2px)}

/* ═══ UTILITIES ═══ */
.text-center{text-align:center}
.text-primary{color:hsl(var(--primary))}
.text-muted{color:hsl(var(--muted-fg))}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:0.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.mt-2{margin-top:1rem}.mt-4{margin-top:2rem}
.d-flex{display:flex}.gap-1{gap:0.5rem}.gap-2{gap:1rem}.flex-wrap{flex-wrap:wrap}
.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

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

/* ═══ PAGINATION ═══ */
.pagination{display:flex;justify-content:center;gap:0.375rem;margin-top:2rem}
.pagination a,.pagination span{padding:0.375rem 0.875rem;border-radius:var(--radius);background:hsl(var(--bg));border:1px solid hsl(var(--border));color:hsl(var(--muted-fg));font-size:0.8125rem}
.pagination a:hover{border-color:hsl(var(--primary));color:hsl(var(--primary))}
.pagination .current{background:hsl(var(--primary));color:hsl(var(--primary-fg));border-color:hsl(var(--primary))}


.section-alt{background:hsl(var(--secondary)/0.45)}
.page-stats{border-bottom:1px solid hsl(var(--border));padding:2rem 0}
.page-stats .stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;text-align:center}
@media(min-width:768px){.page-stats .stats-grid{grid-template-columns:repeat(4,1fr)}}
.narrow-copy{max-width:52rem;margin:0 auto}
.text-center-block{text-align:center}
.text-center-block h2{margin-bottom:1rem}
.text-center-block p{margin:0 auto 1.25rem;max-width:48rem;font-size:0.95rem;line-height:1.8}
.page-section-title{text-align:center;margin-bottom:2.5rem}
.feature-card--large{padding:1.75rem;border-radius:1rem}
.page-copy-stack{display:grid;gap:3rem}
.page-copy-card p{max-width:44rem}
.section-header--compact{margin-bottom:1.5rem}
.page-story-note{font-size:0.875rem;color:hsl(var(--muted-fg));margin-top:1.5rem}
.panel-card{background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:1rem;padding:1.25rem}
.contact-grid--page{align-items:start}
@media(min-width:1024px){.contact-grid--page{grid-template-columns:1fr 1fr}}
.contact-stack{display:grid;gap:1rem}
.contact-channel{padding:1rem 1.25rem;border-radius:1rem}
.contact-channel__copy{display:grid;gap:0.15rem;flex:1}
.contact-channel__title-row{display:flex;align-items:center;gap:0.5rem;flex-wrap:wrap}
.contact-channel strong{font-size:1rem;color:hsl(var(--fg))}
.contact-channel small{font-size:0.8125rem;color:hsl(var(--muted-fg))}
.contact-channel__arrow{color:hsl(var(--muted-fg));display:flex;align-items:center}
.contact-icon{width:3rem;height:3rem;border-radius:0.85rem;background:hsl(var(--primary)/0.1);display:flex;align-items:center;justify-content:center;color:hsl(var(--primary));flex-shrink:0}
.contact-icon--whatsapp{color:hsl(var(--green))}
.contact-icon--telegram{color:hsl(200 100% 40%)}
.badge-fastest{display:inline-flex;align-items:center;padding:0.15rem 0.5rem;border-radius:999px;background:hsl(var(--green));color:hsl(0 0% 100%);font-size:0.625rem;font-weight:700;text-transform:uppercase}
.info-card h4{margin-bottom:0.5rem}
.info-card p{font-size:0.875rem}
.contact-hours-list{display:grid;gap:0.75rem;margin-top:1rem}
.contact-hours-row{display:flex;justify-content:space-between;gap:1rem;font-size:0.875rem;color:hsl(var(--muted-fg))}
.contact-hours-row strong{color:hsl(var(--fg));font-weight:600}
.contact-form-card{padding:2rem}
.contact-form-card h3{font-size:1.35rem;margin-bottom:0.25rem}
.contact-form-card>p{font-size:0.875rem;margin-bottom:1.5rem}
.contact-form .form-group{margin-bottom:1rem}
.contact-submit{width:100%;justify-content:center}
.contact-form-note{text-align:center;font-size:0.75rem;margin-top:0.75rem}
.process-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
@media(min-width:1024px){.process-grid{grid-template-columns:repeat(4,1fr)}}
.process-step{text-align:center}
.process-badge{width:3rem;height:3rem;border-radius:999px;background:hsl(var(--primary));color:hsl(var(--primary-fg));display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.25rem;font-weight:700}
.process-step h3{margin-bottom:0.5rem}
.process-step p{font-size:0.875rem;max-width:14rem;margin:0 auto}
.faq-stack{max-width:48rem;margin:2.5rem auto 0}
.page-cta{padding:4rem 0}
.page-cta__wrap{max-width:48rem;margin:0 auto;text-align:center}
.page-cta__wrap h2{margin-bottom:0.75rem}
.page-cta__wrap p{max-width:38rem;margin:0 auto}
.page-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;margin-top:2rem}
.search-bar--shop{max-width:34rem;margin:0 auto 1.5rem}
.search-bar--shop input{width:100%;padding:0.875rem 1rem;border-radius:0.75rem;border:1px solid hsl(var(--border));background:hsl(var(--bg));color:hsl(var(--fg))}
.product-grid{align-items:stretch}
.product-card--enhanced{border-radius:1rem;box-shadow:0 1px 3px hsl(var(--fg)/0.06);height:100%}
.product-card--enhanced .product-media{display:block;position:relative}
.product-card--enhanced .product-img{aspect-ratio:1/1;background:hsl(var(--secondary));overflow:hidden}
.product-card--enhanced .product-info{padding:1.25rem;display:flex;flex-direction:column;gap:0.75rem;height:100%}
.product-card--enhanced .product-title{font-size:1rem;font-weight:700;line-height:1.35;margin-bottom:0}
.product-card--enhanced .product-title a:hover{color:hsl(var(--primary))}
.product-card--enhanced .product-desc{-webkit-line-clamp:2;line-clamp:2;min-height:2.9em}
.product-card--enhanced .product-rating-row{display:flex;align-items:center;gap:0.125rem}
.product-card--enhanced .product-rating-row svg{color:hsl(45 93% 47%);fill:currentColor}
.product-card--enhanced .product-rating-value{margin-left:0.4rem;font-size:0.875rem;font-weight:600;color:hsl(var(--fg))}
.product-card--enhanced .product-price-box{border:1px solid hsl(var(--border));border-radius:0.9rem;background:hsl(0 60% 97%);padding:0.9rem 1rem}
.product-card--enhanced .product-price-meta{display:flex;align-items:center;gap:0.5rem;flex-wrap:wrap;margin-bottom:0.25rem}
.product-card--enhanced .product-old-price{text-decoration:line-through;color:hsl(var(--muted-fg));font-size:0.875rem}
.product-card--enhanced .product-save-text{font-size:0.75rem;font-weight:700;color:hsl(var(--green))}
.product-card--enhanced .product-current-price{display:block;font-size:2rem;font-weight:800;line-height:1.05;color:hsl(var(--fg))}
.product-card--enhanced .product-current-price small{font-size:0.875rem;font-weight:500;color:hsl(var(--muted-fg));margin-left:0.35rem}
.product-card--enhanced .product-trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.75rem}
.product-card--enhanced .product-trust-item{display:grid;justify-items:center;gap:0.35rem;padding:0.75rem 0.5rem;background:hsl(var(--muted)/0.6);border:1px solid hsl(var(--border));border-radius:0.8rem;text-align:center}
.product-card--enhanced .product-trust-item span{font-size:0.65rem;font-weight:600;color:hsl(var(--muted-fg))}
.product-card--enhanced .product-trust-item svg{color:hsl(var(--primary))}
.product-card--enhanced .product-actions{display:grid;gap:0.625rem;margin-top:auto;padding-top:0.25rem}
.product-card--enhanced .product-action{display:flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.8rem 1rem;border-radius:0.8rem;font-size:0.875rem;font-weight:700}
.product-card--enhanced .product-action--whatsapp{background:hsl(var(--green));color:hsl(0 0% 100%)}
.product-card--enhanced .product-action--telegram{background:hsl(200 100% 40%);color:hsl(0 0% 100%)}
.product-card--enhanced .product-action--buy{background:hsl(25 95% 55%);color:hsl(0 0% 100%)}
.product-card--enhanced .product-verification{display:flex;align-items:center;justify-content:center;gap:0.35rem;font-size:0.75rem;color:hsl(var(--muted-fg));margin-top:0.15rem}
.product-card--enhanced .product-verification svg{color:hsl(var(--green))}
.empty-state{padding:4rem 1rem;text-align:center;color:hsl(var(--muted-fg));font-size:0.95rem}
@media(max-width:767px){.page-actions{flex-direction:column}.page-actions .btn{width:100%;justify-content:center}.form-row{grid-template-columns:1fr}.contact-form-card{padding:1.5rem}}

/* ═══ ACCESSIBILITY FIXES ═══ */

/* Focus styles for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

.faq-question:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  padding: 8px 16px;
  z-index: 100;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Ensure link text in footer has sufficient contrast */
.site-footer a {
  color: hsl(0 0% 80%);
}
.site-footer a:hover {
  color: hsl(0 0% 100%);
}
.footer-col h4 {
  color: hsl(0 0% 95%);
}

/* Product rating stars - sr-only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══ SINGLE PRODUCT DETAIL (pixel-perfect) ═══ */
.product-detail-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem 3rem !important;
}
@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr !important;
  }
}
#vbb-qty::-webkit-inner-spin-button,
#vbb-qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#vbb-qty {
  -moz-appearance: textfield;
}
