/**
 * PC KUMAR — CLEAN 3-COLUMN CARD GRID REFUND STYLESHEET (refund.css)
 * Website Theme: Red Accents (#dc2626), Dark Charcoal (#0f172a), Full Width Single Column (No Sidebar).
 */
 
 
/* ==========================================================================
   PC KUMAR — HEADER, NAVIGATION & MOBILE DRAWER STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & GLOBAL RESETS (REQUIRED FOR HEADER STYLING)
   -------------------------------------------------------------------------- */
:root {
    --bg-surface: #ffffff;
    --bg-hero-black: #050505;

    /* Logo Crimson Red Accent: #dc2626 */
    --theme-red: #dc2626;
    --theme-red-dark: #b91c1c;
    --theme-red-bright: #ef4444;
    --theme-red-glow: rgba(220, 38, 38, 0.4);
    
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-red-hover: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);

    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --border-light: #e2e8f0;
    --border-dark: #cbd5e1;
    --border-red: #dc2626;

    --font-body: 'Poppins', -apple-system, sans-serif;
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. MAIN HEADER NAVBAR & CONTAINERS
   -------------------------------------------------------------------------- */
.navbar {
    position: relative !important;
    top: auto !important;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e2e8f0;
}

.navbar.sticky-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.top-nav-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-header-row {
    padding: 16px 0;
    background: #ffffff;
}

/* --------------------------------------------------------------------------
   3. HEADER SEARCH BAR & RECOMMENDATIONS DROPDOWN
   -------------------------------------------------------------------------- */
.md-search-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: visible !important;
    position: relative !important;
    flex-grow: 1;
    max-width: 580px;
    margin: 0 32px;
    height: 42px;
    transition: border-color 0.2s ease;
}

.md-search-wrapper:focus-within {
    border-color: #dc2626;
}

.md-search-input {
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: none;
    outline: none;
    font-size: 13.5px;
    color: #0f172a;
    font-family: inherit;
}

.md-search-input::placeholder {
    color: #94a3b8;
}

.md-search-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.md-search-btn:hover {
    background: #b91c1c;
}

/* Search Recommendations Dropdown */
.search-recommendations-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
    z-index: 500;
    overflow: hidden;
    display: none;
}

.search-recommendations-dropdown.active {
    display: block;
    animation: dropDownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropDownFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.recommendation-header-label {
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.recommendation-item:last-child {
    border-bottom: none;
}

.recommendation-item:hover,
.recommendation-item.selected {
    background: #f4f5f8;
}

.rec-thumb-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.rec-info-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
    min-width: 0;
}

.rec-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recommendation-item:hover .rec-title {
    color: #dc2626;
}

.rec-cat-badge {
    font-size: 10px;
    font-weight: 400;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rec-price {
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: auto;
    flex-shrink: 0;
}

.recommendation-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.recommendation-footer-link:hover {
    background: #dc2626;
}

/* --------------------------------------------------------------------------
   4. HEADER RIGHT CONTACT & USER ACTIONS
   -------------------------------------------------------------------------- */
.md-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.md-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 26px;
}

.contact-icon-divider {
    width: 1.5px;
    height: 28px;
    background: #cbd5e1;
    margin: 0 2px;
}

.contact-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    font-size: 12px;
    color: #475569;
}

.call-text {
    font-size: 13px;
    font-weight: 700;
}

.email-text {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 700;
}

.btn-header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--theme-red);
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-contact:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-1px);
}

.md-user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.md-action-link {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.md-action-link:hover {
    color: #dc2626;
}

.badge-num {
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   5. SUB HEADER NAVIGATION ROW & CENTER LINKS
   -------------------------------------------------------------------------- */
.md-subnav-row {
    position: relative;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.md-subnav-row .nav-container {
    justify-content: space-between;
}

.btn-md-categories {
    background: #dc2626;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.btn-md-categories:hover {
    background: #b91c1c;
}

.md-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
}

.md-nav-item {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
}

.nav-arrow {
    font-size: 11px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    margin-left: 3px;
}

.nav-dropdown-item:hover .nav-arrow,
.nav-category-dropdown:hover .arrow-ic {
    transform: rotate(180deg);
}

.nav-pill-badge {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 10px;
    line-height: 1.3;
}

.red-pill {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.green-pill {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.yellow-pill {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* --------------------------------------------------------------------------
   6. HEADER DROPDOWN MENUS (CATEGORIES, OUR PRODUCTS & MORE)
   -------------------------------------------------------------------------- */
.nav-dropdown-item,
.nav-category-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Categories Dropdown Container (Left Aligned) */
.category-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 290px;
    max-width: 340px;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.02);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.99);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 500;
    margin-top: 6px;
}

/* Simple Dropdown Container for OUR PRODUCTS & MORE (Centered) */
.simple-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.99);
    width: max-content;
    min-width: 270px;
    max-width: 320px;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.02);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 500;
    margin-top: 6px;
}

/* Invisible Hover Bridge to prevent gap glitches */
.category-dropdown-menu::before,
.simple-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

/* Hover Triggers */
.nav-category-dropdown:hover .category-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-item:hover .simple-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Dropdown Link Item Styling */
.category-dropdown-menu .dropdown-link-item,
.simple-dropdown-menu .dropdown-link-item {
    border-bottom: 1px solid #e2e8f0;
}

.category-dropdown-menu .dropdown-link-item:last-of-type,
.simple-dropdown-menu .dropdown-link-item:last-of-type {
    border-bottom: none;
}

.dropdown-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.drop-text-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    line-height: 1.3;
}

.drop-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
    letter-spacing: -0.1px;
}

.dropdown-link-item:hover .drop-title {
    color: #dc2626;
}

.drop-sub {
    font-size: 11px;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 1px;
}

.dropdown-footer-link {
    margin-top: 8px;
    padding-top: 6px;
}

.drop-all-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drop-all-btn:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.drop-all-btn i {
    transition: transform 0.2s ease;
}

.drop-all-btn:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. FULL-WIDTH MEGA MENU STYLES
   -------------------------------------------------------------------------- */
.nav-dropdown-item.has-mega-menu {
    position: static;
}

.full-width-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-top: 3px solid #dc2626;
    border-radius: 20px;
    padding: 36px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 600;
    overflow: hidden;
}

.mega-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-heading {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #475569;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.mega-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #dc2626;
    border-radius: 2px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-list li a {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    transition: color 0.18s ease, transform 0.18s ease;
    display: inline-block;
}

.mega-list li a:hover {
    color: var(--theme-red);
    font-weight: 600;
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   8. HAMBURGER TOGGLE BUTTON & MOBILE NAVIGATION DRAWER
   -------------------------------------------------------------------------- */
/* Hamburger Toggle Button (Hidden on Desktop, Visible below 1024px) */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 20px;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

/* Mobile Slide-Out Drawer Overlay */
.mobile-nav-drawer {
    position : fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999 !important;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 340;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-drawer-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    background: #f8fafc;
}

.mobile-drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-drawer-close:hover {
    background: var(--theme-red);
    color: #ffffff;
    border-color: var(--theme-red);
}

.mobile-search-wrapper {
    position: relative !important;
    overflow: visible !important;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-search-wrapper .search-recommendations-dropdown {
    left: 24px;
    width: calc(100% - 48px);
    top: calc(100% + 6px);
}

.mobile-search-input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #f1f5f9;
    font-size: 0.85rem;
    outline: none;
}

.mobile-search-input:focus {
    border-color: var(--theme-red);
    background: #ffffff;
}

.mobile-search-icon {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-red);
    font-size: 0.85rem;
}

/* Mobile Segmented Tabs (MENU | CATEGORIES) */
.mobile-tab-nav {
    display: flex;
    align-items: center;
    padding: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-tab-btn {
    flex: 1;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.mobile-tab-btn.active {
    background: #dc2626;
    color: #ffffff;
}

.mobile-tab-content {
    width: 100%;
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    padding: 14px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}

.mobile-nav-item i {
    color: var(--theme-red);
    width: 20px;
    text-align: center;
}

.mobile-nav-item:hover, 
.mobile-nav-item.active {
    background: rgba(220, 38, 38, 0.05);
    color: var(--theme-red);
    padding-left: 30px;
}

/* Mobile Accordion Dropdowns */
.mobile-dropdown-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
}

.mobile-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    transition: max-height 0.35s ease;
}

.mobile-dropdown-item.open .mobile-sub-menu {
    max-height: 1000px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-dropdown-item.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #dc2626;
}

.mobile-drawer-footer {
    padding: 24px;
    margin-top: auto;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.btn-mobile-quote {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: var(--gradient-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-contact-info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE MEDIA QUERIES FOR HEADER
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .nav-container {
        padding-left: 25px;
        padding-right: 25px;
    }
    .md-search-wrapper {
        margin: 0 20px;
    }
    .md-nav-links {
        gap: 18px;
    }
    .md-user-actions {
        gap: 12px;
    }
    .md-action-link {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .nav-container { padding: 0 24px; }
    
    .main-header-row {
        padding: 12px 0;
    }

    .main-header-row .nav-container {
        gap: 15px;
    }

    .brand-logo-img {
        height: 40px;
    }

    .md-search-wrapper {
        flex: 1;
        max-width: none;
        margin: 0;
    }

    .md-header-right {
        gap: 10px;
    }

    .md-contact-info {
        display: none;
    }

    .btn-header-contact span {
        display: none;
    }

    .btn-header-contact {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }

    /* Hide desktop sub-navigation on screens <= 1024px */
    .md-subnav-row {
        display: none;
    }

    /* Show Mobile Hamburger Toggle Button */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid var(--border-light);
        font-size: 1.15rem;
        color: #0f172a;
        cursor: pointer;
        transition: var(--transition);
    }

    .mobile-menu-toggle:hover {
        background: rgba(220, 38, 38, 0.1);
        color: var(--theme-red);
        border-color: var(--theme-red);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header-row {
        padding: 10px 0;
    }

    .main-header-row .nav-container {
        justify-content: space-between;
    }

    .brand-logo-img {
        height: 38px;
    }

    .md-search-wrapper {
        display: none;
    }

    .md-header-right {
        margin-left: auto;
    }

    .btn-header-contact {
        display: none;
    }

    .mobile-nav-drawer {
        display: flex;
    }
}

@media (max-width: 576px) {
    .navbar {
        position: sticky;
        top: 0;
    }

    .main-header-row {
        padding: 9px 0;
    }

    .brand-logo-img {
        height: 34px;
    }
}


.refund-layout-wrapper {
    padding: 60px 0 ;
}



/* SECTION 1: 3-COLUMN FEATURE CARDS GRID */
.policy-cards-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.feature-policy-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background : var(--theme-red);
}


.card-top::before { background: var(--theme-red); }


.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    color : var(--theme-red);
    background : #f4f5f8;
}



.feature-policy-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.card-lead {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

.card-bullets li {
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.card-bullets i {
    margin-top: 3px;
    font-size: 14px;
}

.text-green { color: #16a34a !important; }
.text-red { color: #dc2626 !important; }
.text-dark { color: #0f172a !important; }

/* SECTION 2: 4-STEP RETURN PROCESS TIMELINE STEPPER */
.refund-stepper-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.section-title-bar {
    text-align: center;
    margin-bottom: 32px;
}

.section-title{
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.stepper-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stepper-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.2s ease;
}

.step-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    background: #f4f5f8;
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.stepper-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.stepper-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* SECTION 3: SIDE-BY-SIDE COVERAGE COMPARISON GRID */
.coverage-comparison-section {
    margin-bottom: 50px;
}

.coverage-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.coverage-box {
    border-radius: 16px;
    padding: 32px;
}

.covered-box {
    background: #f4f5f8;
    border: 1px solid var(--border-dark);
}

.not-covered-box {
    background: #fef2f2;
    border: 1px solid var(--theme-red-glow);
}

.coverage-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.coverage-header i {
    font-size: 22px;
}

.coverage-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.coverage-list {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

/* SECTION 4: UNBOXING NOTICE BANNER */
.unboxing-notice-banner {
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 50px;
}

.unboxing-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.unboxing-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.unboxing-content h3 {
    font-size: 15px;
    font-weight: 800;
    color: #713f12;
    margin-bottom: 4px;
}

.unboxing-content p {
    font-size: 14px;
    color: #854d0e;
    line-height: 1.5;
}

/* SECTION 5: CONTACT SUPPORT BAR */
.policy-contact-strip {
    background: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-strip-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-strip-header p {
    font-size: 14px;
    color: #94a3b8;
}

.contact-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-strip-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-strip-contact:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-strip-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-strip-wa:hover {
    background: #1eb956;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Large tablets / small laptops */
@media (max-width: 1200px) {

    .refund-layout-wrapper {
        padding: 50px 0;
    }

    .policy-cards-grid-3col {
        gap: 20px;
    }

    .feature-policy-card {
        padding: 26px 20px;
    }

    .refund-stepper-section {
        padding: 30px 24px;
    }

    .section-title {
        font-size: 42px;
        line-height: 1.1;
    }

    .coverage-box {
        padding: 28px;
    }

    .policy-contact-strip {
        padding: 32px;
    }
}


/* Tablets */
@media (max-width: 1024px) {

    .refund-layout-wrapper {
        padding: 45px 0;
    }

    /* 3 cards -> 2 columns */
    .policy-cards-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    /* 4 steps -> 2 columns */
    .stepper-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Coverage -> 1 column */
    .coverage-grid-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .refund-stepper-section {
        padding: 28px 22px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 38px;
    }

    .coverage-comparison-section {
        margin-bottom: 40px;
    }

    .policy-contact-strip {
        padding: 28px;
    }

    .contact-strip-header {
        flex: 1 1 100%;
    }
}


/* Small tablets */
@media (max-width: 768px) {

    .refund-layout-wrapper {
        padding: 40px 0;
    }

    .policy-cards-grid-3col {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 35px;
    }

    .feature-policy-card {
        padding: 24px 20px;
    }

    .feature-policy-card h3 {
        font-size: 18px;
    }

    .card-lead {
        font-size: 14px;
    }

    .card-bullets li {
        font-size: 14px;
    }

    .refund-stepper-section {
        padding: 26px 18px;
        margin-bottom: 35px;
    }

    .section-title-bar {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .stepper-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stepper-card {
        padding: 18px;
    }

    .coverage-box {
        padding: 24px 20px;
    }

    .coverage-header {
        align-items: flex-start;
    }

    .coverage-header h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .coverage-list {
        font-size: 14px;
    }

    .unboxing-notice-banner {
        padding: 22px;
        margin-bottom: 35px;
    }

    .unboxing-content {
        align-items: flex-start;
    }

    .policy-contact-strip {
        padding: 26px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-strip-header {
        text-align: center;
    }

    .contact-actions-row {
        width: 100%;
        justify-content: center;
    }
}


/* Mobile phones */
@media (max-width: 640px) {

    .refund-layout-wrapper {
        padding: 30px 0;
    }

    .policy-cards-grid-3col {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .feature-policy-card {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .card-icon-box {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 16px;
    }

    .feature-policy-card h3 {
        font-size: 17px;
    }

    .card-lead {
        margin-bottom: 16px;
    }

    .card-bullets {
        gap: 10px;
        padding-top: 15px;
    }

    /* Stepper */
    .refund-stepper-section {
        padding: 22px 16px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .section-title-bar {
        margin-bottom: 22px;
    }

    .section-title {
        font-size: 27px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .stepper-grid-4col {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stepper-card {
        padding: 18px 16px;
    }

    .stepper-card h4 {
        font-size: 15px;
    }

    .stepper-card p {
        font-size: 12px;
    }

    /* Coverage */
    .coverage-comparison-section {
        margin-bottom: 30px;
    }

    .coverage-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .coverage-box {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .coverage-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .coverage-header i {
        font-size: 20px;
    }

    .coverage-header h3 {
        font-size: 14px;
    }

    .coverage-list {
        padding-left: 18px;
        gap: 10px;
        font-size: 12px;
    }

    /* Unboxing */
    .unboxing-notice-banner {
        padding: 20px 18px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .unboxing-content {
        flex-direction: column;
        gap: 12px;
    }

    .unboxing-icon {
        font-size: 28px;
    }

    .unboxing-content h3 {
        font-size: 14px;
    }

    .unboxing-content p {
        font-size: 12px;
    }

    /* Contact section */
    .policy-contact-strip {
        flex-direction: column;
        padding: 24px 18px;
        border-radius: 12px;
        text-align: center;
        gap: 20px;
    }

    .contact-strip-header h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    .contact-strip-header p {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-strip-contact,
    .btn-strip-wa {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}


/* Very small phones - 320px / 375px */
@media (max-width: 480px) {

    .refund-layout-wrapper {
        padding: 25px 0;
    }

    .feature-policy-card {
        padding: 20px 16px;
    }

    .section-title {
        font-size: 23px;
        line-height: 1.2;
    }

    .refund-stepper-section {
        padding: 20px 14px;
    }

    .stepper-card {
        padding: 16px 14px;
    }

    .coverage-box {
        padding: 20px 16px;
    }

    .coverage-header h3 {
        font-size: 14px;
    }

    .coverage-list {
        font-size: 12px;
    }

    .policy-contact-strip {
        padding: 22px 15px;
    }

    .btn-strip-contact,
    .btn-strip-wa {
        font-size: 12px;
        padding: 11px 12px;
    }
}


/* Extra small devices */
@media (max-width: 360px) {

    .refund-layout-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-title {
        font-size: 21px;
    }

    .feature-policy-card h3 {
        font-size: 16px;
    }

    .card-lead,
    .card-bullets li,
    .coverage-list {
        font-size: 12px;
    }

    .contact-strip-header h3 {
        font-size: 16px;
    }

    .btn-strip-contact,
    .btn-strip-wa {
        font-size: 11px;
    }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .policy-cards-grid-3col,
    .stepper-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .coverage-grid-2col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .policy-cards-grid-3col,
    .stepper-grid-4col {
        grid-template-columns: 1fr;
    }
    .policy-contact-strip {
        flex-direction: column;
        text-align: center;
    }
    .contact-actions-row {
        flex-direction: column;
        width: 100%;
    }
    .btn-strip-contact, .btn-strip-wa {
        width: 100%;
        justify-content: center;
    }
}
