/*
Theme Name: SJShah Business Theme
Theme URI: https://textilespinningspares.com
Author: BRUsoft
Author URI: https://brusoft.in
Description: Custom WooCommerce catalog theme for Sumanlal J Shah & Co — Textile Spinning Mill Spares. Built by BRUsoft (Code.Cloud.Content.)
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://brusoft.in
Text Domain: sjshah-theme
Tags: woocommerce, catalog, industrial, textile, custom-logo, custom-menu
WC requires at least: 7.0
WC tested up to: 9.6
*/

/* ============================================
   CSS DESIGN SYSTEM — SJShah Business Theme
   Change these 3 colors + Theme Name for reuse
   ============================================ */
:root {
    /* === PRIMARY BRAND COLORS === */
    --primary: #0B3D91;
    --primary-dark: #082C6B;
    --primary-light: #1565C0;
    --accent: #FF8F00;
    --accent-hover: #F57C00;
    --accent-light: #FFF3E0;
    --highlight: #E53935;

    /* === NEUTRALS === */
    --dark: #0A1929;
    --text: #1E293B;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --light: #F8FAFC;
    --white: #FFFFFF;

    /* === WHATSAPP === */
    --whatsapp: #25D366;
    --whatsapp-hover: #1DA851;

    /* === TYPOGRAPHY === */
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* === SPACING === */
    --gap: 1.5rem;
    --gap-sm: 0.75rem;
    --gap-lg: 3rem;
    --gap-xl: 5rem;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;

    /* === SHADOWS === */
    --shadow-sm: 0 1px 3px rgba(10,25,41,0.06), 0 1px 2px rgba(10,25,41,0.04);
    --shadow: 0 4px 6px rgba(10,25,41,0.05), 0 2px 4px rgba(10,25,41,0.03);
    --shadow-md: 0 10px 25px rgba(10,25,41,0.08), 0 4px 10px rgba(10,25,41,0.04);
    --shadow-lg: 0 20px 50px rgba(10,25,41,0.12), 0 8px 20px rgba(10,25,41,0.06);

    /* === TRANSITIONS === */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.topbar a {
    color: rgba(255,255,255,0.85);
    transition: color var(--duration) var(--ease);
}
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; align-items: center; gap: 1.25rem; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar .badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.15rem 0.6rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.topbar-icon { margin-right: 0.35rem; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.5rem;
}
.site-logo img {
    max-height: 55px;
    width: auto;
}
.site-logo .logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.site-logo .logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav li { position: relative; }
.main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    transition: color var(--duration) var(--ease);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: var(--primary);
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    transform: scaleX(1);
}

/* Dropdown */
.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--duration) var(--ease);
    z-index: 100;
    padding: 0.5rem 0;
}
.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .sub-menu a {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
}
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white) !important;
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}
.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}
.btn svg, .btn img { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--gap-xl) 0;
    overflow: hidden;
}
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    min-height: 350px;
    text-align: center;
}
.hero-image-placeholder span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,143,0,0.15);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,143,0,0.25);
    letter-spacing: 0.03em;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
    line-height: 1.15;
    font-weight: 800;
}
.hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 560px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat .label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--gap-xl) 0;
}
.section-alt {
    background: var(--light);
}
.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .overline {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    margin-bottom: 0.75rem;
}
.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   CATEGORY GRID (HOME)
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
}
.category-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
    .category-grid-4col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .category-grid-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .category-grid-4col { grid-template-columns: 1fr; }
}
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.category-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.category-card:hover .category-card-img img {
    transform: scale(1.05);
}
.category-card-img .count {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.category-card-body {
    padding: 1.25rem;
}
.category-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}
.category-card-body h3 a {
    color: var(--dark);
}
.category-card-body h3 a:hover {
    color: var(--primary);
}
.category-card-body p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}
.category-card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.category-card .arrow-link:hover { color: var(--accent); }
.category-card .arrow-link svg { width: 16px; height: 16px; transition: transform var(--duration) var(--ease); }
.category-card:hover .arrow-link svg { transform: translateX(4px); }

/* ============================================
   PRODUCT GRID (Archive/Category)
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap);
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.product-card-img {
    height: 220px;
    overflow: hidden;
    background: var(--light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img img {
    transform: scale(1.04);
}
.product-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body .product-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.product-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.product-card-body h3 a { color: var(--dark); }
.product-card-body h3 a:hover { color: var(--primary); }
.product-card-body .product-excerpt {
    color: var(--text-light);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}
.product-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}
.product-card-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* ============================================
   SINGLE PRODUCT
   ============================================ */
.product-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}
.product-page-main {
    min-width: 0;
}

/* Sidebar */
.product-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.sidebar-widget-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow-y: auto;
}
.sidebar-category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    line-height: 1.3;
}
.sidebar-category-list li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}
.sidebar-category-list li.current a {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}
.sidebar-category-list li.current a .cat-count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.cat-count {
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 0.7rem;
    padding: 0.1rem 0.45rem;
    border-radius: 50px;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.sidebar-cta {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.sidebar-cta .sidebar-widget-title {
    color: var(--white);
    border-bottom-color: var(--accent);
}

.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}
.product-gallery {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    min-height: 400px;
}
.product-gallery img {
    max-height: 450px;
    object-fit: contain;
}
.product-info { padding: 1rem 0; }
.product-info .breadcrumb {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}
.product-info .breadcrumb a { color: var(--primary); }
.product-info .breadcrumb a:hover { color: var(--accent); }
.product-info h1 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.product-info .sku {
    display: inline-block;
    background: var(--light);
    color: var(--text-light);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
}
.product-info .short-desc {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.product-info .cta-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.product-info .cta-group .btn {
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

/* Product Attributes / Specs */
.product-attributes {
    margin-top: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.product-attributes h3 {
    background: var(--light);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}
.product-attributes table {
    width: 100%;
    border-collapse: collapse;
}
.product-attributes th,
.product-attributes td {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}
.product-attributes th {
    width: 40%;
    color: var(--text-light);
    font-weight: 600;
    background: var(--white);
}
.product-attributes td {
    color: var(--text);
    font-weight: 500;
}
.product-attributes tr:last-child th,
.product-attributes tr:last-child td { border-bottom: none; }

/* Product Tabs (Long desc, FAQ) */
.product-tabs {
    margin-top: 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.product-tabs .tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}
.product-tabs .tab-nav button {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-light);
    transition: all var(--duration) var(--ease);
    border-bottom: 2.5px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-tabs .tab-nav button.active,
.product-tabs .tab-nav button:hover {
    color: var(--primary);
    background: var(--white);
    border-bottom-color: var(--accent);
}
.product-tabs .tab-content {
    padding: 2rem;
}
.product-tabs .tab-panel {
    display: none;
}
.product-tabs .tab-panel.active {
    display: block;
}

/* ============================================
   FEATURES / USP GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
}
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.feature-card .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}
.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--gap-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,143,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: all var(--duration) var(--ease);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: var(--gap-xl) 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-col p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    transition: all var(--duration) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero .breadcrumb {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--accent); }

.page-content {
    padding: 3rem 0;
}
.page-content .content-area {
    max-width: 800px;
    margin: 0 auto;
}
.page-content h2 { margin: 2rem 0 1rem; }
.page-content h3 { margin: 1.5rem 0 0.75rem; }
.page-content ul, .page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.page-content li { margin-bottom: 0.5rem; }

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.milestone {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.milestone .number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.milestone .label {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.contact-info-card {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}
.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}
.woocommerce nav.woocommerce-pagination {
    margin-top: 2rem;
}
.woocommerce nav.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
    transition: all var(--duration) var(--ease);
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Hide default WC cart/price elements for catalog mode */
.woocommerce .price,
.woocommerce-cart,
.woocommerce-checkout,
.cart-contents,
.woocommerce .add_to_cart_button,
.single_add_to_cart_button,
.woocommerce .cart,
.wc-block-mini-cart { display: none !important; }

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related-products {
    padding: 3rem 0;
    background: var(--light);
}
.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb-wrap {
    background: var(--light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8125rem;
}
.breadcrumb-wrap a { color: var(--primary); }
.breadcrumb-wrap a:hover { color: var(--accent); }
.breadcrumb-wrap .sep {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.pagination-wrap a, .pagination-wrap span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--duration) var(--ease);
}
.pagination-wrap a:hover,
.pagination-wrap span.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   SEARCH
   ============================================ */
.product-search-form {
    display: flex;
    gap: 0;
    max-width: 500px;
}
.product-search-form input[type="search"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--duration) var(--ease);
}
.product-search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--primary);
}
.product-search-form button {
    padding: 0.7rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--duration) var(--ease);
}
.product-search-form button:hover { background: var(--primary-dark); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: background var(--duration) var(--ease);
}
.faq-question:hover { background: var(--light); }
.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--duration) var(--ease);
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-page-wrapper { grid-template-columns: 1fr; }
    .product-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .single-product-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --gap-xl: 3rem; }

    .topbar-left, .topbar-right { font-size: 0.75rem; }

    /* Mobile Nav */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: var(--white);
        z-index: 2000;
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a {
        padding: 0.85rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    .main-nav a::after { display: none; }
    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding-left: 1rem;
        display: none;
    }
    .main-nav .submenu-open > .sub-menu {
        display: block;
    }

    .menu-toggle { display: flex; z-index: 2001; }
    .header-cta { display: none; }

    .hero { padding: 2.5rem 0 3rem; }
    .hero-split { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image { order: -1; }
    .hero-image img { max-height: 300px; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-milestones { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .category-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .product-card-img { height: 160px; }
    .product-card-body { padding: 0.85rem; }
    .product-card-body h3 { font-size: 0.85rem; }
    .product-card-actions { flex-direction: column; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
