/* Custom Premium Styling for Rujuta Corporation WordPress Theme */

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #0d9488 100%);
    --accent-teal: #14b8a6;
    --accent-cyan: #06b6d4;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: 16px;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(6, 182, 212, 0.4);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════════════════════════════
   CARD LOADING ANIMATION SYSTEM
   ══════════════════════════════════════════════════════════════

   1. Skeleton shimmer — while JS injects dynamic content
   2. Card entrance — staggered 3D rise on scroll into view
   3. Glint sweep — one-shot light sweep across each card
   ══════════════════════════════════════════════════════════════ */

/* ── 1. SKELETON SHIMMER ── */
@keyframes skeletonPulse {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-card {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 800px 100%;
    animation: skeletonPulse 1.6s ease-in-out infinite;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

/* Skeleton tile (square for brand grid) */
.skeleton-brand-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.skeleton-image-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 800px 100%;
    animation: skeletonPulse 1.6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.06);
}

.skeleton-text-line {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 800px 100%;
    animation: skeletonPulse 1.6s ease-in-out infinite;
}

.skeleton-text-line.wide  { width: 80%; }
.skeleton-text-line.short { width: 50%; }

/* Skeleton product card (tall) */
.skeleton-product-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 380px;
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
}

.skeleton-product-media {
    height: 180px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(6,182,212,0.06) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 800px 100%;
    animation: skeletonPulse 1.6s ease-in-out infinite;
}

.skeleton-product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Skeleton feature card */
.skeleton-feature-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 340px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.skeleton-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        rgba(6,182,212,0.06) 25%,
        rgba(6,182,212,0.14) 50%,
        rgba(6,182,212,0.06) 75%
    );
    background-size: 800px 100%;
    animation: skeletonPulse 1.6s ease-in-out infinite;
}

/* ── 2. CARD ENTRANCE ANIMATION ── */

/* Rise keyframe — GPU-composited opacity + translateY only (no filter/scale for performance) */
@keyframes cardRise {
    0%   {
        opacity: 0;
        transform: translateY(40px);
    }
    60%  {
        opacity: 1;
        transform: translateY(-4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── 3. GLINT SWEEP ── */
@keyframes glintSweep {
    0%   { left: -100%; }
    100% { left: 150%; }
}

/* Base state — all animated cards start hidden */
.card-animate {
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

/* Lit state — added by JS Intersection Observer */
.card-animate.card-lit {
    animation: cardRise 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Glint pseudo-element sweeps across after card rises */
.card-animate.card-lit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 70%
    );
    animation: glintSweep 0.9s ease-out 0.55s forwards;
    pointer-events: none;
    z-index: 10;
}

/* Stagger delays — applied inline via JS data-delay attribute */
.card-animate[data-delay="1"] { animation-delay: 0.06s; }
.card-animate[data-delay="2"] { animation-delay: 0.12s; }
.card-animate[data-delay="3"] { animation-delay: 0.18s; }
.card-animate[data-delay="4"] { animation-delay: 0.24s; }
.card-animate[data-delay="5"] { animation-delay: 0.30s; }
.card-animate[data-delay="6"] { animation-delay: 0.36s; }
.card-animate[data-delay="7"] { animation-delay: 0.42s; }
.card-animate[data-delay="8"] { animation-delay: 0.48s; }
.card-animate[data-delay="9"] { animation-delay: 0.54s; }
.card-animate[data-delay="10"]{ animation-delay: 0.60s; }

/* Skeleton brand grid layout matches real grid */
.skeleton-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 1200px) { .skeleton-brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .skeleton-brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .skeleton-brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }



/* ── THEME TOGGLE BUTTON ── */
.theme-toggle-wp {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.theme-toggle-wp:hover {
    background: rgba(255,255,255,0.15);
    transform: rotate(20deg) scale(1.1);
}
.theme-toggle-wp svg {
    width: 18px;
    height: 18px;
    transition: opacity 0.2s ease, transform 0.3s ease;
}
/* Default: show sun (dark mode), hide moon */
.theme-toggle-wp .icon-sun  { display: block; }
.theme-toggle-wp .icon-moon { display: none;  }
/* Light mode: hide sun, show moon */
body.light-theme .theme-toggle-wp .icon-sun  { display: none;  }
body.light-theme .theme-toggle-wp .icon-moon { display: block; }
body.light-theme .theme-toggle-wp {
    border-color: rgba(0,0,0,0.15);
    background: rgba(0,0,0,0.06);
    color: #0f172a;
}

/* ── FULL LIGHT THEME OVERRIDES ── */
body.light-theme {
    --bg-primary:    #ffffff;
    --bg-secondary:  #f8fafc; /* slate-50 */
    --bg-tertiary:   #f1f5f9; /* slate-100 */
    --glass-bg:      rgba(255, 255, 255, 0.75);
    --glass-border:  rgba(15, 23, 42, 0.08);
    --text-primary:  #0f172a; /* slate-900 */
    --text-secondary:#475569; /* slate-700 */
    --text-muted:    #64748b; /* slate-500 */
    --border-color:  rgba(15, 23, 42, 0.08);
    background-color:#f8fafc !important;
    background: #f8fafc !important;
    color: #0f172a;
}

/* Page background */
body.light-theme #page,
body.light-theme .site-content { background: #f8fafc !important; }

/* Header */
body.light-theme .custom-header-wp {
    background: rgba(255,255,255,0.92) !important;
    border-bottom-color: rgba(0,0,0,0.08) !important;
}
body.light-theme .nav-menu-wp a { color: #0f172a !important; }
body.light-theme .nav-menu-wp a:hover { color: #06b6d4 !important; }
body.light-theme .btn-quote-wp {
    background: var(--accent-gradient);
    color: #fff !important;
}

/* Section titles & text */
body.light-theme .section-title-wp,
body.light-theme h1, body.light-theme h2,
body.light-theme h3, body.light-theme h4 { color: #0f172a !important; }
body.light-theme .section-subtitle-wp,
body.light-theme p { color: #475569; }

/* Product / brand cards */
body.light-theme .product-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
body.light-theme .product-title { color: #0f172a !important; }
body.light-theme .product-description { color: #475569 !important; }
body.light-theme .product-tag {
    background: rgba(0,0,0,0.05);
    color: #475569;
    border-color: rgba(0,0,0,0.08);
}
body.light-theme .brand-badge {
    background: rgba(6,182,212,0.1);
    border-color: rgba(6,182,212,0.3);
    color: #06b6d4;
}

/* Certificates & testimonials cards */
body.light-theme .certificates-card,
body.light-theme .testimonials-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* Features/trust cards */
body.light-theme .feature-card-wp {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
}
body.light-theme .feature-title-wp { color: #0f172a !important; }
body.light-theme .feature-desc-wp  { color: #475569 !important; }

/* Brand Showcase & Ticker Light Theme Corrections */
body.light-theme .brand-showcase-section-wp {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
body.light-theme .brand-ticker-wp {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
body.light-theme .ticker-item-wp {
    color: #64748b !important;
}

/* Premium Light Footer */
body.light-theme footer,
body.light-theme .custom-footer-wp {
    background: #f8fafc !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
}
body.light-theme footer a,
body.light-theme .custom-footer-wp a {
    color: #475569 !important;
}
body.light-theme footer a:hover,
body.light-theme .custom-footer-wp a:hover {
    color: #06b6d4 !important;
}
body.light-theme footer .widget-title,
body.light-theme .custom-footer-wp .widget-title {
    color: #0f172a !important;
}
body.light-theme .custom-footer-wp p,
body.light-theme .custom-footer-wp span,
body.light-theme .custom-footer-wp div {
    color: #475569 !important;
}

/* Floating widgets */
body.light-theme .floating-contact-wp .widget-mail-wp {
    background: #f1f5f9;
    border-color: rgba(0,0,0,0.1);
    color: #3b82f6 !important;
}

/* Buttons */
body.light-theme .btn-secondary,
body.light-theme a.btn-secondary {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.15) !important;
    color: #0f172a !important;
}
body.light-theme .btn-secondary:hover,
body.light-theme a.btn-secondary:hover {
    background: rgba(6,182,212,0.08);
    color: #06b6d4 !important;
}

/* Scroll-video section stays dark (intentional) */
body.light-theme .scroll-video-section-wp { background: #000; }


/* 1. Homepage Certificates Card Showcase */
.certificates-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 480px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cert-header-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-cyan);
}

.cert-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal);
}

.cert-pulse-led {
    width: 8px;
    height: 8px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
    animation: ledPulse 2s infinite;
}

@keyframes ledPulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; box-shadow: 0 0 12px var(--accent-teal); }
    100% { opacity: 0.4; }
}

.cert-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary) !important;
}

.cert-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.cert-preview-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.cert-file-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.cert-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-details {
    flex-grow: 1;
}

.cert-title {
    color: var(--text-primary) !important;
}

.cert-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0 0 6px 0;
}

.cert-action-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-teal);
}

/* Layout container — 3 boxes in one row */
.certs-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 991px) {
    .certs-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 550px;
    }
}

/* Testimonials Card (matches .certificates-card exactly in layout and look) */
.testimonials-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

/* Specific styling for testimonials elements */
.testimonials-card .cert-status-badge.google-badge {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.testimonials-card .google-pulse {
    background-color: #eab308;
    box-shadow: 0 0 8px #eab308;
    animation: ledPulseYellow 2s infinite;
}

@keyframes ledPulseYellow {
    0% { opacity: 0.4; }
    50% { opacity: 1; box-shadow: 0 0 12px #eab308; }
    100% { opacity: 0.4; }
}

/* Testimonials Slider/Carousel Styles */
.testimonial-slides {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-quote {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.45;
    font-style: italic;
    margin: 0 0 6px 0;
}

.testimonial-author {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.testimonial-slide-dots {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 10px;
}

.testimonial-slide-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-slide-dots .dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 5px var(--accent-cyan);
}

/* Trust Stats Row Infographic */
.trust-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.trust-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-teal);
    flex-shrink: 0;
}

/* 2. Shop Page Brand category grid */
.brand-grid-section-wp {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
}

.brand-grid-wp {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.brand-tile-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform var(--transition-fast);
}

.brand-tile-image-wrapper-wp {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    background: #1a2233;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-tile-image-wp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-tile-info-wp {
    margin-top: 10px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.brand-tile-name-wp {
    display: block;
    margin-bottom: 1px;
}

.brand-tile-count-wp {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hover effects */
.brand-tile-wp:hover .brand-tile-image-wrapper-wp {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.brand-tile-wp:hover .brand-tile-image-wp {
    transform: scale(1.05);
}

.brand-tile-wp:hover .brand-tile-info-wp {
    color: var(--accent-teal);
}

@media (max-width: 1200px) {
    .brand-grid-wp { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .brand-grid-wp { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .brand-grid-wp { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* 3. Global Floating widgets */
/* Hide Wayra plugin's standalone bubble — we handle WhatsApp in our own bar */
.wayra-coc-floating-button,
.wayra-coc-floating {
    display: none !important;
}

/* 3. Global Floating widgets — all three in one row, bottom-right */
.floating-contact-wp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 9999;
    align-items: center;
}

.float-widget-wp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    color: white !important;
}

.float-widget-wp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.float-widget-wp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.widget-call-wp { background: #3b82f6; }
.widget-mail-wp { background: #ffffff; color: #3b82f6 !important; border: 1px solid rgba(0, 0, 0, 0.05); }
.widget-whatsapp-wp { background: #25d366; }

/* Tooltip — appears above the button */
.widget-tooltip-wp {
    position: absolute;
    bottom: 62px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10, 10, 30, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.float-widget-wp:hover .widget-tooltip-wp {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Stagger pop-in animation */
.floating-contact-wp .float-widget-wp:nth-child(1) { animation: floatPopIn 0.4s 0.1s both; }
.floating-contact-wp .float-widget-wp:nth-child(2) { animation: floatPopIn 0.4s 0.2s both; }
.floating-contact-wp .float-widget-wp:nth-child(3) { animation: floatPopIn 0.4s 0.3s both; }

@keyframes floatPopIn {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Scroll Video & Animations Override for Homepage (WP integration) --- */
.scroll-video-section-wp {
    position: relative;
    width: 100%;
    height: 200vh; /* Scrub space: 2 full viewports to prevent empty black space */
    background-color: #000000;
    overflow: visible;
    z-index: 10;
}

.scroll-video-sticky-wp {
    position: sticky;
    top: 80px; /* Offset for fixed header */
    height: calc(100vh - 80px);
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

#scroll-video-wp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain; /* Avoid cropping out video */
    pointer-events: none;
    z-index: 1;
}

.video-overlay-tint-wp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 95%);
    pointer-events: none;
}

.scroll-video-overlay-left-wp {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.brand-text-container-wp {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 460px;
    pointer-events: none;
    min-height: 280px;
}

.brand-text-slide-wp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Glassmorphism card per slide */
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    /* Smooth fade+slide transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-text-slide-wp.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-slide-title-wp {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 12px;
}

.gradient-text-wp {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-slide-bullets-wp {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.brand-slide-bullets-wp li {
    font-size: 0.95rem;
    color: #94a3b8;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.brand-slide-bullets-wp li::before {
    content: "•";
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Brand Ticker styles */
.brand-ticker-wp {
    background: #090d16;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-track-wp {
    display: inline-block;
    animation: scrollTicker-wp 25s linear infinite;
}

.ticker-item-wp {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    margin: 0 40px;
    letter-spacing: 2px;
}

@keyframes scrollTicker-wp {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Trust features section */
.trust-section-wp {
    background: #020617;
    padding: 80px 0;
    color: var(--text-primary);
}

.container-wp {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-wp {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary) !important;
    margin-bottom: 10px;
}

.section-subtitle-wp {
    text-align: center;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.features-grid-wp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-wp {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: transform 0.3s ease;
}

.feature-card-wp:hover {
    transform: translateY(-4px);
}

.feature-icon-wp {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.feature-icon-wp svg {
    width: 24px;
    height: 24px;
}

.feature-title-wp {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary) !important;
}

.feature-desc-wp {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Infographics inside cards */
.feature-infographic-wp {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row-layout-wp {
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.icon-circle-wp {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cyan-glow-wp {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-cyan);
}

.teal-glow-wp {
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: var(--accent-teal);
}

.infographic-title-wp {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.infographic-desc-wp {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.color-cyan-wp { color: var(--accent-cyan); }
.color-teal-wp { color: var(--accent-teal); }

/* Chatbot mockup inside card */
.chat-mockup-wp {
    padding: 10px;
    font-size: 0.7rem;
}

.chat-header-wp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.chat-dot-wp {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.chat-messages-wp {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-bubble-incoming-wp {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px 6px 6px 0;
    align-self: flex-start;
    max-width: 90%;
    color: var(--text-primary);
}

.chat-bubble-outgoing-wp {
    background: #25d366;
    color: #000;
    padding: 4px 8px;
    border-radius: 6px 6px 0 6px;
    align-self: flex-end;
    max-width: 90%;
    font-weight: 500;
}

/* Reviews mockup */
.text-center-wp {
    text-align: center;
}

.stars-wp {
    color: #fbbc04;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.stars-rating-text-wp {
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--accent-cyan);
    margin-bottom: 2px;
}

.stars-quote-wp {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Stats Counter display */
.stats-row-wp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    text-align: center;
}

.stat-number-wp {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
}

.stat-label-wp {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Certificates Display section */
.certs-section-wp {
    background: #020617;
    padding: 60px 0 80px 0;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .features-grid-wp { grid-template-columns: repeat(2, 1fr); }
    .scroll-video-overlay-left-wp { width: 60%; left: 5%; }
}

@media (max-width: 640px) {
    /* Hero section — shorter scroll distance on mobile */
    .scroll-video-section-wp { height: 150vh; }
    .scroll-video-sticky-wp { top: 60px; height: calc(100vh - 60px); }

    /* ── OUTER wrapper: this is the actual "blue box" on the left ── */
    .scroll-video-overlay-left-wp {
        position: absolute;
        top: 16px;
        left: 12px;
        width: 55%;              /* takes up left 55% — video visible on right */
        max-width: 220px;        /* never too wide on very small phones */
        max-height: calc(100vh - 100px);
        overflow: hidden;        /* clips children — nothing bleeds outside */
        z-index: 10;
    }

    /* ── INNER container: reset to fill the outer box exactly ── */
    .brand-text-container-wp {
        position: relative !important; /* relative context for absolute slides */
        width: 100% !important;
        height: 100% !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        max-width: none !important;
        min-height: unset !important;
        max-height: none !important;
    }

    /* ── Slide card: fill width, no backdrop blur on mobile ── */
    .brand-text-slide-wp {
        position: absolute !important; /* overlay at top instead of stacking vertically */
        top: 0;
        left: 0;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(5, 12, 28, 0.92) !important;
        padding: 12px 10px;
        overflow: visible;
        width: 100% !important;
    }

    /* Compact title */
    .brand-slide-title-wp {
        font-size: 0.9rem !important;
        line-height: 1.2;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Bullets */
    .brand-slide-bullets-wp {
        max-height: 80px;
        overflow: hidden;
    }

    .brand-slide-bullets-wp li {
        font-size: 0.68rem !important;
        margin-bottom: 3px !important;
        padding-left: 12px !important;
        line-height: 1.3;
    }

    .brand-slide-bullets-wp li::before {
        font-size: 0.9rem;
    }

    /* General grid fixes */
    .features-grid-wp { grid-template-columns: 1fr; }
    .stats-row-wp { grid-template-columns: 1fr; gap: 30px; }

    /* Ticker — pause on mobile to save GPU */
    .ticker-track-wp { animation-duration: 40s; }
}

/* 4. Homepage Brand Showcase Section */
.brand-showcase-section-wp {
    background: #020617;
    padding: 60px 0 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
}

.product-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.15);
}

.product-media {
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.product-media svg {
    width: 70px;
    height: 70px;
    color: var(--accent-cyan);
    transition: transform var(--transition-fast);
}

.product-card:hover .product-media svg {
    transform: scale(1.06);
}

.brand-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary) !important;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0 0 16px 0;
    min-height: 60px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-tag {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

/* ── GLOBAL BUTTON SYSTEM ──
   Fully self-contained button styles. Overrides parent WP theme
   so buttons render correctly on all subpages without theme dependency. */

.btn,
a.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Outfit', 'Inter', sans-serif;
    text-decoration: none !important;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    line-height: 1.4;
    white-space: nowrap;
}

.btn:hover,
a.btn:hover {
    transform: translateY(-1px);
}

/* Primary — solid cyan gradient */
.btn-primary,
a.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    border-color: transparent;
}

.btn-primary:hover,
a.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
    color: #ffffff !important;
}

/* WooCommerce Add to Cart button on product cards */
button.wc-add-to-cart-btn {
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

button.wc-add-to-cart-btn:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
    transform: translateY(-1px);
}

button.wc-add-to-cart-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Secondary — ghost outline style */
.btn-secondary,
a.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.btn-secondary svg,
a.btn-secondary svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
a.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4 !important;
    border-color: rgba(6, 182, 212, 0.5) !important;
}

.btn-secondary:hover svg,
a.btn-secondary:hover svg {
    stroke: #06b6d4 !important;
}

.btn-secondary,

a.btn-secondary,
button.btn-secondary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.btn-secondary svg,
a.btn-secondary svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
a.btn-secondary:hover {
    color: #06b6d4 !important;
    border-color: rgba(6, 182, 212, 0.5) !important;
}

.btn-secondary:hover svg,
a.btn-secondary:hover svg {
    stroke: #06b6d4 !important;
}

.product-actions .btn-secondary {

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary) !important;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.product-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.product-actions .btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.product-actions .btn-whatsapp:hover {
    transform: translateY(-1px);
}

/* Price List button — amber/gold, distinct from Catalog & Inquire */
.product-actions .btn-pricelist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24 !important;
    padding: 8px 6px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.product-actions .btn-pricelist svg {
    width: 13px;
    height: 13px;
    stroke: #fbbf24;
    flex-shrink: 0;
}

.product-actions .btn-pricelist:hover {
    background: rgba(251, 191, 36, 0.22);
    border-color: rgba(251, 191, 36, 0.7);
    color: #fde68a !important;
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* --- GLOBAL DARK HEADER & FOOTER STYLE --- */

.custom-header-wp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 99999;
    display: flex;
    align-items: center;
}

.header-container-wp {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link-wp {
    display: flex;
    align-items: center;
    height: 80px;
    overflow: hidden;
    text-decoration: none;
}

.logo-video-wp {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link-wp:hover .logo-video-wp {
    transform: scale(1.05);
}

.nav-menu-wp {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.nav-menu-wp a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                text-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu-wp a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan, #06b6d4), var(--accent-teal, #14b8a6));
    border-radius: 2px;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--accent-cyan, #06b6d4), 0 0 15px var(--accent-teal, #14b8a6);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu-wp a:hover {
    color: #ffffff;
    transform: scale(1.08) translateY(-1px);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.8), 
                 0 0 15px rgba(6, 182, 212, 0.5), 
                 0 0 25px rgba(6, 182, 212, 0.3);
}

.nav-menu-wp a:hover::after {
    width: 100%;
}

.nav-menu-wp a.active {
    color: var(--accent-cyan, #06b6d4);
    text-shadow: 0 0 6px rgba(6, 182, 212, 0.4);
}

.nav-menu-wp a.active::after {
    width: 100%;
    background: var(--accent-cyan, #06b6d4);
    box-shadow: 0 0 6px var(--accent-cyan, #06b6d4);
}


.header-actions-wp {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-quote-wp {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-quote-wp:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

/* Custom Footer styles */
.custom-footer-wp {
    background: #090d16;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 30px 0;
    color: #94a3b8;
    font-family: 'Outfit', sans-serif;
}

.footer-grid-wp {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-wp h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-wp p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.footer-links-wp {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-wp a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.footer-links-wp a:hover {
    color: var(--accent-cyan, #06b6d4);
}

.footer-contact-list-wp {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item-wp {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.footer-contact-item-wp svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan, #06b6d4);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Phone / contact number list */
.footer-phone-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-phone-list a {
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s ease;
}

.footer-phone-list a:hover {
    color: var(--accent-cyan, #06b6d4);
}


.footer-bottom-wp {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

/* Burger menu for responsive */
.burger-wp {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.burger-wp span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    display: block;
}

@media (max-width: 768px) {
    .nav-menu-wp {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0b0f19;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding-bottom: 80px;
        z-index: 1000;
    }
    
    .nav-menu-wp.mobile-active {
        display: flex;
    }
    
    .burger-wp {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1010;
        padding: 0;
    }

    .burger-wp span {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .burger-wp.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-wp.toggle .line2 {
        opacity: 0;
    }
    
    .burger-wp.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .footer-grid-wp {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .btn-quote-wp {
        display: none;
    }
}

/* --- BLUEPRINT PRELOADER ANIMATION --- */

#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary, #0b0f19);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.85, 0, 0.15, 1), transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

#site-preloader.preloader-hidden {
    opacity: 0;
    transform: translateY(-100vh);
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.preloader-stage {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.preloader-icon.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Specific product colors */
.preloader-icon.lug-icon {
    color: #ff8c42; /* Copper neon */
}

.preloader-icon.gland-icon {
    color: #ffd166; /* Brass neon */
}

.preloader-icon.tie-icon {
    color: #06b6d4; /* Nylon Cyan neon */
}

.preloader-icon.pvc-icon {
    color: #10b981; /* PVC Emerald neon */
}

.preloader-icon.connector-icon {
    color: #a855f7; /* Connector Purple neon */
}

.preloader-icon.hooter-icon {
    color: #f43f5e; /* Hooter Rose neon */
}

.preloader-icon.tower-icon {
    color: #3b82f6; /* Tower Blue neon */
}

/* SVG Blueprint Stroke animation */
.preloader-icon .draw-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.preloader-icon.active .draw-path {
    animation: draw-stroke-ani 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes draw-stroke-ani {
    to {
        stroke-dashoffset: 0;
    }
}

.preloader-icon .draw-path-dashed {
    opacity: 0;
    transition: opacity 0.5s ease 0.8s;
}

.preloader-icon.active .draw-path-dashed {
    opacity: 0.6;
}

/* Preloader branding */
.preloader-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.preloader-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-height: 20px;
    transition: color 0.3s ease;
}

/* Progress indicator styles */
.preloader-progress-wrapper {
    width: 240px;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 16px;
    position: relative;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    box-shadow: 0 0 8px var(--accent-cyan);
    transition: width 0.1s linear;
}

.preloader-percent {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 10px;
}

/* Circuit board grid overlay inside loader */
.preloader-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 70%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    z-index: 1;
}

/* body reveal animation when preloader finishes */
body.preloader-done {
    overflow-y: auto;
}

/* PRODUCT IMAGE STYLING FOR BRAND CARDS */
.product-image,
.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast, 0.25s ease);
}

.product-card:hover .product-image,
.product-card:hover .product-video {
    transform: scale(1.04);
}

/* MAP LINK IN FOOTER */
.footer-map-link {
    display: block;
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-fast, 0.25s ease), transform var(--transition-fast, 0.25s ease), box-shadow var(--transition-fast, 0.25s ease);
}

.footer-map-link:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.footer-map-link img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

/* --- GLOBAL LAYOUT & TYPOGRAPHY OVERRIDES --- */
body {
    background-color: #0b0f19 !important;
}

.site {
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Force premium B2B Outfit / Inter Typography globally */
body, p, a, h1, h2, h3, h4, h5, h6, li, span, input, button, select, textarea {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* ──────────────────────────────────────────────────
   GLOBAL HEADING COLOR FIX
   All h1/h2/h3 default to white on dark background.
   Individual overrides can refine further.
   ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

/* ──────────────────────────────────────────────────
   LED NEON SWITCH-ON ANIMATION
   Applied to .section h2 and .page-title headings.
   Simulates a neon tube powering on — subtle flicker
   followed by a steady cyan glow.
   ────────────────────────────────────────────────── */

/* Keyframes: Smooth fade-in bloom entrance */
@keyframes neonSwitchOn {
    0%   {
        opacity: 0;
        color: #94a3b8;
        text-shadow: none;
    }
    40%  {
        opacity: 0.7;
        color: #e2e8f0;
        text-shadow: 0 0 20px rgba(6,182,212,0.3), 0 0 40px rgba(6,182,212,0.1);
    }
    70%  {
        opacity: 1;
        color: #ffffff;
        text-shadow: 0 0 14px rgba(6,182,212,0.5), 0 0 30px rgba(6,182,212,0.2);
    }
    100% {
        opacity: 1;
        color: #ffffff;
        text-shadow: 0 0 8px rgba(6,182,212,0.25), 0 0 18px rgba(6,182,212,0.1);
    }
}

/* Slow breathing glow — inhale / exhale */
@keyframes neonGlow {
    0%   { text-shadow: 0 0 6px rgba(6,182,212,0.18), 0 0 14px rgba(6,182,212,0.06); }
    50%  { text-shadow: 0 0 14px rgba(6,182,212,0.38), 0 0 30px rgba(6,182,212,0.16), 0 0 50px rgba(20,184,166,0.06); }
    100% { text-shadow: 0 0 6px rgba(6,182,212,0.18), 0 0 14px rgba(6,182,212,0.06); }
}

/* Base state: invisible until triggered */
.section h2,
.section h3,
.page-header .page-title,
.cta-banner .cta-title,
.about-timeline-title,
.section-title-wp {
    opacity: 0;
    transition: none;
}

.section h2.neon-lit,
.section h3.neon-lit,
.page-header .page-title.neon-lit,
.cta-banner .cta-title.neon-lit,
.about-timeline-title.neon-lit,
.section-title-wp.neon-lit {
    animation:
        neonSwitchOn 1.8s ease-out forwards,
        neonGlow 5s ease-in-out 1.8s infinite;
    opacity: 1;
    color: #ffffff !important;
}

/* Gradient headings keep their gradient but still get the glow timing */
.section h2 .gradient-text.neon-lit,
.page-title .gradient-text {
    opacity: 1 !important; /* gradient spans always visible within animated parent */
}



/* Ensure CSS position: sticky works on homepage by overriding parent overflow rules */
body.home, 
body.home #page, 
body.home #content, 
body.home .site-content, 
body.home .site,
body.home #primary,
body.home #main {
    overflow: visible !important;
}

/* --- SUBPAGES SPECIFIC LAYOUTS & COMPONENTS --- */

/* Page Headers (for subpages) */
.page-header {
    padding: 140px 0 60px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Price Lists & Catalogs Dashboard grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.catalog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.catalog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
}

/* Brand Card Media/Photos in Catalogs/Pricelist page */
.catalog-card-media {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.catalog-card-img,
.catalog-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.catalog-card:hover .catalog-card-img,
.catalog-card:hover .catalog-card-video {
    transform: scale(1.06);
}

.catalog-card-media-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(6, 182, 212, 0.85);
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.catalog-card-brand-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.catalog-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.catalog-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.catalog-card-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--text-primary);
}

.catalog-card-brand {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.catalog-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.5;
}

.catalog-card .btn {
    width: 100%;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-detail-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.contact-detail-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.contact-detail-text a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
    color: var(--accent-cyan);
}

.map-container {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Specific Styles for Shop layouts */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.filter-panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-title-sub {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    font-weight: 700;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 8px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.filter-item:hover, .filter-item.active {
    color: var(--accent-cyan);
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.filter-item.active .filter-checkbox {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.filter-item.active .filter-checkbox::after {
    content: '✓';
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.sort-dropdown {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

.sort-dropdown:focus {
    border-color: var(--accent-cyan);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.page-btn {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.page-btn:hover, .page-btn.active {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: white;
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.product-grid-shop {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .filter-panel {
        position: relative;
        top: 0;
    }
}

/* WooCommerce Brand Grid on Products page */
.brand-grid-section {
    padding: 60px 0 40px 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.brand-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.brand-tile-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    background: #1a2233;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-tile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-tile-info {
    margin-top: 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.brand-tile-name {
    display: block;
    margin-bottom: 2px;
}

.brand-tile-count {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hover effects */
.brand-tile:hover .brand-tile-image-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.brand-tile:hover .brand-tile-image {
    transform: scale(1.05);
}

.brand-tile:hover .brand-tile-info {
    color: var(--accent-teal);
}

@media (max-width: 1200px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* =============================================
   HIGH-CONTRAST SUBPAGE TEXT OVERRIDES
   Ensure legibility on dark backgrounds
   ============================================= */

/* About Us - force high-contrast text */
.page-about-us .page-title,
.page-about-us h1, .page-about-us h2, .page-about-us h3, .page-about-us h4 {
    color: #ffffff !important;
}

.page-about-us .page-desc,
.page-about-us p,
.page-about-us li {
    color: #cbd5e1 !important;
}

.page-about-us strong {
    color: #ffffff !important;
}

/* About Us gradient text (banner headings) */
.gradient-text {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shop page - force high-contrast text */
.page-shop .page-title,
.page-shop h1, .page-shop h2, .page-shop h3 {
    color: #ffffff !important;
}

.page-shop p, .page-shop span {
    color: #cbd5e1;
}

.brand-tile-name-wp {
    color: #f1f5f9 !important;
    display: block;
    margin-bottom: 1px;
    font-size: 0.95rem;
    font-weight: 700;
}

.brand-tile-count-wp {
    color: #94a3b8 !important;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Section headers injected by JS on shop page */
.brand-grid-section-wp h2 {
    color: #ffffff !important;
    font-weight: 800;
}

.brand-grid-section-wp p {
    color: #94a3b8 !important;
}

/* Filter panel text */
.filter-title-sub {
    color: #f1f5f9 !important;
}

.filter-item {
    color: #94a3b8 !important;
}

/* About Us infographic section */
.about-infographic-wp {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    margin-top: 40px;
}

.about-infographic-wp img {
    width: 100%;
    display: block;
}

/* Timeline infographic section on About Us */
.about-timeline-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.about-timeline-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 48px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    padding-top: 40px;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #14b8a6);
}

.timeline-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    border: 3px solid #0b0f19;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.4);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-dot svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    stroke: currentColor;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 6px;
}

.timeline-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-top: 0;
    }
    .timeline-grid::before { display: none; }
}

/* About Us Layout specific classes */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cta-banner {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(13, 148, 136, 0.15) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: var(--card-shadow);
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 30px;
        text-align: center;
        flex-direction: column;
    }
    .cta-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .cta-actions .btn {
        width: 100%;
    }
}

.btn-whatsapp {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #000000 !important;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: #20ba59 !important;
    border-color: #20ba59 !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}


/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE STYLES — all pages
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── General containers ── */
    .container, .container-wp {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 40px 0;
    }

    /* ── Disable ALL backdrop-filter on mobile for performance ── */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Compensate: give glass elements a solid fallback background */
    .glass-card, .contact-info-card, .catalog-card,
    .brand-text-slide-wp, .search-box-wrapper,
    .feature-card-wp, .cert-card-wp {
        background: rgba(10, 18, 35, 0.92) !important;
    }

    /* ── Disable glint sweep on mobile (GPU cost not worth it) ── */
    .card-animate.card-lit::after {
        display: none !important;
    }

    /* ── Simplify neon animation to plain fade on mobile ── */
    .section h2.neon-lit,
    .section h3.neon-lit,
    .page-header .page-title.neon-lit,
    .cta-banner .cta-title.neon-lit,
    .about-timeline-title.neon-lit,
    .section-title-wp.neon-lit {
        animation: mobileFadeIn 0.8s ease-out forwards !important;
        text-shadow: none !important;
    }

    @keyframes mobileFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Page headers ── */
    .page-header {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .page-desc {
        font-size: 0.92rem;
    }

    /* ── Shop page ── */
    .brand-grid-wp {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .section-title-wp {
        font-size: 1.4rem;
    }

    /* ── Product grid (WooCommerce) ── */
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    /* ── Catalog / Pricelist grid ── */
    .catalog-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .catalog-card {
        padding: 20px;
    }

    /* ── Contact page ── */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* ── About page timeline ── */
    .about-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .about-timeline-title {
        font-size: 1.3rem;
    }

    /* ── Buttons — stack vertically, fill width ── */
    .cta-actions,
    div[style*="display: flex"][style*="gap"] {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 11px 18px;
    }

    /* ── Stats row ── */
    .stats-row-wp {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* ── Feature cards ── */
    .features-grid-wp {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .feature-card-wp {
        padding: 20px;
    }

    /* ── Products grid on homepage ── */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    /* ── Search box ── */
    .search-box-wrapper {
        max-width: 100% !important;
    }

    /* ── Ticker speed ── */
    .ticker-track-wp {
        animation-duration: 45s;
    }

    /* ── Reduce card animation distance on mobile ── */
    .card-animate {
        transform: translateY(20px);
    }

    @keyframes cardRise {
        0%   { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .card-animate.card-lit {
        animation: cardRise 0.45s ease-out forwards;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .page-title {
        font-size: 1.5rem !important;
    }

    .brand-grid-wp {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .stats-row-wp {
        grid-template-columns: 1fr !important;
    }

    .brand-tile-info-wp {
        font-size: 0.75rem;
    }

    .ticker-item-wp {
        font-size: 0.85rem;
        margin: 0 20px;
    }
}

/* ── Brand Authorization Certificate Grid ── */
.brand-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}
.brand-cert-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(6,182,212,0.18);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.brand-cert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6,182,212,0.5);
    box-shadow: 0 8px 30px rgba(6,182,212,0.15);
}
.brand-cert-thumb {
    width: 100%;
    height: 110px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.brand-cert-info {
    padding: 12px 14px;
}
.brand-cert-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 3px 0;
}
.brand-cert-meta {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.brand-cert-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #06b6d4;
    letter-spacing: 0.3px;
}
@media (max-width: 480px) {
    .brand-cert-grid { grid-template-columns: 1fr; }
}

/* ── Brand Cert Grid V2 — small A4 thumbnails in a row ── */
.brand-cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    justify-content: flex-start;
}
.brand-cert-card {
    flex: 0 0 calc(25% - 8px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.brand-cert-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 24px rgba(6,182,212,0.25);
}
.brand-cert-thumb {
    width: 100%;
    padding-bottom: 141%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.brand-cert-info {
    display: none;
}
/* Click hint overlay */
.brand-cert-card::after {
    content: "View";
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(6,182,212,0.9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.brand-cert-card:hover::after { opacity: 1; }
@media (max-width: 600px) {
    .brand-cert-card { flex: 0 0 calc(50% - 6px); }
}

/* ── Rightlock Manufacturing Facility Card ── */
.mfg-facility-card .cert-header-tag {
    background: rgba(251,146,60,0.15);
    color: #fb923c;
    border-color: rgba(251,146,60,0.3);
}
.mfg-photo-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    margin: 14px 0 16px 0;
}
.mfg-photo-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.mfg-photo-wrapper:hover .mfg-photo-img { transform: scale(1.04); }
.mfg-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mfg-photo-wrapper:hover .mfg-photo-overlay { opacity: 1; }
.mfg-photo-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    background: rgba(251,146,60,0.85);
    padding: 8px 18px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.mfg-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mfg-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.mfg-highlight-icon {
    font-size: 0.6rem;
    color: #06b6d4;
    margin-top: 5px;
    flex-shrink: 0;
}
.mfg-highlight-item strong {
    display: block;
    font-size: 0.88rem;
    color: #f1f5f9;
    font-weight: 700;
    margin-bottom: 2px;
}
.mfg-highlight-item p {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* ── Brand Cert Grid — 5 A4 thumbnails in a row, img-based ── */
.brand-cert-grid {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: nowrap;
}
.brand-cert-card {
    flex: 1 1 0;
    min-width: 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.brand-cert-card:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 22px rgba(6,182,212,0.3);
    border-color: rgba(6,182,212,0.4);
    z-index: 2;
}
.brand-cert-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
    max-height: 160px;
}
/* small "view" hint on hover */
.brand-cert-card::after {
    content: "\25B6";
    position: absolute;
    bottom: 4px;
    right: 5px;
    background: rgba(6,182,212,0.88);
    color: #fff;
    font-size: 0.55rem;
    padding: 2px 5px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.2s;
}
.brand-cert-card:hover::after { opacity: 1; }

/* ── Shop Now CTA Strip ── */
.shop-now-strip-wp {
    background: linear-gradient(90deg, rgba(6,182,212,0.12) 0%, rgba(139,92,246,0.10) 100%);
    border-top: 1px solid rgba(6,182,212,0.2);
    border-bottom: 1px solid rgba(6,182,212,0.2);
    padding: 14px 24px;
}
.shop-strip-inner-wp {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.shop-strip-text-wp {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.shop-now-btn-wp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(6,182,212,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-now-btn-wp:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(6,182,212,0.5);
}
@media (max-width: 600px) {
    .shop-strip-inner-wp { justify-content: center; text-align: center; }
    .shop-strip-text-wp { font-size: 0.82rem; }
}

/* ── Stacked Certificate Deck ── */
.cert-stack-deck {
    position: relative;
    width: 160px;
    height: 220px;
    margin: 18px auto 4px;
}
.cert-stack-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 198px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    /* Each card offset to the right so logo peeks out */
    transform: translateX(calc(var(--stack-index) * 16px)) translateY(calc(var(--stack-index) * 3px));
    z-index: calc(10 - var(--stack-index));
}
.cert-stack-item:hover {
    transform: translateX(calc(var(--stack-index) * 16px)) translateY(calc(var(--stack-index) * 3px - 8px)) scale(1.04);
    box-shadow: 0 10px 28px rgba(6,182,212,0.35);
    border-color: rgba(6,182,212,0.5);
}
/* Braco (top card) sits at origin */
.cert-stack-top {
    transform: translateX(0) translateY(0) !important;
    z-index: 20 !important;
    box-shadow: 0 6px 20px rgba(6,182,212,0.25);
    border-color: rgba(6,182,212,0.3);
}
.cert-stack-top:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 14px 32px rgba(6,182,212,0.5) !important;
}
.cert-stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    pointer-events: none;
}

/* ── Rightlock simple bullet list ── */
.mfg-simple-list {
    list-style: none;
    padding: 10px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mfg-simple-list li {
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 500;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}
.mfg-simple-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-size: 0.55rem;
    top: 4px;
}

/* ── Real Certificate Composite Image ── */
.cert-composite-wrapper {
    margin-top: 14px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cert-composite-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(6,182,212,0.25);
    border-color: rgba(6,182,212,0.3);
}
.cert-composite-img {
    width: 100%;
    height: auto;
    display: block;
}
.cert-composite-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #94a3b8;
    font-size: 0.72rem;
    text-align: center;
    padding: 16px 8px 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.cert-composite-wrapper:hover .cert-composite-hint {
    opacity: 1;
}

/* ── Equal height 3-column grid ── */
.certs-grid-container {
    align-items: stretch !important;
}
.certs-grid-container > div {
    display: flex;
    flex-direction: column;
}
.certificates-card,
.mfg-facility-card,
.testimonials-card {
    flex: 1;
    height: 100%;
    box-sizing: border-box;
}

/* Remove pointer/hover from cert composite (no click) */
.cert-composite-wrapper {
    cursor: default !important;
}
.cert-composite-wrapper:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important;
    border-color: rgba(255,255,255,0.08) !important;
}

/* ── Make factory photo fill remaining card space ── */
.mfg-facility-card {
    display: flex;
    flex-direction: column;
}
.mfg-photo-wrapper {
    flex: 1;
    display: flex;
}
.mfg-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 200px;
}

/* ── FORCE equal height all 3 cards — permanent fix ── */
.certs-grid-container {
    align-items: stretch !important;
    grid-auto-rows: 1fr;
}
.certificates-card,
.mfg-facility-card,
.testimonials-card {
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
/* Make testimonials inner content scroll if needed */
.testimonials-card .testimonial-slides-wrapper {
    overflow: hidden;
}
/* Make cert composite image shrink to fit */
.cert-composite-img {
    max-height: 300px;
    object-fit: contain;
}
/* Make factory photo fixed height */
.mfg-photo-wrapper {
    max-height: 300px;
    overflow: hidden;
}
.mfg-photo-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ── PERMANENT FIXED HEIGHT — all 3 cards locked same size ── */
.certificates-card,
.mfg-facility-card,
.testimonials-card {
    height: 490px !important;
    max-height: 490px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* ── WooCommerce Single Product Contrast Enhancements ── */
.single-product .summary.entry-summary {
    color: var(--text-secondary) !important;
}
.single-product .summary.entry-summary h1.product_title {
    color: var(--text-primary) !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}
.single-product .summary.entry-summary p,
.single-product .summary.entry-summary div,
.single-product .summary.entry-summary span,
.single-product .summary.entry-summary a {
    color: #cbd5e1 !important; /* slate-300: extremely readable light grey */
}
.single-product .summary.entry-summary a:hover {
    color: var(--accent-cyan) !important;
}
.single-product .summary.entry-summary .price span {
    color: var(--accent-cyan) !important;
}
.single-product .summary.entry-summary .price del span {
    color: var(--text-muted) !important;
    text-decoration: line-through;
}
.single-product .summary.entry-summary .stock {
    color: #f43f5e !important; /* rose-500 for out of stock */
    font-weight: 600;
}
.single-product .summary.entry-summary .stock.in-stock {
    color: #10b981 !important; /* emerald-500 for in stock */
}

/* ── WooCommerce Sidebar Premium Search & Category Styling ── */
/* Sidebar widget containers */
.widget_product_search,
.widget_search {
    margin-bottom: 30px !important;
}

/* Search form wrap */
.woocommerce-product-search,
.search-form {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Input search field */
.woocommerce-product-search .search-field,
.woocommerce-product-search input[type="search"],
.search-form .search-field,
.search-form input[type="search"],
.search-form input[type="text"] {
    width: 100% !important;
    height: 50px !important;
    padding: 12px 105px 12px 24px !important; /* Plenty of room for pill search button on the right */
    border-radius: 30px !important;
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    outline: none !important;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast) !important;
    box-sizing: border-box !important;
}

/* Input placeholder color */
.woocommerce-product-search .search-field::placeholder,
.woocommerce-product-search input[type="search"]::placeholder,
.search-form .search-field::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.8 !important;
}

/* Input focus state */
.woocommerce-product-search .search-field:focus,
.woocommerce-product-search input[type="search"]:focus,
.search-form .search-field:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15) !important;
}

/* Hide default screen reader labels or style them away */
.woocommerce-product-search label,
.search-form label {
    margin-bottom: 0 !important;
    width: 100% !important;
    display: block !important;
}

/* Submit button as a premium pill inside the input */
.woocommerce-product-search button[type="submit"],
.woocommerce-product-search input[type="submit"],
.search-form button[type="submit"],
.search-form input[type="submit"],
.search-form .search-submit {
    position: absolute !important;
    right: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 38px !important;
    line-height: 38px !important;
    padding: 0 20px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, #06b6d4, #14b8a6) !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    width: auto !important;
    z-index: 2 !important;
}

.woocommerce-product-search button[type="submit"]:hover,
.woocommerce-product-search input[type="submit"]:hover,
.search-form button[type="submit"]:hover,
.search-form input[type="submit"]:hover {
    transform: translateY(-50%) scale(1.02) !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
}

.woocommerce-product-search button[type="submit"]:active,
.woocommerce-product-search input[type="submit"]:active {
    transform: translateY(-50%) scale(0.98) !important;
}

/* Style widget titles */
.widget-title,
.widgettitle {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
}

/* Category Dropdown and other select elements */
.widget select,
select.dropdown_product_cat {
    width: 100% !important;
    height: 48px !important;
    padding: 0 40px 0 20px !important;
    border-radius: 30px !important;
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    outline: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306b6d4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 16px !important;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast) !important;
    box-sizing: border-box !important;
}

.widget select:focus,
select.dropdown_product_cat:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15) !important;
}

.widget select option {
    background-color: #0f172a !important;
    color: #ffffff !important;
    padding: 10px !important;
}

/* WooCommerce Select2 override in case WooCommerce styles the dropdown using select2 */
.select2-container--default .select2-selection--single,
.select2-container .select2-selection--single {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 30px !important;
    height: 48px !important;
    outline: none !important;
    transition: border-color var(--transition-fast) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-primary) !important;
    line-height: 46px !important;
    padding-left: 20px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 15px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--accent-cyan) transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--accent-cyan) transparent !important;
    border-width: 0 5px 6px 5px !important;
}
.select2-dropdown {
    background-color: #0f172a !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}
.select2-results__option {
    color: #ffffff !important;
    padding: 10px 20px !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--accent-cyan) !important;
    color: #000000 !important;
}

/* ── Light Theme Sidebar widget search & categories ── */
body.light-theme .woocommerce-product-search .search-field,
body.light-theme .woocommerce-product-search input[type="search"],
body.light-theme .search-form .search-field,
body.light-theme .search-form input[type="search"],
body.light-theme .search-form input[type="text"] {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #0f172a !important;
}
body.light-theme .woocommerce-product-search .search-field:focus,
body.light-theme .search-form .search-field:focus {
    border-color: #0891b2 !important;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15) !important;
}
body.light-theme .woocommerce-product-search button[type="submit"],
body.light-theme .search-form button[type="submit"] {
    background: linear-gradient(135deg, #0891b2, #0d9488) !important;
    color: #ffffff !important;
}
body.light-theme .widget select,
body.light-theme select.dropdown_product_cat {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #0f172a !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230891b2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
}
body.light-theme .widget select option {
    background-color: #ffffff !important;
    color: #0f172a !important;
}
body.light-theme .select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}
body.light-theme .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #0f172a !important;
}
body.light-theme .select2-dropdown {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}
body.light-theme .select2-results__option {
    color: #0f172a !important;
}

/* ── WooCommerce Tabs Glassmorphism Styles ── */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 40px !important;
    border-top: none !important;
}

/* Tabs navigation bar */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    padding: 0 0 10px 0 !important;
    margin: 0 0 20px 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

/* Tab button items */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px 12px 0 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all var(--transition-fast) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
    text-shadow: none !important;
    transition: color var(--transition-fast) !important;
    text-decoration: none !important;
    border: none !important;
}

/* Inactive tabs hover */
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover:not(.active) a {
    color: var(--text-primary) !important;
}

/* Active tab state */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(6, 182, 212, 0.4) rgba(6, 182, 212, 0.4) transparent rgba(6, 182, 212, 0.4) !important;
    box-shadow: 0 -4px 12px rgba(6, 182, 212, 0.1) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--accent-cyan) !important;
}

/* Active tab bottom line override (fix WooCommerce core line overlay) */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    display: none !important;
}

/* Tab Panels (Content wrapper) */
.woocommerce div.product .woocommerce-tabs .panel.entry-content {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    margin-top: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    color: #cbd5e1 !important; /* slate-300: highly readable */
}

/* Tab panel headings */
.woocommerce div.product .woocommerce-tabs .panel h2 {
    color: var(--text-primary) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px !important;
}

.woocommerce div.product .woocommerce-tabs .panel p {
    color: #cbd5e1 !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

/* Additional information table attributes styling */
.woocommerce div.product .woocommerce-tabs .shop_attributes {
    border: none !important;
    margin: 0 !important;
    width: 100% !important;
}
.woocommerce div.product .woocommerce-tabs .shop_attributes tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.woocommerce div.product .woocommerce-tabs .shop_attributes tr:last-child {
    border-bottom: none !important;
}
.woocommerce div.product .woocommerce-tabs .shop_attributes th {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    padding: 12px 16px !important;
    width: 200px !important;
    border: none !important;
    font-size: 0.95rem !important;
}
.woocommerce div.product .woocommerce-tabs .shop_attributes td {
    background: transparent !important;
    color: #cbd5e1 !important;
    padding: 12px 16px !important;
    border: none !important;
    font-size: 0.95rem !important;
    font-style: normal !important;
}

/* Review form & comments list within panels */
.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
}
.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li img.avatar {
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
}
.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text {
    border: none !important;
    padding: 0 !important;
    margin: 0 0 0 80px !important;
}
.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text p.meta {
    color: var(--text-primary) !important;
    font-size: 0.9rem !important;
}
.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text .description {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}
.woocommerce div.product .woocommerce-tabs #respond input[type="text"],
.woocommerce div.product .woocommerce-tabs #respond textarea {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    outline: none !important;
}
.woocommerce div.product .woocommerce-tabs #respond input[type="submit"] {
    background: linear-gradient(135deg, #06b6d4, #14b8a6) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
}

/* ── Light Theme Tabs Overrides ── */
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #64748b !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs li:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.04) !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs li:hover:not(.active) a {
    color: #0f172a !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border-color: rgba(6, 182, 212, 0.4) rgba(6, 182, 212, 0.4) #ffffff rgba(6, 182, 212, 0.4) !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #0891b2 !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs .panel.entry-content {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    color: #475569 !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs .panel h2 {
    color: #0f172a !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs .panel p {
    color: #475569 !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs .shop_attributes tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs .shop_attributes th {
    color: #0f172a !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs .shop_attributes td {
    color: #475569 !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li {
    background: rgba(0, 0, 0, 0.01) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text p.meta {
    color: #0f172a !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text .description {
    color: #475569 !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs #respond input[type="text"],
body.light-theme .woocommerce div.product .woocommerce-tabs #respond textarea {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #0f172a !important;
}
body.light-theme .woocommerce div.product .woocommerce-tabs #respond input[type="submit"] {
    background: linear-gradient(135deg, #0891b2, #0d9488) !important;
}

/* ==========================================================================
   B2B MODERN SHOPPING CART STYLE & DROPDOWN
   ========================================================================== */

.header-cart-wp {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
}

.header-cart-wp a.cart-content {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    position: relative;
    text-decoration: none;
}

.header-cart-wp a.cart-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.header-cart-wp a.cart-content .count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart-wp a.cart-content i.fa-shopping-bag {
    font-size: 16px;
    color: inherit;
}

.header-cart-wp a.cart-content .cart-count-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    display: block;
}

.header-cart-wp a.cart-content .cart-total-amount {
    display: none !important;
}

/* Dropdown styling */
.header-cart-dropdown-wp {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    width: 320px;
    z-index: 10000;
    background: var(--bg-secondary) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cart-wp:hover .header-cart-dropdown-wp {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* WooCommerce Mini Cart Overrides */
.header-cart-dropdown-wp .widget_shopping_cart {
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

.header-cart-dropdown-wp .widget_shopping_cart_content {
    display: block;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
    max-height: 280px;
    overflow-y: auto;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    list-style: none !important;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:not(.remove) {
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item .quantity {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444 !important;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    transition: background 0.2s;
    text-decoration: none !important;
}

.header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove:hover {
    background: rgba(239, 68, 68, 0.2);
}

.header-cart-dropdown-wp p.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.header-cart-dropdown-wp p.woocommerce-mini-cart__buttons {
    display: flex;
    gap: 8px;
    margin: 0;
}

.header-cart-dropdown-wp p.woocommerce-mini-cart__buttons a.button {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    text-decoration: none;
}

.header-cart-dropdown-wp p.woocommerce-mini-cart__buttons a.button.wc-forward:not(.checkout) {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.header-cart-dropdown-wp p.woocommerce-mini-cart__buttons a.button.checkout {
    background: var(--accent-gradient);
    color: #ffffff;
}

.header-cart-dropdown-wp p.woocommerce-mini-cart__buttons a.button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Light theme support for header cart */
body.light-theme .header-cart-wp a.cart-content {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.06);
    color: #0f172a;
}

body.light-theme .header-cart-wp a.cart-content:hover {
    background: rgba(0, 0, 0, 0.1);
}

body.light-theme .header-cart-dropdown-wp {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

body.light-theme .header-cart-dropdown-wp ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:not(.remove) {
    color: #0f172a;
}

body.light-theme .header-cart-dropdown-wp p.woocommerce-mini-cart__total {
    color: #0f172a;
}

body.light-theme .header-cart-dropdown-wp p.woocommerce-mini-cart__buttons a.button.wc-forward:not(.checkout) {
    background: #f1f5f9;
    color: #0f172a;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Disable parents orange sliding block hover effects on custom buttons */
.theme-toggle-wp::after,
.burger-wp::after,
.qty-btn::after,
.wc-add-to-cart-btn::after,
.btn-quote-wp::after,
.header-cart-wp a.cart-content::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ==========================================================================
   LIGHT MODE CONTRAST OVERRIDES
   ========================================================================== */

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #0f172a !important;
    text-shadow: none !important;
}

body.light-theme p,
body.light-theme span,
body.light-theme li,
body.light-theme td,
body.light-theme th,
body.light-theme label,
body.light-theme a {
    color: #334155;
}

body.light-theme .about-timeline-title {
    color: #0f172a !important;
}
body.light-theme .about-timeline-text {
    color: #475569 !important;
}
body.light-theme .about-timeline-node {
    border-color: #cbd5e1 !important;
    background-color: #f8fafc !important;
}

body.light-theme .product_title,
body.light-theme .price,
body.light-theme .woocommerce-tabs h2,
body.light-theme .woocommerce-tabs p,
body.light-theme .woocommerce-tabs li a {
    color: #0f172a !important;
}
body.light-theme .woocommerce-tabs .active a {
    border-bottom: 2px solid var(--accent-teal) !important;
}

body.light-theme th.woocommerce-product-attributes-item__label {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}
body.light-theme td.woocommerce-product-attributes-item__value {
    color: #334155 !important;
}

body.light-theme .about-us-milestone-card {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

body.light-theme .cta-section-wp {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%) !important;
    border: 1px solid rgba(13, 148, 136, 0.1) !important;
}
body.light-theme .cta-title-wp {
    color: #0f172a !important;
}
body.light-theme .cta-desc-wp {
    color: #334155 !important;
}

body.light-theme select,
body.light-theme input {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border-color: rgba(0,0,0,0.15) !important;
}

body.light-theme .brand-tile-image-wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

body.light-theme .brand-tile-info {
    color: #0f172a !important;
}

body.light-theme .brand-text-slide-wp {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(0,0,0,0.1) !important;
}

body.light-theme .brand-text-slide-wp h3,
body.light-theme .brand-text-slide-wp p {
    color: #0f172a !important;
}

/* Custom Light Mode Fixes for Legibility and Contrast */
body.light-theme .trust-section-wp {
    background: #ffffff !important;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
body.light-theme .trust-section-wp .section-title-wp {
    color: #0f172a !important;
}
body.light-theme .trust-section-wp .section-subtitle-wp {
    color: #475569 !important;
}
body.light-theme .feature-card-wp {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
}
body.light-theme .feature-title-wp {
    color: #0f172a !important;
}
body.light-theme .feature-desc-wp {
    color: #475569 !important;
}
body.light-theme .feature-infographic-wp {
    background: #f1f5f9 !important;
}
body.light-theme .infographic-title-wp {
    color: #0d9488 !important; /* teal */
}
body.light-theme .infographic-desc-wp {
    color: #475569 !important;
}
body.light-theme .filter-title-sub {
    color: #0f172a !important;
}
body.light-theme .filter-item {
    color: #475569 !important;
}
body.light-theme .filter-panel {
    background-color: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
body.light-theme .catalog-card {
    background-color: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
body.light-theme .catalog-card-title {
    color: #0f172a !important;
}
body.light-theme .catalog-card-desc {
    color: #475569 !important;
}
body.light-theme .brand-grid-section-wp h2 {
    color: #0f172a !important;
}
body.light-theme .brand-grid-section-wp p {
    color: #475569 !important;
}
body.light-theme .brand-tile-name-wp {
    color: #0f172a !important;
}
body.light-theme .brand-tile-count-wp {
    color: #475569 !important;
}
body.light-theme .brand-tile-info-wp {
    color: #0f172a !important;
}
body.light-theme .page-shop p, 
body.light-theme .page-shop span {
    color: #334155 !important;
}


