
/* --- Silky Smooth Scroll & Responsive Viewport Optimizations --- */
html {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

/* Sticky Header System (Pinned on Scroll with 5px Gap below Alert Bar) */
.faras-sticky-header-container {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 5px !important;
    margin-top: 5px !important;
    z-index: 9999 !important;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #01532d;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8c6427;
}

/* Faras Fans Modern Navbar & Mobile Sheet Menu CSS */

/* --- Dropdown System on Desktop --- */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
}

/* Invisible bridge extending down from trigger to dropdown menu so mouse never leaves hover area */
.nav-dropdown-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -25px;
    right: -25px;
    height: 25px;
    background: transparent;
    z-index: 999;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px 12px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff !important;
    transition: all 0.15s ease;
    border-radius: 9999px;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-wrapper:hover .nav-dropdown-trigger,
.nav-dropdown-wrapper.open .nav-dropdown-trigger {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown-trigger svg.dropdown-chevron {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger svg.dropdown-chevron,
.nav-dropdown-wrapper.open .nav-dropdown-trigger svg.dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 230px;
    background: #ffffff;
    color: #111827;
    border-radius: 1.15rem;
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.28), 0 6px 16px rgba(1, 83, 45, 0.15);
    border: 1.5px solid rgba(140, 100, 39, 0.3);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Invisible bridge on menu top extending upwards to overlap trigger bridge */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper.open .nav-dropdown-menu {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-divider {
    height: 1px;
    background-color: #f3f4f6;
    margin: 4px 0;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 0.75rem;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937 !important;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background-color: #f0f7ec;
    color: #01532d !important;
    transform: translateX(3px);
}

/* Nav Link Styling */
.nav-item-link {
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
}

.nav-item-link:hover {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item-link.active {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 -2px 0 0 #ffd700;
}

/* --- Right Actions & Track Pill --- */
.btn-track-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-track-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffd700;
    color: #ffd700 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Mobile Hamburger Button (Khurshid Style Circle) --- */
.mobile-nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-nav-toggle-btn:hover,
.mobile-nav-toggle-btn:active {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: scale(1.05);
}

/* --- Responsive Breakpoint Rules --- */
@media (min-width: 768px) {
    /* Desktop: nav links visible, track pill visible, hamburger hidden */
    header nav {
        display: flex !important;
    }
    .mobile-nav-toggle-btn {
        display: none !important;
    }
    .btn-track-pill {
        display: inline-flex !important;
    }
}

@media (max-width: 767.98px) {
    /* Mobile: nav links hidden, track pill hidden, hamburger visible on RIGHT */
    header nav {
        display: none !important;
    }
    .mobile-nav-toggle-btn {
        display: inline-flex !important;
    }
    .btn-track-pill {
        display: none !important;
    }

    /* Move View Cart button 5px up only on mobile */
    .header-cart-btn,
    #headerRightActions a[href*="checkout"],
    #headerRightActions a[aria-label*="Cart"] {
        position: relative !important;
        top: -5px !important;
    }
}

/* --- Mobile Slide-Out Sheet Menu (Exact 1:1 Khurshid Screenshot media_1789047923135.png & media_1789046854144.png) --- */
#mobileMenuBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#mobileMenuBackdrop.active {
    display: block;
    opacity: 1;
}

#mobileMenuDrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    color: #111827;
    z-index: 10001;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
}

#mobileMenuDrawer.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s ease, color 0.15s ease;
    background: transparent;
    width: 100%;
    text-align: left;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: #f0f7ec;
    color: #01532d;
}

.mobile-sub-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f9fafb;
}

.mobile-sub-accordion.open {
    max-height: 450px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 32px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
    transition: all 0.15s ease;
}

.mobile-sub-link:hover {
    color: #01532d;
    background-color: #e5f2e0;
    padding-left: 36px;
}

/* --- BLDC Section & Contact Styling (Matches Khurshid 1:1 Screenshots) --- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

.bldc-pioneers-btn {
    font-family: 'Caveat', 'Brush Script MT', 'Lucida Handwriting', cursive, sans-serif !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    background-color: #edf7eb !important;
    border: 2px solid #01532d !important;
    color: #111827 !important;
    border-radius: 9999px !important;
    padding: 8px 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(1, 83, 45, 0.2) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.bldc-pioneers-btn:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 4px 12px rgba(1, 83, 45, 0.3) !important;
}

.contact-teal-card {
    background-color: #01532d !important;
    border-radius: 1.5rem !important;
    padding: 1.5rem !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    min-height: 160px !important;
}

.contact-teal-link {
    color: #ffff00 !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    word-break: break-word !important;
}

/* --- BULLETPROOF HORIZONTAL 2-COLUMN LAYOUTS (Exact Khurshid 1:1 Match) --- */

/* 1. BLDC Section Horizontal 2-Column Grid */
.bldc-two-col-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
}

@media (min-width: 860px) {
    .bldc-two-col-grid {
        grid-template-columns: 1fr 1.05fr !important;
        gap: 2.5rem !important;
    }
}

.bldc-cards-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.bldc-card {
    border-radius: 1rem !important;
    padding: 1.25rem 1.5rem !important;
    border: 2px solid #1f2937 !important;
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease !important;
}

.bldc-card:hover {
    border-color: #01532d !important;
    box-shadow: 0 4px 12px rgba(1, 83, 45, 0.15) !important;
}

/* 2. Contact Us Horizontal 2-Column Grid (Left: 2x2 cards, Right: Form) */
.contact-two-col-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
}

@media (min-width: 860px) {
    .contact-two-col-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
}

.contact-2x2-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
}

@media (max-width: 480px) {
    .contact-2x2-grid {
        grid-template-columns: 1fr !important;
    }
}

.contact-form-box {
    background-color: #01532d !important;
    border-radius: 1.5rem !important;
    padding: 1.5rem !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

@media (min-width: 640px) {
    .contact-form-box {
        padding: 2rem !important;
    }
}

/* 3. Certificates Horizontal Row (4 in 1 Single Line on Desktop) */
.certificates-four-col-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
}

@media (max-width: 960px) {
    .certificates-four-col-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 520px) {
    .certificates-four-col-grid {
        grid-template-columns: 1fr !important;
    }
}

.cert-badge-card {
    border-radius: 1.5rem !important;
    padding: 1.5rem 1.25rem 1.25rem 1.25rem !important;
    background-color: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    position: relative !important;
    min-height: 380px !important;
    cursor: pointer !important;
    transform-origin: center bottom !important;
}

/* 3D Tilt & Lift on Hover (Odd Cards tilt slightly left) */
.cert-badge-card:hover {
    border-color: #01532d !important;
    box-shadow: 0 20px 38px -6px rgba(1, 83, 45, 0.22), 0 8px 16px -4px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-10px) rotate(-1.2deg) scale(1.025) !important;
    z-index: 10 !important;
}

/* Even Cards tilt slightly right for dynamic alternating balance */
.cert-badge-card:nth-child(even):hover {
    transform: translateY(-10px) rotate(1.2deg) scale(1.025) !important;
}

/* Card Top Pill Badge */
.cert-pill-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background-color: #f0fdf4 !important;
    border: 1.5px solid #bbf7d0 !important;
    border-radius: 9999px !important;
    padding: 5px 14px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: 1.1rem !important;
    transition: all 0.25s ease !important;
}

.cert-badge-card:hover .cert-pill-badge {
    background-color: #dcfce7 !important;
    border-color: #01532d !important;
    color: #01532d !important;
    transform: scale(1.04) !important;
}

.cert-pill-icon-circle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    font-size: 11px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important;
    flex-shrink: 0 !important;
}

/* Card Inner Image Box with soft rounded pastel container */
.cert-inner-img-box {
    width: 100% !important;
    height: 180px !important;
    background-color: #f4f9f9 !important;
    border-radius: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.cert-badge-card:hover .cert-inner-img-box {
    background-color: #ecfdf5 !important;
}

.cert-inner-img-box img {
    max-height: 135px !important;
    max-width: 88% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.cert-badge-card:hover .cert-inner-img-box img {
    transform: scale(1.08) !important;
}

/* PSQCA Pakistan Standards Logo - prominent sizing matching Khurshid */
.cert-psqca-img {
    width: 85% !important;
    max-width: 165px !important;
    height: auto !important;
    max-height: 125px !important;
    object-fit: contain !important;
}

/* Card Bottom Info Text */
.cert-info-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.4rem !important;
    width: 100% !important;
}

.cert-title-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #4b5563 !important;
    line-height: 1.45 !important;
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Verified Badge at bottom with green animation on hover */
.cert-verified-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #0d9488 !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
    margin-top: 2px !important;
}

.cert-verified-badge svg {
    width: 14px !important;
    height: 14px !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.cert-badge-card:hover .cert-verified-badge {
    color: #01532d !important;
    opacity: 1 !important;
    font-weight: 800 !important;
    transform: scale(1.06) !important;
}

.cert-badge-card:hover .cert-verified-badge svg {
    transform: rotate(180deg) scale(1.2) !important;
    color: #01532d !important;
    animation: sparkleGlow 1.2s infinite alternate ease-in-out !important;
}

@keyframes sparkleGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(1, 83, 45, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.8));
    }
}

.contact-input-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
}

@media (max-width: 540px) {
    .contact-input-row {
        grid-template-columns: 1fr !important;
    }
}

/* 3. Global CSS Grid Fallback Utilities for Precompiled Tailwind */
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (min-width: 860px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
    .lg\:col-span-4 { grid-column: span 4 / span 12 !important; }
    .lg\:col-span-5 { grid-column: span 5 / span 12 !important; }
    .lg\:col-span-6 { grid-column: span 6 / span 12 !important; }
    .lg\:col-span-7 { grid-column: span 7 / span 12 !important; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
    .lg\:col-span-4 { grid-column: span 4 / span 12 !important; }
    .lg\:col-span-5 { grid-column: span 5 / span 12 !important; }
    .lg\:col-span-6 { grid-column: span 6 / span 12 !important; }
    .lg\:col-span-7 { grid-column: span 7 / span 12 !important; }
}

/* 4. Luxury 4 Badges Bar (100% Quality Tested, ISO, PSQCA, Savings) */
.badges-flex-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    width: 100% !important;
}

.badge-stat-item {
    flex: 1 1 180px !important;
    text-align: center !important;
    min-width: 140px !important;
    padding: 0.5rem !important;
}

/* 5. Bulletproof Checkout 2-Column Responsive Layout */
.checkout-two-col-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 1024px) {
    .checkout-two-col-grid {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 2.5rem !important;
    }
    .checkout-left-col {
        flex: 1 1 62% !important;
        min-width: 0 !important;
        width: 62% !important;
    }
    .checkout-right-col {
        flex: 0 0 38% !important;
        min-width: 360px !important;
        width: 38% !important;
    }
}

.checkout-form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
}

@media (min-width: 640px) {
    .checkout-form-row {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* 6. Technical Specifications Card (Exact 1:1 Match media_1789054633559.png) */
.tech-specs-card {
    background: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 1.25rem !important;
    padding: 1.75rem 2rem !important;
    box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.04) !important;
    margin: 1.5rem 0 !important;
}

.tech-specs-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.75rem !important;
}

.tech-specs-divider {
    height: 1.5px !important;
    background-color: #1f2937 !important;
    border: none !important;
    margin: 0.5rem 0 1.5rem 0 !important;
}

.tech-specs-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem 2.5rem !important;
}

@media (min-width: 640px) {
    .tech-specs-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

.tech-spec-item {
    font-size: 0.925rem !important;
    line-height: 1.5 !important;
    color: #4b5563 !important;
}

.tech-spec-label {
    font-weight: 800 !important;
    color: #111827 !important;
    margin-right: 0.25rem !important;
}

/* 7. Tracking Order & Stepper Enhancements */
.track-status-pill-badge {
    background: linear-gradient(135deg, #01532d 0%, #01351d 100%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    padding: 6px 18px !important;
    border-radius: 9999px !important;
    display: inline-block !important;
    border: 1.5px solid #10b981 !important;
    box-shadow: 0 4px 12px rgba(1, 83, 45, 0.3) !important;
    letter-spacing: 0.5px !important;
}

.stepper-container-box {
    background: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 1.25rem !important;
    padding: 1.5rem 1rem !important;
    margin: 1.5rem 0 !important;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05) !important;
}

.stepper-track-wrap {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 0.5rem !important;
}

.stepper-bg-bar {
    position: absolute !important;
    top: 24px !important;
    left: 12% !important;
    right: 12% !important;
    height: 6px !important;
    background-color: #e5e7eb !important;
    z-index: 1 !important;
    border-radius: 9999px !important;
}

.stepper-active-bar {
    height: 100% !important;
    background: linear-gradient(90deg, #01532d 0%, #10b981 70%, #b38234 100%) !important;
    border-radius: 9999px !important;
    transition: width 0.4s ease !important;
}

.stepper-step-node {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: 1 1 25% !important;
    text-align: center !important;
}

.stepper-circle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    margin-bottom: 0.625rem !important;
    transition: all 0.3s ease !important;
    background-color: #ffffff !important;
    border: 3px solid #e5e7eb !important;
    color: #9ca3af !important;
}

.stepper-circle.is-done {
    background-color: #01532d !important;
    border-color: #01532d !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(1, 83, 45, 0.35) !important;
}

.stepper-circle.is-active {
    background-color: #b38234 !important;
    border-color: #8c6427 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(179, 130, 52, 0.25), 0 4px 16px rgba(179, 130, 52, 0.4) !important;
    animation: trackPulse 2s infinite ease-in-out !important;
}

.stepper-circle.is-pending {
    background-color: #f9fafb !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
}

@keyframes trackPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(179, 130, 52, 0.25), 0 4px 16px rgba(179, 130, 52, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(179, 130, 52, 0.35), 0 6px 20px rgba(179, 130, 52, 0.6);
    }
}

.stepper-label-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    display: block !important;
}

.stepper-label-desc {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    display: block !important;
    margin-top: 2px !important;
}

.stepper-label-title.is-done {
    color: #01532d !important;
}

.stepper-label-title.is-active {
    color: #8c6427 !important;
}

.stepper-label-title.is-pending {
    color: #9ca3af !important;
}

/* 8. Admin Dialog & Modal Styles */
.admin-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.82) !important;
    backdrop-filter: blur(6px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.admin-modal-overlay.hidden,
#addProductModal.hidden {
    display: none !important;
}

.admin-modal-card {
    background-color: #ffffff !important;
    color: #111827 !important;
    width: 100% !important;
    max-width: 860px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    border-radius: 1.5rem !important;
    border: 1.5px solid #e5e7eb !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6) !important;
    padding: 1.75rem 2rem !important;
    margin: auto !important;
}

.admin-section-card {
    background-color: #f9fafb !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 1rem !important;
    padding: 1.25rem !important;
    margin-bottom: 1rem !important;
}

.fan-color-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.45rem 0.85rem !important;
    border-radius: 0.75rem !important;
    border: 1.5px solid #e5e7eb !important;
    background: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #374151 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    user-select: none !important;
}

.fan-color-chip:hover {
    border-color: #01532d !important;
    background: #f0fdf4 !important;
    transform: translateY(-1px) !important;
}

.fan-color-chip.selected {
    border-color: #01532d !important;
    background: #ecfdf5 !important;
    color: #01532d !important;
    box-shadow: 0 2px 6px rgba(1, 83, 45, 0.15) !important;
}

.fan-color-dot {
    width: 16px !important;
    height: 16px !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(0,0,0,0.2) !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.color-variant-row {
    background-color: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 0.875rem !important;
    padding: 0.75rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.625rem !important;
    margin-bottom: 0.625rem !important;
    transition: border-color 0.2s !important;
}

@media (min-width: 640px) {
    .color-variant-row {
        flex-direction: row !important;
        align-items: center !important;
    }
}

.color-variant-row:hover {
    border-color: #01532d !important;
}

.color-swatch-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 9999px !important;
    border: 2px solid #d1d5db !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
    flex-shrink: 0 !important;
}

/* --- Faras Fans Dedicated Bulletproof Footer Layout --- */
.faras-footer {
    width: 100% !important;
    background-color: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    padding-top: 3.5rem !important;
    padding-bottom: 2.5rem !important;
    box-sizing: border-box !important;
}

.faras-footer-inner {
    width: 100% !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box !important;
}

.faras-footer-main-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    margin-bottom: 2.5rem !important;
    align-items: start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 960px) {
    .faras-footer-main-grid {
        grid-template-columns: 1.25fr 1fr 1.2fr !important;
        gap: 3rem !important;
    }
}

.faras-footer-col-brand {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    min-width: 0 !important;
    width: 100% !important;
}

.faras-footer-col-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    min-width: 0 !important;
    width: 100% !important;
}

@media (max-width: 640px) {
    .faras-footer-col-links {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }
    .faras-footer-col-links h4 {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    .faras-footer-col-links ul {
        gap: 7px !important;
    }
    .faras-footer-col-links a,
    .faras-footer-col-links li,
    .faras-footer-col-links span {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
    }
    .faras-footer-col-links a[href^="mailto:"] {
        font-size: 10px !important;
        word-break: break-all !important;
    }
    .faras-footer-col-brand {
        gap: 0.5rem !important;
    }
    .faras-footer-col-brand p {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    .faras-footer-main-grid {
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

.faras-footer-col-map {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    width: 100% !important;
}

.faras-footer-map-container {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    border: 1.5px solid #e2e8f0 !important;
    background-color: #f1f5f9 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
}

.faras-footer-map-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

.faras-footer-map-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 10 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #01532d !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    border: 1px solid #d1d5db !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.faras-footer-map-badge:hover {
    background: #ffffff !important;
    transform: scale(1.04) !important;
}

.faras-footer-bottom-row {
    border-top: 1px solid #e2e8f0 !important;
    padding-top: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    width: 100% !important;
}

@media (min-width: 640px) {
    .faras-footer-bottom-row {
        flex-direction: row !important;
    }
}

.faras-footer-social-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #4b5563 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.faras-footer-social-btn:hover {
    transform: translateY(-2px) scale(1.08) !important;
}

.faras-footer-social-btn.facebook:hover {
    color: #1877f2 !important;
    border-color: #1877f2 !important;
}

.faras-footer-social-btn.instagram:hover {
    color: #e4405f !important;
    border-color: #e4405f !important;
}

.faras-footer-social-btn.youtube:hover {
    color: #ff0000 !important;
    border-color: #ff0000 !important;
}

.faras-footer-social-btn.tiktok:hover {
    color: #000000 !important;
    border-color: #000000 !important;
}


