/* ═══════════════════════════════════════════
   UniArt Design System — Professional 2025
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    /* Brand */
    --brand: #E8470A;
    --brand-hover: #C93D08;
    --brand-light: #FFF2EE;
    --brand-mid: rgba(232,71,10,0.12);
    --brand-glow: 0 8px 28px rgba(232,71,10,0.28);
    /* Neutral */
    --ink: #0D0F12;
    --ink-2: #1E2330;
    --ink-3: #374151;
    --muted: #6B7280;
    --muted-2: #9CA3AF;
    --border: #E5E7EB;
    --border-2: #F3F4F6;
    --surface: #FFFFFF;
    --surface-2: #F9FAFB;
    --surface-3: #F3F4F6;
    /* Semantic */
    --green: #10B981;
    --green-bg: #ECFDF5;
    --amber: #F59E0B;
    --amber-bg: #FFFBEB;
    --red: #EF4444;
    --red-bg: #FEF2F2;
    /* Radii */
    --r-xs: 4px;
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 28px;
    /* Shadows */
    --sh-1: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --sh-2: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
    --sh-3: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    --sh-brand: 0 8px 28px rgba(232,71,10,0.28);
    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.22s var(--ease);
    /* Layout */
    --header-h: 64px;
    --sidebar: 260px;
}

/* ── Base ────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--brand);
    }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

/* ── Topbar ──────────────────────────────── */
.topbar {
    background: var(--ink-2);
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1px;
    padding: 8px 0;
}

    .topbar a {
        color: rgba(255,255,255,0.55);
        transition: color var(--t);
    }

        .topbar a:hover {
            color: var(--brand);
        }

/* ── Header ──────────────────────────────── */
.main-header {
    height: var(--header-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--t);
}

    .main-header.scrolled {
        box-shadow: var(--sh-2);
    }

    .main-header .container,
    .main-header .navbar {
        height: 100%;
    }

/* Logo */
.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.logo-accent {
    color: var(--brand);
}

/* Nav */
.nav-link {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--ink-3) !important;
    padding: 6px 12px !important;
    border-radius: var(--r-sm) !important;
    transition: all var(--t) !important;
    position: relative;
}

    .nav-link:hover {
        color: var(--brand) !important;
        background: var(--brand-light) !important;
    }

/* Search */
.search-wrap {
    position: relative;
}

.search-input {
    height: 38px;
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0 16px 0 40px;
    font-size: 13px;
    width: 240px;
    color: var(--ink);
    transition: all var(--t);
    outline: none;
}

    .search-input:focus {
        border-color: var(--brand);
        background: white;
        width: 280px;
        box-shadow: 0 0 0 3px var(--brand-mid);
    }

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-2);
    font-size: 12px;
    pointer-events: none;
}

/* Header icons */
.header-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-3);
    font-size: 15px;
    transition: all var(--t);
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
}

    .header-icon:hover {
        background: var(--brand-light);
        color: var(--brand);
    }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--brand);
    color: white;
    font-size: 9px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    line-height: 1;
}

/* Signin */
.btn-signin {
    height: 36px;
    padding: 0 18px;
    background: var(--brand);
    color: white !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--t);
    border: none;
    cursor: pointer;
}

    .btn-signin:hover {
        background: var(--brand-hover);
        transform: translateY(-1px);
        box-shadow: var(--sh-brand);
    }

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-3);
    padding: 6px;
    min-width: 180px;
}

.dropdown-item {
    border-radius: var(--r-sm);
    font-size: 13px;
    padding: 8px 12px;
    color: var(--ink-3);
    transition: all var(--t);
}

    .dropdown-item:hover {
        background: var(--brand-light);
        color: var(--brand);
    }

/* Discount nav */
@keyframes salePulse {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    40% {
        transform: translateY(-3px) scale(1.06);
    }
}

@keyframes saleGlow {
    0%,100% {
        color: var(--brand);
        text-shadow: 0 0 8px rgba(232,71,10,0.4);
    }

    50% {
        color: #ff3300;
        text-shadow: 0 0 18px rgba(255,51,0,0.6);
    }
}

.discount-nav-link {
    color: var(--brand) !important;
    font-weight: 800 !important;
    animation: salePulse 2.2s ease-in-out infinite, saleGlow 1.8s ease-in-out infinite;
    position: relative;
}

    .discount-nav-link::after {
        content: 'HOT';
        position: absolute;
        top: -9px;
        right: -2px;
        background: var(--brand);
        color: white;
        font-size: 7px;
        font-weight: 900;
        padding: 1px 4px;
        border-radius: 3px;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }

/* ═══════════════════════════════════════════
   PRODUCT CARD — Full Box, Professional
   ═══════════════════════════════════════════ */

.pc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow var(--t), transform var(--t), border-color var(--t);
    position: relative;
}

    .pc:hover {
        box-shadow: var(--sh-3);
        transform: translateY(-5px);
        border-color: transparent;
    }

/* ── Discount top strip ── */
.pc-discount-top {
    background: linear-gradient( 135deg, var(--brand), #FF6B35);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pc-discount-now {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.pc-discount-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.pc-discount-was {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    text-decoration: line-through;
    line-height: 1;
}

.pc-discount-pct {
    background: rgba(255,255,255,0.22);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* ── Image Box — FULL WIDTH ── */
.pc-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--surface-2);
    overflow: hidden;
    flex-shrink: 0;
}

.pc-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ← full box fill */
    object-position: center;
    transition: transform 0.5s var(--ease);
    display: block;
}

/* If product needs contain (transparent bg) */
.pc-img-box.contain .pc-img {
    object-fit: contain;
    padding: 16px;
    background: var(--surface-2);
}

.pc:hover .pc-img {
    transform: scale(1.06);
}

/* ── Overlay (actions) ── */
.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 6px;
    padding: 10px;
    transition: background var(--t);
    pointer-events: none;
}

.pc:hover .pc-overlay {
    background: rgba(0,0,0,0.04);
    pointer-events: all;
}

.pc-action-btn {
    width: 34px;
    height: 34px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--t);
    box-shadow: var(--sh-2);
    opacity: 0;
    transform: translateY(-6px);
}

.pc:hover .pc-action-btn {
    opacity: 1;
    transform: translateY(0);
}

.pc-action-btn:nth-child(2) {
    transition-delay: 0.04s;
}

.pc-action-btn:hover {
    background: var(--brand);
    color: white;
    transform: scale(1.1) !important;
}

.pc-action-btn.active {
    background: #FFF0F0;
    color: var(--red);
    opacity: 1;
    transform: translateY(0);
}

/* ── Badges ── */
.pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.pc-badge-sale {
    background: var(--brand);
    color: white;
}

.pc-badge-feat {
    background: var(--amber);
    color: white;
}

.pc-badge-offer {
    background: var(--green);
    color: white;
}

.pc-sold-out {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    pointer-events: none;
}

/* ── Info ── */
.pc-info {
    padding: 12px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pc-brand {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-2);
}

.pc-name-link {
    display: block;
}

.pc-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--t);
    margin: 0;
}

.pc-name-link:hover .pc-name {
    color: var(--brand);
}

/* Price (no discount) */
.pc-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 2px;
}

.pc-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.pc-unit {
    font-size: 11px;
    color: var(--muted-2);
}

/* Stock */
.pc-stock {
    font-size: 11px;
    font-weight: 600;
    margin-top: auto;
    padding-top: 4px;
}

.pc-stock-in {
    color: var(--green);
}

.pc-stock-low {
    color: var(--amber);
}

.pc-stock-out {
    color: var(--red);
}

/* ── Cart Button ── */
.pc-cart-btn {
    width: 100%;
    padding: 11px 14px;
    background: var(--surface-3);
    color: var(--ink-3);
    border: none;
    border-top: 1px solid var(--border);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
}

    .pc-cart-btn:hover:not(:disabled) {
        background: var(--brand);
        color: white;
        border-top-color: var(--brand);
    }

    .pc-cart-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

/* ── Shared section styles ── */
.sec-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand);
    margin-bottom: 4px;
}

.sec-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin: 0;
}

.sec-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    transition: all var(--t);
    border-bottom: 1.5px solid transparent;
    padding-bottom: 1px;
}

    .sec-link:hover {
        border-bottom-color: var(--brand);
        gap: 9px;
    }

/* ── Category card ── */
.cat-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.1rem 0.75rem 1rem;
    text-align: center;
    transition: all var(--t);
    display: block;
    color: var(--ink);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .cat-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, var(--brand-light), white);
        opacity: 0;
        transition: opacity var(--t);
    }

    .cat-card:hover {
        border-color: var(--brand);
        box-shadow: var(--sh-brand);
        transform: translateY(-3px);
        color: var(--brand);
    }

        .cat-card:hover::before {
            opacity: 1;
        }

.cat-ico {
    width: 58px;
    height: 58px;
    background: var(--brand-light);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.45rem;
    transition: all var(--t);
    overflow: hidden;
    position: relative;
}

    .cat-ico img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .cat-ico i {
        color: var(--brand);
    }

.cat-card:hover .cat-ico {
    background: var(--brand);
    transform: scale(1.08) rotate(-3deg);
}

    .cat-card:hover .cat-ico i {
        color: white;
    }

.cat-nm {
    font-size: 12.5px;
    font-weight: 600;
    position: relative;
}

/* ── USP Strip ── */
.usp-strip {
    background: white;
    border-bottom: 1px solid var(--border-2);
    padding: 0;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-right: 1px solid var(--border-2);
    flex: 1;
}

    .usp-item:last-child {
        border-right: none;
    }

.usp-ico {
    width: 36px;
    height: 36px;
    background: var(--brand-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 14px;
    flex-shrink: 0;
}

.usp-text .t {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.usp-text .s {
    font-size: 11px;
    color: var(--muted-2);
    line-height: 1.3;
}

/* ── Hero ── */
.hero-section {
    overflow: hidden;
}

.hero-slide {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

    .hero-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 95deg, rgba(8,10,18,0.82) 0%, rgba(8,10,18,0.4) 55%, transparent 100%);
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 440px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: white !important;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: all var(--t);
    box-shadow: 0 4px 20px rgba(232,71,10,0.4);
}

    .hero-btn:hover {
        background: var(--brand-hover);
        transform: translateY(-2px);
        box-shadow: var(--sh-brand);
        color: white !important;
    }

/* Carousel */
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    background: transparent;
    opacity: 1;
    transition: all 0.3s;
}

.carousel-indicators .active {
    width: 26px;
    border-radius: 4px;
    background: var(--brand);
    border-color: var(--brand);
}

.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.18);
    transition: all var(--t);
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: var(--brand);
        border-color: var(--brand);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 14px;
    height: 14px;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 86px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.42);
    z-index: 9999;
    transition: all var(--t);
    overflow: hidden;
}

    .whatsapp-float:hover {
        width: 155px;
        border-radius: 25px;
        color: white;
    }

.whatsapp-tooltip {
    display: none;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    margin-left: 6px;
}

.whatsapp-float:hover .whatsapp-tooltip {
    display: inline;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: all var(--t);
    box-shadow: var(--sh-brand);
    font-size: 13px;
}

    .back-to-top:hover {
        background: var(--brand-hover);
        transform: translateY(-2px);
    }

    .back-to-top.show {
        display: flex;
    }

/* ── Footer ── */
.main-footer {
    background: #0B0D14;
    color: rgba(255,255,255,0.6);
    margin-top: 5rem;
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo .logo-text {
    color: white;
}

.footer-desc {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    line-height: 1.75;
    margin: 14px 0 18px;
}

.newsletter-wrap {
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r);
    padding: 5px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 7px 12px;
    font-size: 13px;
    color: white;
    outline: none;
    min-width: 0;
}

    .newsletter-input::placeholder {
        color: rgba(255,255,255,0.3);
    }

.newsletter-btn {
    background: var(--brand);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--t);
}

    .newsletter-btn:hover {
        background: var(--brand-hover);
    }

.social-row {
    display: flex;
    gap: 6px;
    margin-top: 20px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all var(--t);
}

    .social-btn:hover {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
    }

.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        color: rgba(255,255,255,0.4);
        font-size: 13px;
        transition: all var(--t);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

        .footer-links a:hover {
            color: rgba(255,255,255,0.85);
            gap: 10px;
        }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

    .footer-contact-item i {
        color: var(--brand);
        font-size: 13px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .footer-contact-item span {
        font-size: 13px;
        color: rgba(255,255,255,0.4);
        line-height: 1.6;
    }

.footer-bottom {
    padding: 1.25rem 0;
}

    .footer-bottom p {
        font-size: 12px;
        color: rgba(255,255,255,0.2);
        margin: 0;
    }

.payment-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3px;
}

/* ── Breadcrumb ── */
.breadcrumb-section {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.breadcrumb {
    margin: 0;
    font-size: 12.5px;
}

.breadcrumb-item a {
    color: var(--muted);
    transition: color var(--t);
}

    .breadcrumb-item a:hover {
        color: var(--brand);
    }

.breadcrumb-item.active {
    color: var(--ink-3);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--muted-2);
}

/* ── Buttons ── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: var(--r);
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    line-height: 1;
}

    .btn-primary-custom:hover {
        background: var(--brand-hover);
        color: white;
        transform: translateY(-1px);
        box-shadow: var(--sh-brand);
    }

/* ── Toast ── */
.toast-container {
    z-index: 99999 !important;
}

/* ── Offer section bg ── */
.offer-wrap {
    background: linear-gradient( 135deg, #FFF8F5 0%, #FFF2EE 100%);
    border: 1px solid rgba(232,71,10,0.1);
    border-radius: var(--r-xl);
    padding: 1.75rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .search-input {
        width: 180px;
    }

    .hero-slide {
        min-height: 300px;
    }

    .usp-item {
        padding: 12px 16px;
    }
}

@media (max-width: 767px) {
    .topbar {
        display: none !important;
    }

    .hero-slide {
        min-height: 250px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .search-input {
        width: 150px;
    }

    .usp-strip {
        display: none;
    }
}
