
/* === common.css === */
:root {
    /* Brand Colors */
    --ivory: #FEFFF5;
    --linen: #F7E8DC;
    --french-blue: #0676D0;
    --gunmetal: #313945;
    --eerie-black: #262524;
    --pumpkin: #FF7100;

    /* Basic Colors */
    --white: #ffffff;
    --black: #000000;

    /* Themed Roles */
    --primary: var(--french-blue);
    --secondary: var(--linen);
    --accent: var(--pumpkin);

    /* Semantic Roles */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;

    /* Hover Colors (Defined via hex or slightly darker tones) */
    --hover-primary: #055ba8;
    --hover-secondary: #e4d3c5;
    --hover-accent: #b15408;
    --hover-success: #006400;
    --hover-warning: #cc5a00;
    --hover-error: #cc3700;

    /* Shadow Colors */
    --shadow-primary: #0676D04d;
    --shadow-secondary: #F7E8DC4d;
    --shadow-accent: #ff7300b7;
    --shadow-success: #0080004d;
    --shadow-warning: #FF71004d;
    --shadow-error: #FF45004d;

    --navy: #0d1b2a;
    --blue: #1877f2;
    --blue2: #0d5fd4;
    --orange: #ff6b00;
    --white: #fff;
    --gray50: #f9fafb;
    --gray100: #f3f4f6;
    --gray200: #e5e7eb;
    --gray400: #9ca3af;
    --gray600: #4b5563;
    --gray800: #1f2937;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .09), 0 2px 6px rgba(0, 0, 0, .05);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .11), 0 4px 12px rgba(0, 0, 0, .06);

    /* Sizing */
    --search-h: 50px;
    --nav-h: 66px;
    --total-h: 116px;
    /* search + nav combined */
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--black);
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
}

/* Primary */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--hover-primary);
}

/* Secondary */
.btn-secondary {
    background-color: var(--secondary);
    color: var(--black);
    box-shadow: 0 4px 10px var(--shadow-secondary);
}

.btn-secondary:hover {
    background-color: var(--hover-secondary);
}

/* Accent */
.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 10px var(--shadow-accent);
}

.btn-secondary:hover {
    background-color: var(--hover-accent);
}

/* Success */
.btn-success {
    background-color: var(--success);
    color: var(--white);
    box-shadow: 0 4px 10px var(--shadow-success);
}

.btn-success:hover {
    background-color: var(--hover-success);
}

/* Warning */
.btn-warning {
    background-color: var(--warning);
    color: var(--black);
    box-shadow: 0 4px 10px var(--shadow-warning);
}

.btn-warning:hover {
    background-color: var(--hover-warning);
}

/* Error */
.btn-error {
    background-color: var(--error);
    color: var(--white);
    box-shadow: 0 4px 10px var(--shadow-error);
}

.btn-error:hover {
    background-color: var(--hover-error);
}

.main-content {
    margin: 120px 0;
}

.mtb-30 {
    margin: 30px 0;
}

.mandatory {
    color: #ff4500;
    font-weight: 700;
}
/* === common-form.css === */
/* ============================= */
/* Common Form Styles */
/* ============================= */

/* ============================= */
/* Form Container */
.form-group {
    position: relative;
    margin: 20px 0;
    width: 100%;
}

/* ============================= */
/* Input & Textarea */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    background-color: var(--ivory);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--shadow-primary);
}

/* ============================= */
/* Floating Labels */
label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--gunmetal);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: var(--ivory);
    padding: 0 4px;
}

input:focus+label,
input:not(:placeholder-shown)+label,
textarea:focus+label,
textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--primary);
}

/* Textarea Resize */
textarea {
    resize: vertical;
    min-height: 80px;
}

/* ============================= */
/* Checkbox & Radio */
.checkbox-group,
.radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    transition: transform 0.2s ease;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
    transform: scale(1.2);
}

.checkbox-group label,
.radio-group label {
    font-size: 16px;
    color: var(--gunmetal);
    cursor: pointer;
}

/* ============================= */
/* Responsive */
@media (max-width: 768px) {

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    label {
        font-size: 14px;
    }
}

/* ============================= */
/* Smooth input animations */
input,
textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* === message.css === */
/* ================================
   Custom Flash Message Styles
================================= */
.custom-alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    position: fixed;
    right: 5px;
    top: 120px;
    font-size: 16px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 8px #0000001a;
    color: #fff;
    gap: 10px;
    overflow: hidden;
    z-index: 99999;
}

/* Title inside alert */
.custom-alert strong {
    margin-right: 10px;
}

/* Success, Error, Warning, Info */
.custom-alert-success {
    background-color: #28a745;
}

.custom-alert-error {
    background-color: #dc3545;
}

.custom-alert-warning {
    background-color: #ffc107;
    color: #212529;
}

.custom-alert-info {
    background-color: #17a2b8;
}

/* Close button */
.custom-close-btn {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 15px;
    padding: 5px;
    font-weight: bold;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.custom-close-btn:hover {
    color: #ffffffb3;
}

/* Progress bar */
.custom-alert .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform linear;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    .custom-alert {
        max-width: 100%;
        right: 1px;
    }
}

/* === navbar.css === */
/*-- ================================================================
     NOBO NAVBAR — Complete Fixed Version
     ✓ Dynamic Blade menus (your original @foreach loops)
     ✓ Recent search history (localStorage)
     ✓ Responsive dropdown accordion FIXED
     ✓ Both bars fixed on scroll
     ================================================================ --*/


/* ── FIXED HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body {
    padding-top: 112px;
}

/* ══════════════════════════════
   SEARCH BAR
══════════════════════════════ */
.top-search-bar {
    background: var(--navy);
    height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.top-search-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Search wrapper — relative so dropdown sits below it */
.search-wrap {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.search-group {
    display: flex;
    align-items: center;
    height: 32px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    overflow: visible;
    /* allow dropdown to escape */
    transition: border-color .2s, box-shadow .2s;
    position: relative;
    z-index: 2;
}

/* When input focused AND has recent searches, show rounded-top only */
.search-wrap.has-results .search-group {
    border-radius: 6px 6px 0 0;
    border-bottom-color: rgba(255, 255, 255, .06);
    box-shadow: none;
}

.search-group:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(24, 119, 242, .22);
    background: rgba(255, 255, 255, .1);
}

.search-wrap.has-results .search-group:focus-within {
    border-bottom-color: rgba(255, 255, 255, .08);
    box-shadow: none;
}

/* Inner input row */
.search-input-row {
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    overflow: hidden;
    border-radius: 6px;
}

.search-input-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 12px;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    caret-color: var(--blue);
    min-width: 0;
}

.search-input-row input::placeholder {
    color: rgba(255, 255, 255, .28);
}

#topSearchBtn {
    height: 32px;
    padding: 0 14px;
    background: var(--blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
    transition: background .15s;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 0 5px 5px 0;
}

#topSearchBtn:hover {
    background: var(--blue2);
}

/* ── Recent Search Dropdown ── */
.search-history-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2840;
    border: 1px solid var(--blue);
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.search-wrap.has-results .search-history-dropdown {
    display: block;
}

.search-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.search-history-clear {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 107, 0, .8);
    padding: 2px 4px;
    border-radius: 3px;
    transition: color .15s;
}

.search-history-clear:hover {
    color: var(--orange);
}

.search-history-list {
    list-style: none;
    padding: 4px 8px 8px;
}

.search-history-list li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: background .12s, color .12s;
    cursor: pointer;
}

.search-history-list li a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.search-history-list li a svg {
    opacity: .4;
    flex-shrink: 0;
}

.search-history-list li a:hover svg {
    opacity: .7;
}

.search-history-list li a .del-btn {
    margin-left: auto;
    opacity: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0;
    transition: opacity .15s, background .15s;
}

.search-history-list li a:hover .del-btn {
    opacity: 1;
}

.search-history-list li a .del-btn:hover {
    background: rgba(220, 53, 69, .3);
}

.search-history-empty {
    padding: 10px 12px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .25);
    text-align: center;
}

/* Promo */
.search-promo {
    margin-left: auto;
    font-size: 12px;
    color: rgba(255, 255, 255, .32);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.search-promo strong {
    color: var(--orange);
    font-weight: 600;
}

@media(max-width: 768px) {
    .search-promo {
        display: none;
    }
}

@media(max-width: 500px) {
    .top-search-container {
        padding: 0 16px;
    }

    .search-wrap {
        max-width: none;
    }
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
    height: 66px;
    background: #fff;
    border-bottom: 1px solid var(--gray200);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 32px;
    flex-shrink: 0;
    transition: opacity .15s;
}

.nav-logo:hover {
    opacity: .85;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
}

.logo-text em {
    color: var(--blue);
    font-style: normal;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

/* ── DESKTOP: hover-based dropdowns ── */
@media(min-width: 961px) {

    .m-section {
        display: none;
    }

    /* hide mobile labels on desktop */

    .dropdown {
        position: relative;
    }

    .dropdown-trigger {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 7px 12px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        color: var(--gray800);
        text-decoration: none;
        cursor: pointer;
        white-space: nowrap;
        border: none;
        background: none;
        font-family: 'Inter', sans-serif;
        transition: color .15s, background .15s;
        position: relative;
    }

    .dropdown-trigger svg.chevron {
        opacity: .4;
        transition: transform .2s, opacity .15s;
        flex-shrink: 0;
    }

    .dropdown-trigger::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--blue);
        border-radius: 2px 2px 0 0;
        transform: translateX(-50%);
        transition: width .2s;
    }

    .dropdown:hover .dropdown-trigger {
        color: var(--blue);
        background: rgba(24, 119, 242, .06);
    }

    .dropdown:hover .dropdown-trigger::after {
        width: calc(100% - 16px);
    }

    .dropdown:hover .dropdown-trigger svg.chevron {
        transform: rotate(180deg);
        opacity: .85;
    }

    /* Panel */
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 5px);
        left: 50%;
        transform: translateX(-50%) translateY(6px);
        min-width: 228px;
        background: #fff;
        border: 1px solid var(--gray200);
        border-radius: 12px;
        padding: 6px;
        list-style: none;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .17s ease, transform .17s ease, visibility .17s;
        z-index: 500;
    }

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 9px;
        height: 9px;
        background: #fff;
        border-left: 1px solid var(--gray200);
        border-top: 1px solid var(--gray200);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 13.5px;
        font-weight: 400;
        color: var(--gray600);
        text-decoration: none;
        transition: background .12s, color .12s, padding-left .15s;
    }

    .dropdown-menu li a:hover {
        background: rgba(24, 119, 242, .06);
        color: var(--blue);
        padding-left: 14px;
    }

    .d-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        background: var(--gray100);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray400);
        flex-shrink: 0;
        transition: background .12s, color .12s;
    }

    .dropdown-menu li a:hover .d-icon {
        background: rgba(24, 119, 242, .1);
        color: var(--blue);
    }

    .sep-row {
        border-top: 1px solid var(--gray100);
        margin-top: 4px;
        padding-top: 4px;
    }

    .sep-row a {
        color: var(--blue) !important;
        font-weight: 600 !important;
        font-size: 13px !important;
    }

    .sep-row-arrow {
        margin-left: auto;
        opacity: .45;
        transition: opacity .12s, transform .18s;
    }

    .sep-row a:hover .sep-row-arrow {
        opacity: 1;
        transform: translateX(3px);
    }

    /* Plain links */
    .nav-links>a {
        padding: 7px 12px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        color: var(--gray800);
        text-decoration: none;
        transition: color .15s, background .15s;
        white-space: nowrap;
    }

    .nav-links>a:hover {
        color: var(--orange);
        background: rgba(255, 107, 0, .06);
    }
}

/* ── NAV ACTIONS ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray600);
    border: none;
    background: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.nav-icon-btn:hover {
    background: var(--gray100);
    color: var(--gray800);
}

.nav-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 16px;
    height: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(255, 107, 0, .4);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--gray200);
    margin: 0 4px;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    transition: background .15s;
}

.hamburger:hover {
    background: var(--gray100);
}

.hamburger span {
    display: block;
    height: 1.8px;
    background: var(--gray600);
    border-radius: 2px;
    transition: transform .28s cubic-bezier(.23, 1, .32, 1), opacity .2s, width .2s;
}

.hamburger span:nth-child(1) {
    width: 18px;
}

.hamburger span:nth-child(2) {
    width: 12px;
}

.hamburger span:nth-child(3) {
    width: 18px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.3px) rotate(45deg);
    width: 18px;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.3px) rotate(-45deg);
}

/* ══════════════════════════════
   MOBILE DRAWER
══════════════════════════════ */
@media(max-width: 960px) {

    body {
        padding-top: 112px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 112px;
        right: 0;
        bottom: 0;
        width: min(300px, 84vw);
        background: #fff;
        border-left: 1px solid var(--gray200);
        box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 14px 32px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .27s cubic-bezier(.23, 1, .32, 1);
        visibility: hidden;
        z-index: 900;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    /* Section labels */
    .m-section {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--gray400);
        padding: 14px 8px 5px;
    }

    /* Dropdown trigger — full width pill */
    .dropdown {
        width: 100%;
        margin-bottom: 2px;
    }

    .dropdown-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--gray800);
        background: var(--gray50);
        border: 1px solid transparent;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        transition: background .15s, color .15s, border-color .15s;
        text-decoration: none;
        position: static;
        /* remove ::after positioning issues */
    }

    /* Chevron in mobile trigger */
    .dropdown-trigger svg.chevron {
        opacity: .4;
        transition: transform .25s, opacity .15s;
        flex-shrink: 0;
    }

    .dropdown-trigger::after {
        display: none !important;
    }

    /* kill underline bar */

    /* Open state */
    .dropdown.open>.dropdown-trigger {
        color: var(--blue);
        background: rgba(24, 119, 242, .07);
        border-color: rgba(24, 119, 242, .15);
    }

    .dropdown.open>.dropdown-trigger svg.chevron {
        transform: rotate(180deg);
        opacity: .85;
    }

    /* Dropdown menu — inline accordion
       ONLY use display:none/block. No opacity/visibility/transform clashes. */
    .dropdown>.dropdown-menu {
        display: none !important;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        box-shadow: none;
        border: 1px solid var(--gray100);
        border-radius: 8px;
        background: var(--gray50);
        margin: 4px 0 6px;
        padding: 5px;
        list-style: none;
        transition: none;
    }

    .dropdown-menu::before {
        display: none !important;
    }

    .dropdown.open>.dropdown-menu {
        display: block !important;
    }

    /* Menu items in mobile */
    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 13.5px;
        font-weight: 400;
        color: var(--gray600);
        text-decoration: none;
        transition: background .12s, color .12s;
    }

    .dropdown-menu li a:hover {
        background: rgba(24, 119, 242, .06);
        color: var(--blue);
    }

    .d-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        background: var(--gray100);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray400);
        flex-shrink: 0;
    }

    .dropdown-menu li a:hover .d-icon {
        background: rgba(24, 119, 242, .1);
        color: var(--blue);
    }

    .sep-row {
        border-top: 1px solid var(--gray100);
        margin-top: 4px;
        padding-top: 4px;
    }

    .sep-row a {
        color: var(--blue) !important;
        font-weight: 600 !important;
        font-size: 13px !important;
    }

    .sep-row-arrow {
        margin-left: auto;
        opacity: .45;
    }

    /* Plain nav links */
    .nav-links>a {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        background: var(--gray50);
        border: 1px solid transparent;
        margin-bottom: 2px;
        color: var(--gray800);
        text-decoration: none;
        transition: background .15s;
    }

    .nav-links>a:hover {
        background: var(--gray100);
        color: var(--gray800);
    }
}

/* Backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: 112px;
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(1px);
    z-index: 800;
}

.nav-backdrop.show {
    display: block;
}

@media(max-width: 480px) {
    body {
        padding-top: 102px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .navbar {
        height: 56px;
    }

    .top-search-bar {
        height: 46px;
    }

    .nav-backdrop {
        top: 102px;
    }

    .nav-links {
        top: 102px;
    }
}

/* === hero-section.css === */
/* ===============================
   HERO SLIDER — IMPROVED
================================= */
*,
*::before,
*::after {
    box-sizing: border-box
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px
}

/* ---------- TOP ---------- */
.hero-top {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    height: 68vh;
    min-height: 420px;
}

.hero-left,
.hero-right {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

/* ---------- RIGHT PANEL ---------- */
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-right:hover img {
    transform: scale(1.04)
}

.hero-right-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.hero-right-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.hero-right-label h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px
}

.hero-right-label p {
    font-size: 0.75rem;
    opacity: 0.75
}

/* ---------- SLIDER ---------- */
.slider {
    position: relative;
    width: 100%;
    height: 100%
}

.slides {
    position: relative;
    width: 100%;
    height: 100%
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

/* ---------- SLIDE CONTENT ---------- */
.slide-content {
    position: absolute;
    bottom: 80px;
    left: 36px;
    color: #fff;
    z-index: 5;
    max-width: 65%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0)
}

.slide-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 10px;
}

.slide-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #111;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.slide-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px)
}

/* ---------- CONTROLS ---------- */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 16px
}

.next-btn {
    right: 16px
}

/* ---------- DOTS ---------- */
.slider-controls {
    position: absolute;
    bottom: 22px;
    left: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px
}

/* ---------- PROGRESS BAR ---------- */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.75);
    width: 0%;
    z-index: 10;
    border-radius: 0 2px 2px 0;
}

/* ---------- BOTTOM GALLERY ---------- */
.hero-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 32vh;
    min-height: 160px;
}

.hero-bottom-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.hero-bottom-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-bottom-item:hover img {
    transform: scale(1.07)
}

.hero-bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-bottom-item:hover .hero-bottom-overlay {
    opacity: 1
}

.hero-bottom-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: #fff;
    z-index: 2;
}

.hero-bottom-label span {
    font-size: 0.8rem;
    opacity: 0.75;
    display: block;
    margin-bottom: 2px
}

.hero-bottom-label strong {
    font-size: 0.95rem;
    font-weight: 500
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px) {
    .hero-top {
        grid-template-columns: 1fr;
        height: auto;
        min-height: unset
    }

    .hero-left {
        height: 55vw;
        min-height: 280px;
        max-height: 420px
    }

    .hero-right {
        height: 40vw;
        min-height: 200px
    }

    .slide-content {
        left: 20px;
        bottom: 70px;
        max-width: 85%
    }

    .slide-content h2 {
        font-size: 1.5rem
    }

    .slider-controls {
        left: 20px
    }

    .hero-bottom {
        grid-template-columns: 1fr 1fr;
        height: auto
    }

    .hero-bottom-item {
        height: 28vw;
        min-height: 140px
    }

    .hero-bottom-item:last-child {
        grid-column: span 2
    }
}

@media(max-width:560px) {
    .hero {
        padding: 8px;
        gap: 8px
    }

    .hero-left {
        height: 60vw;
        min-height: 240px
    }

    .hero-right {
        height: 45vw;
        min-height: 180px
    }

    .slide-content h2 {
        font-size: 1.25rem
    }

    .slide-content p {
        font-size: 0.875rem
    }

    .slide-btn {
        font-size: 0.8rem;
        padding: 8px 16px
    }

    .prev-btn,
    .next-btn {
        width: 34px;
        height: 34px
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        height: auto
    }

    .hero-bottom-item {
        height: 44vw;
        min-height: 150px
    }

    .hero-bottom-item:last-child {
        grid-column: unset
    }
}

/* === pcs-section.css === */
/* ------------------------------
   PRODUCT CAROUSEL SECTION
------------------------------- */
.pcs-section {
    padding: 36px 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.pcs-section-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--french-blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcs-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.pcs-category-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pcs-category {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

/* ---------- HEADER ---------- */
.pcs-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f3f4f6;
}

.pcs-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcs-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pcs-icon-fan {
    background: #eff6ff;
}

.pcs-icon-light {
    background: #fffbeb;
}

.pcs-icon-switch {
    background: #f0fdf4;
}

.pcs-category-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.pcs-count-badge {
    font-size: 11px;
    font-weight: 500;
    background: #f3f4f6;
    color: #6b7280;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ---------- NEXT BUTTON ---------- */
.pcs-next {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.pcs-next:hover {
    background: var(--hover-primary);
    transform: scale(1.06);
}

.pcs-next-amber {
    background: #d97706;
}

.pcs-next-amber:hover {
    background: #b45309;
}

.pcs-next-green {
    background: #16a34a;
}

.pcs-next-green:hover {
    background: #15803d;
}

/* ---------- CAROUSEL ---------- */
.pcs-carousel {
    overflow: hidden;
    position: relative;
    padding: 10px 14px 14px;
}

.pcs-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- CARD ---------- */
.pcs-card {
    display: flex;
    align-items: center;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 88px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.pcs-card:hover {
    background: #fff;
    border-color: #d1d5db;
    transform: translateX(4px);
}

.pcs-img-wrap {
    width: 80px;
    height: 88px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcs-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- CARD INFO ---------- */
.pcs-card-info {
    flex: 1;
    min-width: 0;
    padding: 10px 12px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.pcs-card-info h4 {
    font-size: 0.82rem;
    font-weight: 500;
    color: #111;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* ---------- PRICE ---------- */
.pcs-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pcs-main-price {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.pcs-discount-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #dc2626;
}

/* ---------- RATING ---------- */
.pcs-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pcs-stars {
    color: #f59e0b;
    font-size: 11px;
    letter-spacing: 1px;
}

/* ---------- SEE ALL ---------- */
.pcs-see-all {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--french-blue);
    padding: 10px;
    border-top: 1px solid #f3f4f6;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}

.pcs-see-all:hover {
    background: #eff6ff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .pcs-category-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .pcs-category-row {
        grid-template-columns: 1fr;
    }

    .pcs-card {
        height: 80px;
    }

    .pcs-img-wrap {
        width: 72px;
        height: 80px;
    }
}

/* === product-carousel.css === */
/* ===================== Product Carousel ===================== */
.prodcar-carousel-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.prodcar-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.prodcar-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prodcar-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.prodcar-carousel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
}

.prodcar-carousel-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prodcar-carousel-seeall {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    transition: background 0.2s, color 0.2s;
}

.prodcar-carousel-seeall:hover {
    background: var(--primary);
    color: var(--white);
}

.prodcar-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.prodcar-arrow-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.prodcar-arrow-btn:hover svg {
    stroke: var(--white);
}

.prodcar-arrow-btn svg {
    stroke: #555;
    transition: stroke 0.2s;
}

/* ===================== Track ===================== */
.prodcar-carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.prodcar-carousel-container::-webkit-scrollbar {
    display: none;
}

.prodcar-carousel-track {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

/* ===================== Cards ===================== */
.prodcar-card {
    flex: 0 0 calc(25% - 14px);
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #111;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
    overflow: hidden;
    position: relative;
}

.prodcar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* ===================== Badge ===================== */
.prodcar-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.prodcar-badge-new {
    background: #dbeafe;
    color: #1e40af;
}

.prodcar-badge-sale {
    background: #fee2e2;
    color: #b91c1c;
}

/* ===================== Wishlist ===================== */
.prodcar-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.prodcar-card:hover .prodcar-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.prodcar-wishlist:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

/* ===================== Image Wrapper ===================== */
.prodcar-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    width: 100%;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prodcar-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-user-drag: none;
}

.prodcar-img-wrapper .main-img {
    opacity: 1;
    z-index: 1;
}

.prodcar-img-wrapper .hover-img {
    opacity: 0;
    z-index: 2;
    transform: scale(1.04);
}

.prodcar-card:hover .main-img {
    opacity: 0;
    transform: scale(1.04);
}

.prodcar-card:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

/* ===================== Info ===================== */
.prodcar-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.prodcar-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================== Price ===================== */
.prodcar-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prodcar-price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 13px;
}

.prodcar-price-discount {
    color: #dc2626;
    font-weight: 700;
    font-size: 1rem;
}

.prodcar-price-only {
    color: #111;
    font-weight: 700;
    font-size: 1rem;
}

/* ===================== Rating ===================== */
.prodcar-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.prodcar-stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
}

.prodcar-rating-count {
    color: #9ca3af;
    font-size: 12px;
}

/* ===================== Button ===================== */
.prodcar-btn-add-cart {
    margin-top: auto;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.prodcar-btn-add-cart svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    flex-shrink: 0;
}

.prodcar-btn-add-cart:hover {
    background: var(--hover-primary);
    transform: scale(1.02);
}

/* ===================== Responsive ===================== */
@media (max-width: 1200px) {
    .prodcar-card {
        flex: 0 0 calc(33.333% - 12px);
    }
}

@media (max-width: 900px) {
    .prodcar-card {
        flex: 0 0 calc(50% - 9px);
    }

    .prodcar-carousel-actions {
        display: none;
    }
}

@media (max-width: 560px) {
    .prodcar-card {
        flex: 0 0 80%;
    }

    .prodcar-carousel-title {
        font-size: 1.4rem;
    }
}

/* === categories-card.css === */
/* ================================
   CATEGORY SECTION
================================= */
.category-section {
    padding: 60px 20px;
    background-color: var(--ivory);
}

/* ---------- HEADER ---------- */
.cat-header {
    text-align: center;
    margin-bottom: 44px;
}

.cat-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--eerie-black);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--accent);
}

.cat-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cat-divider-line {
    width: 48px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
}

.cat-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* ---------- GRID ---------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    justify-items: stretch;
}

/* ---------- CARD ---------- */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 16px;
    border: 1.5px solid #f0f0f0;
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff 0%, var(--white) 60%);
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 16px;
}

.category-card:hover {
    border-color: #93c5fd;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover .cat-img-wrap {
    background: #dbeafe;
}

.category-card:hover .cat-img-wrap img {
    transform: scale(1.15) rotate(6deg);
}

/* ---------- IMAGE WRAP ---------- */
.cat-img-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.25s;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cat-img-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ---------- LABEL ---------- */
.category-card span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gunmetal);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* ---------- SHOW ALL CARD ---------- */
.category-card-all {
    border-style: dashed;
    border-color: #d1d5db;
    background: #fafafa;
}

.category-card-all::before {
    background: linear-gradient(135deg, #f0fdf4 0%, #fafafa 60%);
}

.category-card-all:hover {
    border-color: #86efac;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.10);
}

.category-card-all:hover .cat-img-wrap {
    background: #dcfce7;
}

.category-card-all span {
    color: #15803d;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .category-section {
        padding: 40px 14px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === partners.css === */
/* ================================
   PARTNERS SECTION
================================= */
.partners-section {
    padding: 60px 20px;
    background-color: var(--linen);
}

/* ---------- HEADER ---------- */
.partners-header {
    text-align: center;
    margin-bottom: 44px;
}

.partners-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.partners-header .section-title {
    margin-bottom: 14px;
}

.partners-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners-divider-line {
    width: 48px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
}

.partners-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.partners-subtitle {
    margin-top: 12px;
    font-size: 0.875rem;
    color: #6b7280;
}

/* ---------- MARQUEE WRAP ---------- */
.partners-marquee-wrap {
    position: relative;
    overflow: hidden;
}

.partners-marquee-wrap::before,
.partners-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--linen), transparent);
}

.partners-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--linen), transparent);
}

/* ---------- TRACK ---------- */
.partners-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    width: max-content;
    cursor: default;
}

/* ---------- CARD ---------- */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    padding: 20px 16px 16px;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff, var(--white));
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 14px;
}

.partner-card:hover {
    border-color: #93c5fd;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.partner-card:hover::before {
    opacity: 1;
}

/* ---------- IMAGE WRAP ---------- */
.partner-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    transition: background 0.25s;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.partner-card:hover .partner-img-wrap {
    background: #dbeafe;
}

.partner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-img-wrap img {
    transform: scale(1.1);
}

/* ---------- NAME ---------- */
.partner-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gunmetal);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}

.partner-card:hover .partner-name {
    color: var(--primary);
}

/* ---------- FOOTER COUNT ---------- */
.partners-count {
    text-align: center;
    margin-top: 28px;
    font-size: 12px;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.partners-count strong {
    color: var(--gunmetal);
    font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .partners-marquee-wrap::before,
    .partners-marquee-wrap::after {
        width: 40px;
    }
}

/* === counter-section.css === */
.counter-section {
    background: url('../images/light\ decor\ \(6\).jpg') no-repeat center center/cover;
    padding: 100px 20px;
    position: relative;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.712);
    /* dark overlay */
    z-index: 1;
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-6px);
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .counter {
        font-size: 32px;
    }

    .counter-box p {
        font-size: 14px;
    }
}

/* === review-section.css === */
/* ─── Customer Reviews ─── */
.crs-section {
    padding: 40px 20px;
    background: var(--ivory);
    font-family: 'DM Sans', sans-serif;
}

.crs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.crs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.crs-heading-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crs-accent-bar {
    width: 4px;
    height: 28px;
    background: var(--accent);
    border-radius: 3px;
    flex-shrink: 0;
}

.crs-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--eerie-black);
    letter-spacing: -0.4px;
    margin: 0;
}

.crs-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.crs-score-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: 100px;
    padding: 5px 14px;
}

.crs-score-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--eerie-black);
}

.crs-score-stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
}

.crs-score-count {
    font-size: 12px;
    color: var(--gray400);
}

.crs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--success);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.crs-btn:hover {
    background: var(--hover-success);
}

/* Layout */
.crs-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: start;
}

/* Sidebar */
.crs-sidebar {
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crs-big-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--eerie-black);
    line-height: 1;
}

.crs-big-stars {
    font-size: 14px;
    color: #f59e0b;
    letter-spacing: 2px;
    display: block;
    margin: 4px 0 2px;
}

.crs-total-label {
    font-size: 11px;
    color: var(--gray400);
}

.crs-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crs-bar-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.crs-bar-lbl {
    width: 10px;
    text-align: right;
    color: var(--gray600);
    font-weight: 500;
}

.crs-bar-track {
    flex: 1;
    height: 5px;
    background: var(--gray100);
    border-radius: 3px;
    overflow: hidden;
}

.crs-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 3px;
}

.crs-bar-n {
    font-size: 10px;
    color: var(--gray400);
    min-width: 14px;
}

/* Grid & Cards */
.crs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.crs-card {
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.crs-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.crs-qdeco {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 28px;
    color: var(--linen);
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
}

.crs-card-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.crs-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.av1 {
    background: var(--primary)
}

.av2 {
    background: var(--accent)
}

.av3 {
    background: var(--success)
}

.av4 {
    background: #8b5cf6
}

.av5 {
    background: #ec4899
}

.crs-user {
    flex: 1;
    min-width: 0;
}

.crs-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--eerie-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 2px;
}

.crs-stars {
    display: flex;
    gap: 1px;
}

.crs-star {
    font-size: 11px;
    color: var(--gray200);
}

.crs-star.on {
    color: #f59e0b;
}

.crs-text {
    font-size: 12.5px;
    color: var(--gray600);
    line-height: 1.65;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crs-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--gray100);
}

.crs-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--success);
}

.crs-vdot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.crs-date {
    font-size: 10px;
    color: var(--gray400);
}

/* Responsive */
@media (max-width: 860px) {
    .crs-layout {
        grid-template-columns: 1fr;
    }

    .crs-sidebar {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .crs-bars {
        flex: 1;
    }

    .crs-big-num {
        font-size: 36px;
    }
}

@media (max-width: 560px) {
    .crs-section {
        padding: 28px 14px;
    }

    .crs-title {
        font-size: 18px;
    }

    .crs-grid {
        grid-template-columns: 1fr;
    }

    .crs-sidebar {
        flex-direction: column;
    }
}

/* === footer.css === */
/* ==================== Nobo Eshop Footer ==================== */
.nobo-footer {
    background: #0d1117;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    padding: 60px 8% 30px;
}

.nobo-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* --- Logo / About --- */
.footer-logo img {
    width: 55px;
    height: 70px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    font-size: 22px;
    margin: 5px 0;
    color: #fff;
}

.footer-logo p {
    font-size: 14px;
    color: #bcbcbc;
    line-height: 1.6;
}

.footer-contact {
    margin: 20px 0;
}

.footer-contact p {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.footer-contact img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-btn {
    display: inline-block;
    background: #00aaff;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: background 0.3s;
}

.footer-btn:hover {
    background: #008ecc;
}

/* --- Links --- */
.footer-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-links h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #00aaff;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #00aaff;
}

/* --- Bottom --- */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-policies a {
    color: #bbbbbb;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: #00aaff;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
}

.footer-copy p {
    font-size: 13px;
    color: #999;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-developer img {
    width: 28px;
    height: 28px;
}

.footer-developer span {
    color: #ccc;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-copy {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-container {
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* === about.css === */
/* ---------------- About Hero ---------------- */
.about-hero {
    background: url('https://cdn.pixabay.com/photo/2017/08/10/07/00/electricity-2611745_1280.jpg') center/cover no-repeat;
    padding: 120px 8%;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    animation: fadeInUp 1s ease forwards;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ---------------- Section Padding ---------------- */
.section-padding {
    padding: 80px 8%;
}

/* ---------------- Brand Story / Timeline ---------------- */
.brand-story .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    margin-top: 50px;
}

/* Vertical line in the middle (desktop) */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--french-blue);
}

/* Timeline items */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

/* Odd items on left */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Even items on right */
.timeline-item:nth-child(even) {
    left: 50%;
}

/* Timeline dots */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--pumpkin);
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-year {
    font-size: 20px;
    font-weight: bold;
    color: var(--french-blue);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}


/* ---------------- Mission & Vision ---------------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.mission,
.vision {
    background: var(--linen);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mission:hover,
.vision:hover {
    transform: translateY(-6px);
}

.mission h2,
.vision h2 {
    margin-bottom: 12px;
    color: var(--french-blue);
}

/* ---------------- Why Choose Us ---------------- */
.why-choose .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
}

.choose-card {
    background: var(--ivory);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.choose-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.choose-card:hover .choose-icon {
    transform: scale(1.2);
}

.choose-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--french-blue);
}

.choose-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* ---------------- Company Values ---------------- */
.company-values .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
}

.value-card {
    background: var(--ivory);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* ---------------- Animations ---------------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
        /* Move the line to the left for vertical stacking */
        transform: none;
        height: 100%;
    }

    .timeline-item {
        width: 100%;
        padding: 20px 20px 20px 50px;
        /* space for the line */
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item::after {
        left: 0 !important;
        /* dot aligns with line */
        right: auto !important;
        top: 20px;
    }
}

/* === contact.css === */
/* ---------------- Contact Hero ---------------- */
.contact-hero {
    background: url('https://cdn.pixabay.com/photo/2017/01/16/19/16/electronics-1985703_1280.jpg') center/cover no-repeat;
    padding: 120px 8%;
    text-align: center;
    color: #fff;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    animation: fadeInUp 1s ease forwards;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ---------------- Contact Section ---------------- */
.contact-section .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

/* Contact Info */
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--french-blue);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--gunmetal);
}

.info-list img {
    width: 24px;
    height: 24px;
    filter: invert(28%) sepia(84%) saturate(3361%) hue-rotate(197deg) brightness(93%) contrast(90%);
}

/* Contact Form */
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--french-blue);
}

.contact-form .btn {
    margin-top: 15px;
}

/* Make iframe responsive */
.contact-info iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border: 0;
    border-radius: 6px;
    display: block;
}

/* ---------------- Animations ---------------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
    .contact-section .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* === product-category-section-style.css === */
/* ======================================
   PRODUCT STYLE CATEGORY SECTION
====================================== */
.product-style-section {
    padding: 80px 5%;
    background: var(--ivory);
}

.product-style-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
    align-items: stretch;
}

/* ======================================
   PRODUCT CARD
====================================== */
.product-style-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--gunmetal);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 20px var(--shadow-primary);

    opacity: 0;
    transform: translateY(30px);
    animation: productFadeUp 0.8s ease forwards;
}

.product-style-item:nth-child(1) {
    animation-delay: 0.1s;
}

.product-style-item:nth-child(2) {
    animation-delay: 0.3s;
}

.product-style-item:nth-child(3) {
    animation-delay: 0.5s;
}

.product-style-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-accent);
}

/* ======================================
   IMAGE (THIN WIDE RECTANGLE)
====================================== */
.product-style-image {
    width: 100%;
    height: auto;
    /* Let height adjust automatically */
    max-height: 250px;
    /* Optional: limit very tall images */
    object-fit: cover;
    /* Fill container without distortion */
    display: block;
    transition: transform 0.6s ease;
}

.product-style-item:hover .product-style-image {
    transform: scale(1.05);
}

/* ======================================
   OVERLAY TEXT AND BUTTON
====================================== */
.product-style-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(135deg,
            #0675d06b,
            #26252483);

    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.product-style-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-style-overlay p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.product-style-item .btn {
    font-size: 0.95rem;
    padding: 10px 25px;
}

/* ======================================
   ANIMATION
====================================== */
@keyframes productFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
    .product-style-overlay h3 {
        font-size: 1.3rem;
    }

    .product-style-overlay p {
        font-size: 0.9rem;
    }

    .product-style-item {
        width: 96%;
    }

    .product-style-image {
        max-height: 180px;
    }
}

/* === product-category.css === */
/* ============================================================
   PRODUCT CATEGORY PAGE
   ============================================================ */


/* ── Page wrapper ──────────────────────────────────────────── */
.prodpage-wrapper {
    min-height: 100vh;
    background: #f4f4f0;
}

/* ══════════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════════ */
.prodpage-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(244, 244, 240, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
}

.prodpage-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Filter toggle btn */
.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-toggle-btn:hover {
    border-color: var(--french-blue);
    color: var(--french-blue);
}

.filter-toggle-btn.active {
    background: var(--french-blue);
    border-color: var(--french-blue);
    color: #fff;
}

/* Search box */
.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.search-box:focus-within {
    border-color: var(--french-blue);
    box-shadow: 0 0 0 3px rgba(6, 118, 208, 0.09);
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    padding: 9px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    width: 190px;
}

.search-box input::placeholder {
    color: #bbb;
}

#productSearchBtn {
    background: var(--french-blue);
    color: #fff;
    border: none;
    padding: 9px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
}

#productSearchBtn:hover {
    background: var(--hover-primary);
}

/* Sort */
.sort-box {
    flex-shrink: 0;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 9px 34px 9px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    cursor: pointer;
    outline: none;
    transition: border-color 0.18s;
}

.custom-select:focus {
    border-color: var(--french-blue);
}

/* ══════════════════════════════════════════════════════════════
   PAGE LAYOUT
══════════════════════════════════════════════════════════════ */
.prodpage-layout {
    display: flex;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   FILTER SIDEBAR
══════════════════════════════════════════════════════════════ */
.filter-sidebar {
    width: 248px;
    min-width: 248px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: sticky;
    top: 58px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

/* Filter header — plain, no dark color */
.filter-title {
    margin: 0;
    padding: 15px 18px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: var(--french-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Close button — hidden on desktop, visible on mobile */
.filter-close-btn {
    display: none;
    margin-left: auto;
    background: #f0f0ee;
    border: none;
    border-radius: 7px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.filter-close-btn:hover {
    background: #e8e8e5;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .filter-close-btn {
        display: flex;
    }
}

/* Each section */
.filter-section {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 12px 0;
}

/* ── Price inputs ──────────────────────────────────────────── */
.price-range-inputs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 14px;
}

.price-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-input-label {
    font-size: 10px;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.price-input-group input[type="number"] {
    width: 100%;
    border: 1.5px solid rgba(0, 0, 0, 0.11);
    border-radius: 7px;
    padding: 8px 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    outline: none;
    background: #fafafa;
    text-align: center;
    transition: border-color 0.18s, box-shadow 0.18s;
    -moz-appearance: textfield;
}

.price-input-group input[type="number"]::-webkit-outer-spin-button,
.price-input-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input-group input[type="number"]:focus {
    border-color: var(--french-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 118, 208, 0.08);
}

.price-range-sep {
    font-size: 16px;
    color: #ddd;
    padding-bottom: 8px;
    flex-shrink: 0;
}

/* ── Sliders (separate rows — NO stacking) ─────────────────── */
.price-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slider-track-row {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
}

.slider-track-row .slider-side-label {
    font-size: 10px;
    color: #bbb;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    width: 22px;
    flex-shrink: 0;
    text-align: right;
}

.slider-track-row input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #e5e5e5;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    display: block;
}

.slider-track-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--french-blue);
    box-shadow: 0 1px 5px rgba(6, 118, 208, 0.28);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.slider-track-row input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 10px rgba(6, 118, 208, 0.4);
}

.slider-track-row input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.25);
}

.slider-track-row input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--french-blue);
    box-shadow: 0 1px 5px rgba(6, 118, 208, 0.28);
    cursor: pointer;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.slider-label-row span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--french-blue);
}

/* ── Availability toggle divs ──────────────────────────────── */
.avail-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.avail-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 9px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s, border-color 0.15s;
}

.avail-option:hover {
    background: #f0f5ff;
    border-color: rgba(6, 118, 208, 0.2);
}

.avail-option.active {
    background: #eef5ff;
    border-color: rgba(6, 118, 208, 0.35);
}

.avail-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 5px;
    border: 2px solid #d0d0d0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
    flex-shrink: 0;
}

.avail-option.active .avail-box {
    background: var(--french-blue);
    border-color: var(--french-blue);
}

.tick-icon {
    opacity: 0;
    transition: opacity 0.15s;
}

.avail-option.active .tick-icon {
    opacity: 1;
}

.avail-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #333;
    flex: 1;
}

.avail-option.active .avail-label {
    color: #1a1a1a;
    font-weight: 500;
}

.avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERLAY
══════════════════════════════════════════════════════════════ */
.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 299;
}

.filter-overlay.open {
    display: block;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS AREA
══════════════════════════════════════════════════════════════ */
.prodpage-products {
    flex: 1;
    min-width: 0;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    margin-bottom: 18px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb-item a:hover {
    color: var(--french-blue);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    color: #ccc;
    margin: 0 7px;
}

.breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════════════════════════ */
.prodgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════════════════════ */
.prodcar-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.25s cubic-bezier(.34, 1.4, .64, 1), box-shadow 0.25s ease;
    position: relative;
    animation: fadeUp 0.4s ease both;
}

.prodcar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.11);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prodcar-card:nth-child(1) {
    animation-delay: 0.04s;
}

.prodcar-card:nth-child(2) {
    animation-delay: 0.08s;
}

.prodcar-card:nth-child(3) {
    animation-delay: 0.12s;
}

.prodcar-card:nth-child(4) {
    animation-delay: 0.16s;
}

.prodcar-card:nth-child(5) {
    animation-delay: 0.20s;
}

.prodcar-card:nth-child(6) {
    animation-delay: 0.24s;
}

.prodcar-card:nth-child(n+7) {
    animation-delay: 0.28s;
}

/* Image */
.prodcar-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f2f2ee;
}

.prodcar-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.prodcar-img-wrapper .hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
}

.prodcar-card:hover .main-img {
    opacity: 0;
    transform: scale(1.04);
}

.prodcar-card:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

/* Tooltip */
/* Hover CTA — real span inside .prodcar-img-wrapper */
.card-hover-cta {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(26, 26, 26, 0.88);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.22s, transform 0.22s;
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
    letter-spacing: 0.2px;
}

.prodcar-card:hover .card-hover-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Sale / Sold Out badges */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pumpkin);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
    pointer-events: none;
}

.badge-soldout {
    position: absolute;
    inset: 0;
    background: rgba(244, 244, 240, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #333;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
}

/* Card info */
.prodcar-info {
    padding: 13px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.prodcar-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prodcar-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.prodcar-price-discount {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.prodcar-price-original {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .prodpage-layout {
        padding: 18px 16px;
        gap: 18px;
    }

    .filter-sidebar {
        width: 220px;
        min-width: 220px;
    }

    .prodgrid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 768px) {

    /* Topbar — wraps into 2 rows */
    .prodpage-topbar {
        padding: 10px 14px;
        gap: 8px;
        flex-wrap: wrap;
    }

    /* Row 1: filter btn + title */
    .filter-toggle-btn {
        order: 1;
        flex-shrink: 0;
    }

    .prodpage-title {
        order: 2;
        flex: 1;
        font-size: 15px;
    }

    /* Row 2: search takes full width */
    .search-box {
        order: 3;
        flex: 1 1 100%;
        /* full row */
        width: 100%;
    }

    .search-box input {
        width: 100%;
        flex: 1;
    }

    /* Sort floats beside (or below) search */
    .sort-box {
        order: 4;
        flex: 1 1 100%;
    }

    .custom-select {
        width: 100%;
    }

    /* Filter sidebar — drawer from left.
       top/height are set dynamically by JS to account for the real
       navbar height. CSS provides the base; JS overrides inline. */
    .filter-sidebar {
        position: fixed;
        /* top set by JS */
        left: 0;
        bottom: 0;
        width: 280px;
        min-width: 280px;
        border-radius: 0;
        z-index: 300;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
        box-shadow: none;
        /* Do NOT set height or top here — JS controls them */
    }

    .filter-sidebar.open {
        transform: translateX(0);
        box-shadow: 6px 0 32px rgba(0, 0, 0, 0.2);
    }

    /* Layout */
    .prodpage-layout {
        flex-direction: column;
        padding: 14px;
        gap: 14px;
    }

    /* Grid */
    .prodgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* No hover CTA on touch screens */
    .card-hover-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .prodpage-title {
        font-size: 13px;
    }

    .search-box input {
        font-size: 12px;
    }

    #productSearchBtn {
        padding: 9px 12px;
        font-size: 12px;
    }

    .prodgrid {
        gap: 10px;
    }

    .prodcar-info {
        padding: 10px 12px 12px;
    }

    .prodcar-title {
        font-size: 12.5px;
    }

    .prodcar-price-discount {
        font-size: 14px;
    }
}

/* === popular-products.css === */
/* ─── Popular Products Carousel ─────────────────────── */
.ppc-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 24px;
}

.ppc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.ppc-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--eerie-black);
    letter-spacing: -0.5px;
    position: relative;
}

.ppc-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.ppc-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppc-seeall {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 7px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.ppc-seeall:hover {
    background: var(--primary);
    color: var(--white);
}

.ppc-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gray200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--gunmetal);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    user-select: none;
    flex-shrink: 0;
}

.ppc-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ─── Track ─────────────────────────── */
.ppc-viewport {
    overflow: hidden;
}

.ppc-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Card ─────────────────────────── */
.ppc-card {
    flex: 0 0 220px;
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--linen);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.ppc-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

/* ─── Image ─────────────────────────── */
.ppc-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--gray100);
    overflow: hidden;
}

.ppc-img-wrapper .main-img,
.ppc-img-wrapper .hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ppc-img-wrapper .hover-img {
    opacity: 0;
    transform: scale(1.05);
}

.ppc-card:hover .main-img {
    opacity: 0;
    transform: scale(1.05);
}

.ppc-card:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

/* ─── Discount badge ─────────────────────────── */
.ppc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* ─── Info ─────────────────────────── */
.ppc-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ppc-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--eerie-black);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ppc-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ppc-price-original {
    font-size: 13px;
    color: var(--gray400);
    text-decoration: line-through;
}

.ppc-price-final {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

.ppc-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray600);
}

.ppc-stars {
    color: #f59e0b;
    font-size: 11px;
    letter-spacing: 1px;
}

.ppc-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 9px 0;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.2px;
    transition: background 0.2s;
}

.ppc-btn:hover {
    background: var(--hover-primary);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
    .ppc-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .ppc-section {
        padding: 40px 16px;
    }

    .ppc-title {
        font-size: 22px;
    }

    .ppc-card {
        flex: 0 0 180px;
    }
}

@media (max-width: 480px) {
    .ppc-card {
        flex: 0 0 155px;
    }

    .ppc-price-final {
        font-size: 15px;
    }
}

/* === preloader.css === */
/* ---------------------------
   LOGO + COLORFUL RING PRELOADER
---------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.4s ease;
}

.loader {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center Logo */
.loader-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    z-index: 10;
    animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid transparent;
    animation: rotate 1.5s linear infinite;
}

/* Ring 1 */
.loader span:nth-child(2) {
    border-top-color: var(--french-blue);
    border-left-color: var(--french-blue);
    animation-duration: 1.3s;
    box-shadow: 0 0 20px var(--shadow-primary);
}

/* Ring 2 */
.loader span:nth-child(3) {
    border-right-color: var(--pumpkin);
    border-bottom-color: var(--pumpkin);
    animation-duration: 1.7s;
    box-shadow: 0 0 20px var(--shadow-accent);
}

/* Ring 3 */
.loader span:nth-child(4) {
    border-top-color: var(--linen);
    border-bottom-color: var(--linen);
    animation-duration: 2s;
    box-shadow: 0 0 20px var(--shadow-secondary);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .loader {
        width: 80px;
        height: 80px;
    }

    .loader-logo {
        width: 30px;
        height: 30px;
    }

    .loader span {
        border-width: 4px;
    }
}

/* === promo-section.css === */
/* ==============================
   Ultra Short Promo Banner
   ============================== */

.promo-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: var(--ivory);
}

/* Clickable Card */
.promo-card {
    max-width: 1200px;
    width: 100%;
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    /* Very short height */
    aspect-ratio: 24 / 5;
    background-color: var(--secondary);
    box-shadow: 0 14px 34px var(--shadow-primary);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Banner Image */
.promo-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
}

/* Overlay */
.promo-overlay {
    position: absolute;
    inset: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    transition: background 0.4s ease;
}

/* Text Styling */
.promo-overlay h2 {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 700;
    margin: 0;
}

.promo-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Hover Effects */
.promo-card:hover {
    box-shadow: 0 22px 50px var(--shadow-accent);
}

.promo-card:hover img {
    transform: scale(1.05);
}

.promo-card:hover .promo-overlay {
    background: linear-gradient(180deg,
            rgba(6, 118, 208, 0.25),
            rgba(38, 37, 36, 0.75));
}

/* ==============================
   Responsive Adjustments
   ============================== */

@media (max-width: 768px) {
    .promo-section {
        padding: 30px 15px;
    }

    /* Slightly taller for mobile readability */
    .promo-card {
        aspect-ratio: 18 / 6;
    }

    .promo-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 18px;
    }

    .promo-overlay h2 {
        font-size: 20px;
    }

    .promo-overlay p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promo-card {
        aspect-ratio: 16 / 7;
    }
}

/* === page-not-found.css === */
/* ─── 404 Page ─────────────────────── */
.e404-page {
    font-family: 'DM Sans', sans-serif;
    background: var(--ivory);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Background blobs */
.e404-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.e404-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.e404-blob-1 {
    width: 420px;
    height: 420px;
    background: var(--primary);
    top: -120px;
    right: -100px;
}

.e404-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -80px;
    left: -60px;
}

.e404-blob-3 {
    width: 180px;
    height: 180px;
    background: var(--primary);
    bottom: 20%;
    right: 10%;
}

/* Floating product icons */
.e404-floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.e404-float {
    position: absolute;
    font-size: 22px;
    opacity: 0.12;
    animation: e404FloatUp 6s ease-in-out infinite;
}

.e404-float:nth-child(1) {
    left: 5%;
    top: 15%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.e404-float:nth-child(2) {
    left: 15%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.e404-float:nth-child(3) {
    left: 80%;
    top: 20%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.e404-float:nth-child(4) {
    left: 88%;
    top: 65%;
    animation-delay: 0.5s;
    animation-duration: 5s;
}

.e404-float:nth-child(5) {
    left: 45%;
    top: 5%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.e404-float:nth-child(6) {
    left: 60%;
    top: 80%;
    animation-delay: 1.5s;
    animation-duration: 6s;
}

.e404-float:nth-child(7) {
    left: 25%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.e404-float:nth-child(8) {
    left: 72%;
    top: 45%;
    animation-delay: 2.5s;
    animation-duration: 7s;
}

@keyframes e404FloatUp {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-18px) rotate(8deg);
    }

    66% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

/* Content */
.e404-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    width: 100%;
}

/* Giant 404 number */
.e404-number-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
}

.e404-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(100px, 22vw, 180px);
    font-weight: 800;
    letter-spacing: -6px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 3px #e5e7eb;
    user-select: none;
}

/* Animated cart */
.e404-cart-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: e404CartBounce 2s ease-in-out infinite;
}

@keyframes e404CartBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.e404-cart-svg {
    width: clamp(60px, 10vw, 90px);
    height: clamp(60px, 10vw, 90px);
    filter: drop-shadow(0 8px 24px rgba(6, 118, 208, 0.2));
}

.e404-cart-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    animation: e404BadgePop 2s ease-in-out infinite;
}

@keyframes e404BadgePop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* Orange blinking tag */
.e404-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 113, 0, 0.10);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.e404-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: e404Blink 1.4s ease-in-out infinite;
}

@keyframes e404Blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

/* Heading & sub */
.e404-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    color: var(--eerie-black);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.e404-sub {
    font-size: 15px;
    color: var(--gray600);
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 440px;
}

/* Search */
.e404-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--gray200);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    gap: 8px;
    margin: 0 auto 32px;
    max-width: 420px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.e404-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--shadow-primary);
}

.e404-search-icon {
    color: var(--gray400);
    flex-shrink: 0;
    display: flex;
}

.e404-search input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--eerie-black);
    font-family: 'DM Sans', sans-serif;
    flex: 1;
    min-width: 0;
}

.e404-search input::placeholder {
    color: var(--gray400);
}

.e404-search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.e404-search-btn:hover {
    background: var(--hover-primary);
}

/* CTA buttons */
.e404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.e404-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 4px 16px var(--shadow-primary);
    transition: background 0.2s, transform 0.15s;
}

.e404-btn-home:hover {
    background: var(--hover-primary);
    transform: translateY(-1px);
    color: var(--white);
}

.e404-btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 28px;
    background: transparent;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.e404-btn-shop:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
}

/* Category chips */
.e404-links-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray400);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.e404-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.e404-link-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 100px;
    font-size: 13px;
    color: var(--gunmetal);
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.e404-link-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 480px) {
    .e404-page {
        padding: 30px 16px;
    }

    .e404-num {
        letter-spacing: -4px;
    }

    .e404-search {
        padding: 5px 5px 5px 16px;
    }

    .e404-btn-home,
    .e404-btn-shop {
        padding: 10px 20px;
        font-size: 13px;
    }
}
