/* ================================================================
   RENTORZO — PROFESSIONAL DESIGN SYSTEM v2.0
   Laptop Sales & Service — Premium UI
   ================================================================ */
@import url('rz-premium-fixes.css');

/* ── GOOGLE FONTS (loaded via HTML) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
    /* ── Brand Colors ── */
    --brand-red:        #E5271A;
    --brand-red-dark:   #B81F14;
    --brand-red-light:  #FFF0EF;
    --brand-red-glow:   rgba(229, 39, 26, 0.25);

    /* ── Dark Navy Palette ── */
    --navy-950:         #050A14;
    --navy-900:         #0A0E1A;
    --navy-800:         #0F1629;
    --navy-700:         #151C38;
    --navy-600:         #1E2947;

    /* ── Blue Accent ── */
    --blue-600:         #2563EB;
    --blue-500:         #3B82F6;
    --blue-400:         #60A5FA;
    --blue-glow:        rgba(37, 99, 235, 0.3);

    /* ── Neutral Palette ── */
    --ink-950:          #0A0A0A;
    --ink-900:          #111111;
    --ink-700:          #2D2D2D;
    --ink-500:          #555555;
    --ink-400:          #777777;
    --ink-300:          #999999;
    --ink-200:          #BBBBBB;
    --ink-100:          #E5E5E5;

    /* ── Surface Colors ── */
    --surface-white:    #FFFFFF;
    --surface-50:       #F8FAFC;
    --surface-100:      #F1F5F9;
    --surface-200:      #E2E8F0;
    --surface-300:      #CBD5E1;

    /* ── Semantic ── */
    --success:          #10B981;
    --warning:          #F59E0B;
    --danger:           #EF4444;

    /* ── Typography ── */
    --font-display:     'Inter', system-ui, sans-serif;
    --font-body:        'Inter', system-ui, -apple-system, sans-serif;
    
    /* ── Legacy Font Variables (Force Professional Font Everywhere) ── */
    --body-font-family: 'Inter', system-ui, sans-serif;
    --heading-font-family: 'Inter', system-ui, sans-serif;
    --section-heading-font-family: 'Inter', system-ui, sans-serif;
    --paragraph-font-family: 'Inter', system-ui, sans-serif;

    /* ── Spacing Scale ── */
    --sp-1: 4px;    --sp-2: 8px;    --sp-3: 12px;
    --sp-4: 16px;   --sp-5: 20px;   --sp-6: 24px;
    --sp-8: 32px;   --sp-10: 40px;  --sp-12: 48px;
    --sp-16: 64px;  --sp-20: 80px;

    /* ── Border Radius ── */
    --r-xs:  4px;   --r-sm:  8px;   --r-md:  12px;
    --r-lg:  16px;  --r-xl:  20px;  --r-2xl: 28px;
    --r-3xl: 40px;  --r-full: 9999px;

    /* ── Shadows ── */
    --sh-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --sh-sm:  0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --sh-md:  0 10px 25px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --sh-lg:  0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.05);
    --sh-xl:  0 32px 64px rgba(0,0,0,0.12), 0 16px 32px rgba(0,0,0,0.06);
    --sh-red: 0 8px 28px rgba(229,39,26,0.30);
    --sh-blue:0 8px 28px rgba(37,99,235,0.30);
    --sh-navy:0 16px 48px rgba(5,10,20,0.40);

    /* ── Transitions ── */
    --t-fast:   0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --t-base:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow:   0.40s cubic-bezier(0.4, 0, 0.2, 1);
    --t-bounce: 0.50s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Legacy aliases (keep existing code working) ── */
    --rz-red:        var(--brand-red);
    --rz-red-dark:   var(--brand-red-dark);
    --rz-red-light:  var(--brand-red-light);
    --rz-ink:        var(--ink-900);
    --rz-ink-2:      var(--ink-700);
    --rz-ink-3:      var(--ink-500);
    --rz-ink-4:      var(--ink-300);
    --rz-surface:    var(--surface-white);
    --rz-bg:         var(--surface-100);
    --rz-bg-2:       var(--surface-200);
    --rz-border:     rgba(0,0,0,0.07);
    --rz-border-md:  rgba(0,0,0,0.13);
    --rz-radius:     var(--r-lg);
    --rz-radius-lg:  var(--r-xl);
    --rz-radius-xl:  var(--r-2xl);
    --rz-shadow:     var(--sh-sm);
    --rz-shadow-lg:  var(--sh-lg);
    --rz-trans:      var(--t-base);
    --primary:       var(--brand-red);
    --accent:        var(--brand-red);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: var(--font-body) !important;
    background: var(--surface-white);
    color: var(--ink-900);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { pointer-events: none; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ================================================================
   SCROLLBAR
   ================================================================ */
* { scrollbar-width: thin; scrollbar-color: var(--surface-300) transparent; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-300); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }

/* ================================================================
   PROFESSIONAL HEADER — GLASSMORPHIC DARK
   ================================================================ */
.rz-hdr {
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--font-body);
    transition: var(--t-slow);
}

/* Top strip */
.rz-hdr-top {
    background: var(--navy-900);
    color: rgba(255,255,255,0.75);
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rz-hdr-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
}
.rz-hdr-top-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.rz-hdr-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rz-hdr-top a {
    color: rgba(255,255,255,0.75);
    transition: var(--t-fast);
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.rz-hdr-top a:hover { color: #fff; }
.rz-hdr-top span { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 5px; }
.rz-hdr-top-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.18);
    display: inline-block;
}
.rz-hdr-top .rz-i { width: 13px; height: 13px; flex-shrink: 0; }

/* Main bar */
.rz-hdr-main {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface-200);
    transition: var(--t-slow);
}
.rz-hdr.scrolled .rz-hdr-main {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.rz-hdr-main-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

/* Logo */
.rz-hdr-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
}
.rz-hdr-logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--t-base);
}
.rz-hdr-logo:hover .rz-hdr-logo-img { transform: scale(1.03); }

/* Nav */
.rz-hdr-nav {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}
.rz-hdr-nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
}
.rz-hdr-nav ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-700);
    border-radius: var(--r-sm);
    transition: var(--t-base);
    white-space: nowrap;
    position: relative;
}
.rz-hdr-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand-red);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.rz-hdr-nav ul li a:hover { color: var(--brand-red); background: var(--brand-red-light); }
.rz-hdr-nav ul li a:hover::after,
.rz-hdr-nav ul li a.is-active::after { transform: scaleX(1); }
.rz-hdr-nav ul li a.is-active { color: var(--brand-red); font-weight: 600; }

/* Header Actions */
.rz-hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

/* ── Search Form (desktop inline) ── */
.rz-hdr-search {
    display: flex;
    align-items: center;
    background: var(--surface-50);
    border: 1.5px solid var(--surface-200);
    border-radius: var(--r-full);
    overflow: hidden;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    flex: 1;
    max-width: 320px;
    min-width: 0;
}
.rz-hdr-search:focus-within {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px var(--brand-red-glow);
    background: #fff;
}
.rz-hdr-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 9px 14px;
    font-size: 13.5px;
    font-family: var(--font-body);
    color: var(--ink-900);
    min-width: 0;
}
.rz-hdr-search input::placeholder {
    color: var(--ink-300);
}
.rz-hdr-search button[type="submit"] {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--brand-red);
    border: none;
    border-radius: 0 var(--r-full) var(--r-full) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background var(--t-fast);
}
.rz-hdr-search button[type="submit"]:hover {
    background: var(--brand-red-dark);
}
.rz-hdr-search button[type="submit"] .rz-i {
    width: 16px;
    height: 16px;
}
/* Mobile: hide desktop search, show toggle */
.rz-hdr-search-mobile {
    display: none;
    background: var(--surface-white);
    border-top: 1px solid var(--surface-200);
    padding: 10px 0;
}
.rz-hdr-search-mobile.is-open { display: block; }
.rz-hdr-search-mobile .container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rz-hdr-search-mobile input {
    flex: 1;
    border: 1.5px solid var(--surface-200);
    border-radius: var(--r-full);
    padding: 9px 16px;
    font-size: 14px;
    outline: none;
    font-family: var(--font-body);
}
.rz-hdr-search-mobile input:focus { border-color: var(--brand-red); }
.rz-hdr-search-mobile button[type="submit"] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-red);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rz-hdr-search-mobile button[type="submit"] .rz-i { width: 16px; height: 16px; }
.rz-hdr-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--surface-200);
    background: var(--surface-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-700);
    cursor: pointer;
    transition: var(--t-base);
    position: relative;
    flex-shrink: 0;
}
.rz-hdr-icon-btn:hover {
    background: var(--surface-100);
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-1px);
}
.rz-hdr-icon-btn .rz-i { width: 18px; height: 18px; }
.rz-hdr-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: var(--brand-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* Burger */
.rz-hdr-burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--surface-200);
    background: var(--surface-white);
    align-items: center;
    justify-content: center;
    color: var(--ink-700);
    flex-shrink: 0;
    transition: var(--t-base);
}
.rz-hdr-burger:hover { background: var(--surface-100); }
.rz-hdr-burger .rz-i { width: 20px; height: 20px; }

/* Location dropdown */
.rz-hdr-loc { position: relative; }
.rz-hdr-city {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.80);
    font-size: 12.5px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--r-xs);
    transition: var(--t-fast);
}
.rz-hdr-city:hover { color: #fff; background: rgba(255,255,255,0.08); }
.rz-hdr-city .rz-i { width: 13px; height: 13px; }
.rz-hdr-city .rz-i-sm { width: 10px; height: 10px; }

.rz-hdr-loc-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: var(--surface-white);
    border: 1px solid var(--surface-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    z-index: 999;
    overflow: hidden;
    animation: dropIn 0.2s ease;
}
.rz-hdr-loc-menu.is-open { display: block; }

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rz-hdr-loc-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--surface-200);
}
.rz-hdr-loc-search .rz-i { width: 14px; height: 14px; color: var(--ink-400); flex-shrink: 0; }
.rz-hdr-loc-search input {
    border: none;
    outline: none;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--ink-900);
    background: transparent;
    width: 100%;
}
.rz-hdr-loc-list { max-height: 220px; overflow-y: auto; padding: 6px 8px 8px; }
.rz-hdr-loc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-700);
}
.rz-hdr-loc-item:hover, .rz-hdr-loc-item.is-active {
    background: var(--brand-red-light);
    color: var(--brand-red);
}
.rz-hdr-loc-item-img { width: 28px; height: 20px; border-radius: 4px; object-fit: cover; }

/* Login dropdown */
.loginmenu { position: relative; display: inline-block; }
.dropbtn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--surface-200);
    background: var(--surface-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-700);
    transition: var(--t-base);
    cursor: pointer;
    font-size: 14px;
}
.dropbtn:hover { background: var(--surface-100); border-color: var(--brand-red); color: var(--brand-red); }
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--surface-white);
    min-width: 160px;
    border: 1px solid var(--surface-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    z-index: 999;
    overflow: hidden;
    animation: dropIn 0.2s ease;
}
.dropdown-content a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--ink-700);
    transition: var(--t-fast);
}
.dropdown-content a:hover { background: var(--surface-100); color: var(--brand-red); }
.dropdown:hover .dropdown-content { display: block; }

/* Mobile location trigger */
.rz-hdr-loc-mobile { display: none; }

/* ── Login CTA Button ── */
.rz-hdr-login-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--brand-red);
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--r-full);
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.rz-hdr-login-cta:hover {
    background: var(--brand-red-dark);
    box-shadow: var(--sh-red);
    transform: translateY(-1px);
    color: #fff !important;
}
.rz-hdr-login-cta .rz-i { width: 15px; height: 15px; }

/* ── Cart badge ── */
.rz-hdr-cart { position: relative; }
.rz-hdr-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: var(--brand-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
    line-height: 1;
}

/* ── Account dropdown ── */
.rz-hdr-account { position: relative; }
.rz-hdr-account-drop {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: var(--surface-white);
    border: 1px solid var(--surface-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    z-index: 1000;
    overflow: hidden;
    animation: dropIn 0.2s ease;
}
.rz-hdr-account-drop.is-open { display: block; }
.rz-hdr-account-hi {
    padding: 12px 16px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--surface-100);
}
.rz-hdr-account-drop a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--ink-700);
    transition: var(--t-fast);
    text-decoration: none;
}
.rz-hdr-account-drop a:hover { background: var(--surface-100); color: var(--brand-red); }
.rz-hdr-account-drop a .rz-i { width: 15px; height: 15px; }
.rz-hdr-account-div { height: 1px; background: var(--surface-100); margin: 4px 0; }
.rz-hdr-logout { color: var(--brand-red) !important; }
.rz-hdr-logout:hover { background: var(--brand-red-light) !important; }

/* Responsive header */
@media (max-width: 991px) {
    .rz-hdr-nav { display: none !important; }
    .rz-hdr-burger { display: flex !important; }
    .rz-hdr-main-inner { justify-content: space-between; }
    .rz-hdr-search { display: none !important; }
    .rz-hdr-search-toggle { display: inline-flex !important; }
    .rz-hdr-loc-mobile-toggle { display: inline-flex !important; }
    .rz-hdr-login-cta span:not(.rz-i) { display: none; }
}
@media (max-width: 600px) {
    .loginmenu { display: none; }
    .rz-hdr-top { display: none; }
}

/* ================================================================
   SERVICES STRIP — PROFESSIONAL
   ================================================================ */
.rz-services-strip {
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
}
.rz-services-strip-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.rz-service-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: var(--t-base);
    cursor: default;
}
.rz-service-strip-item:last-child { border-right: none; }
.rz-service-strip-item:hover { background: rgba(255,255,255,0.04); }

.rz-service-strip-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: rgba(229,39,26,0.12);
    border: 1px solid rgba(229,39,26,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-red);
    font-size: 16px;
    transition: var(--t-base);
}
.rz-service-strip-item:hover .rz-service-strip-icon {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
}
.rz-service-strip-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.rz-service-strip-text span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.50);
}

@media (max-width: 767px) {
    .rz-services-strip-inner {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .rz-services-strip-inner::-webkit-scrollbar { display: none; }
    .rz-service-strip-item {
        min-width: 200px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* ================================================================
   SECTION COMMON STYLES
   ================================================================ */
.rz-section {
    padding: 72px 0;
}
.rz-section-sm { padding: 48px 0; }
.rz-section-lg { padding: 96px 0; }
.rz-section-dark {
    background: var(--navy-900);
    color: #fff;
}
.rz-section-gray { background: var(--surface-100); }
.rz-section-white { background: var(--surface-white); }

.rz-section-header { margin-bottom: 48px; }
.rz-section-header.centered { text-align: center; }

.rz-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.rz-badge-dark {
    background: rgba(229,39,26,0.15);
    color: #ff6b6b;
}
.rz-badge-blue {
    background: rgba(37,99,235,0.12);
    color: var(--blue-500);
}

.rz-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}
.rz-title span { color: var(--brand-red); }
.rz-title-dark { color: #fff; }
.rz-title-dark span { color: #ff6b6b; }
.rz-title-sm {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.rz-subtitle {
    font-size: 16px;
    color: var(--ink-400);
    margin-top: 12px;
    max-width: 560px;
    line-height: 1.7;
}
.rz-subtitle-dark { color: rgba(255,255,255,0.55); }
.rz-subtitle.centered { margin-left: auto; margin-right: auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.rz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--t-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.rz-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s;
}
.rz-btn:hover::before { opacity: 1; }

.rz-btn-primary {
    background: var(--brand-red);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(229,39,26,0.25);
}
.rz-btn-primary:hover {
    background: var(--brand-red-dark);
    color: #fff !important;
    box-shadow: var(--sh-red);
    transform: translateY(-2px);
}

.rz-btn-secondary {
    background: var(--navy-900);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(5,10,20,0.20);
}
.rz-btn-secondary:hover {
    background: var(--navy-700);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--sh-navy);
}

.rz-btn-blue {
    background: var(--blue-600);
    color: #fff !important;
    box-shadow: var(--sh-blue);
}
.rz-btn-blue:hover {
    background: #1d4ed8;
    color: #fff !important;
    transform: translateY(-2px);
}

.rz-btn-outline {
    background: transparent;
    color: var(--ink-900) !important;
    border: 2px solid var(--surface-300);
}
.rz-btn-outline:hover {
    background: var(--ink-900);
    color: #fff !important;
    border-color: var(--ink-900);
    transform: translateY(-2px);
}

.rz-btn-outline-white {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.3);
}
.rz-btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.rz-btn-sm { padding: 8px 18px; font-size: 13px; }
.rz-btn-lg { padding: 15px 34px; font-size: 16px; }
.rz-btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--r-full); }

/* Legacy button compat */
.btn-style {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: var(--r-full);
    background: var(--brand-red); color: #fff !important;
    font-size: 14px; font-weight: 600; border: none;
    transition: var(--t-base); cursor: pointer;
    box-shadow: 0 4px 16px rgba(229,39,26,0.25);
}
.btn-style:hover {
    background: var(--brand-red-dark); color: #fff !important;
    transform: translateY(-2px); box-shadow: var(--sh-red);
}
.btn-style2 {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: var(--r-full);
    background: transparent; color: var(--ink-900) !important;
    font-size: 14px; font-weight: 600;
    border: 2px solid var(--surface-300); transition: var(--t-base); cursor: pointer;
}
.btn-style2:hover {
    background: var(--ink-900); color: #fff !important;
    border-color: var(--ink-900); transform: translateY(-2px);
}

/* ================================================================
   PRODUCT CARDS — PREMIUM
   ================================================================ */
.rz-product-card {
    background: var(--surface-white);
    border: 1px solid var(--surface-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: var(--t-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.rz-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    border: 2px solid var(--brand-red);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
    z-index: 1;
}
.rz-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}
.rz-product-card:hover::before { opacity: 1; }

.rz-product-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface-100);
    position: relative;
}
.rz-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.rz-product-card:hover .rz-product-img img { transform: scale(1.08); }

.rz-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    background: var(--brand-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--r-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
}

.rz-product-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.rz-product-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand-red);
}
.rz-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-900);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--t-fast);
}
.rz-product-name:hover { color: var(--brand-red); }

.rz-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--surface-200);
    gap: 10px;
}
.rz-product-price-label {
    font-size: 10px;
    color: var(--ink-300);
    display: block;
    margin-bottom: 2px;
}
.rz-product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-red);
    font-family: var(--font-display);
}
.rz-product-cta {
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--brand-red);
    color: #fff !important;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    transition: var(--t-base);
    white-space: nowrap;
}
.rz-product-cta:hover {
    background: var(--brand-red-dark);
    transform: translateY(-1px);
    box-shadow: var(--sh-red);
}

/* ── Product Card (Trending Products) — unified definition ── */
.tp-card {
    background: var(--surface-white);
    border: 1px solid var(--surface-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(229,39,26,0.25);
}
/* Image wrapper: clean white bg + padding so product image is isolated */
.tp-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid var(--surface-100);
}
/* <a> tag wrapping the image must stretch to fill the flex container */
.tp-img-wrap > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.tp-img-wrap img,
.tp-img-wrap img.img-fluid {
    width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;  /* contain = no cropping; full product visible */
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.tp-card:hover .tp-img-wrap img { transform: scale(1.06); }
.tp-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.tp-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand-red);
}
.tp-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-900);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--t-fast);
    text-decoration: none;
    margin-bottom: 4px;
    flex: 1;
}
.tp-card-name:hover { color: var(--brand-red); }
.tp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--surface-100);
    gap: 10px;
}
.tp-card-price { display: flex; flex-direction: column; gap: 2px; }
.tp-card-price > span:first-child {
    font-size: 10px;
    font-weight: 500;
    color: var(--ink-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.price-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink-900);
    font-family: var(--font-display);
    display: flex;
    align-items: baseline;
    gap: 2px;
    letter-spacing: -0.02em;
}
.price-duration { font-size: 11px; font-weight: 500; color: var(--ink-300); }
.tp-card-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--navy-900);
    color: #fff !important;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    transition: var(--t-base);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.tp-card-btn:hover {
    background: var(--brand-red);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229,39,26,0.25);
}

/* ================================================================
   CATEGORY CARDS — PROFESSIONAL
   ================================================================ */
.rz-cat-card {
    background: var(--surface-white);
    border-radius: var(--r-xl);
    border: 1.5px solid var(--surface-200);
    padding: 18px 12px 16px;
    text-align: center;
    transition: var(--t-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.rz-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-red-light), transparent 60%);
    opacity: 0;
    transition: opacity var(--t-base);
}
.rz-cat-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--sh-md);
}
.rz-cat-card:hover::before { opacity: 1; }

.rz-cat-img-wrap {
    width: 56px; height: 56px;
    border-radius: var(--r-full);
    background: var(--surface-100);
    border: 1.5px solid var(--surface-200);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    transition: var(--t-bounce);
    position: relative; z-index: 1;
}
.rz-cat-card:hover .rz-cat-img-wrap {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.1);
}
.rz-cat-img-wrap img { max-width: 65%; max-height: 65%; object-fit: contain; }
.rz-cat-card:hover .rz-cat-img-wrap img { filter: brightness(0) invert(1); }
.rz-cat-name {
    font-size: 12px; font-weight: 600;
    color: var(--ink-700); line-height: 1.3; margin: 0;
    position: relative; z-index: 1;
    transition: color var(--t-fast);
}
.rz-cat-card:hover .rz-cat-name { color: var(--brand-red); }

.rz-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}
@media (min-width: 480px) {
    .rz-category-grid { grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: 14px; }
}
@media (min-width: 768px) {
    .rz-category-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }
}

/* ================================================================
   WHY CHOOSE US — PROFESSIONAL CARDS
   ================================================================ */
.rz-why-card {
    background: var(--surface-white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-200);
    padding: 28px 24px;
    height: 100%;
    transition: var(--t-slow);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.rz-why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--blue-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}
.rz-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.rz-why-card:hover::after { transform: scaleX(1); }

@media (min-width: 768px) {
    .rz-why-card { flex-direction: column; }
}

.rz-why-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: var(--r-lg);
    background: var(--brand-red-light);
    border: 1px solid rgba(229,39,26,0.12);
    display: flex; align-items: center; justify-content: center;
    transition: var(--t-bounce);
}
.rz-why-card:hover .rz-why-icon {
    background: var(--brand-red);
    transform: scale(1.1) rotate(-3deg);
}
.rz-why-icon img {
    width: 30px; height: 30px;
    object-fit: cover; border-radius: var(--r-sm);
    transition: filter var(--t-fast);
}
.rz-why-card:hover .rz-why-icon img { filter: brightness(0) invert(1); }
.rz-why-card h5 {
    font-size: 15px; font-weight: 700;
    color: var(--ink-900); margin-bottom: 6px;
}
.rz-why-card p {
    font-size: 13px; color: var(--ink-400);
    line-height: 1.65; margin: 0;
}

/* ================================================================
   BLOG CARDS
   ================================================================ */
.rz-blog-card {
    background: var(--surface-white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-200);
    overflow: hidden;
    height: 100%;
    transition: var(--t-slow);
    display: flex;
    flex-direction: column;
}
.rz-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.rz-blog-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}
.rz-blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.rz-blog-card:hover .rz-blog-img img { transform: scale(1.06); }
.rz-blog-body {
    padding: 20px 22px 22px;
    flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.rz-blog-date { font-size: 11px; color: var(--ink-300); font-weight: 500; }
.rz-blog-title {
    font-size: 15px; font-weight: 700;
    color: var(--ink-900); line-height: 1.4;
    transition: color var(--t-fast);
}
.rz-blog-card:hover .rz-blog-title { color: var(--brand-red); }
.rz-blog-excerpt {
    font-size: 13px; color: var(--ink-400);
    line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.rz-blog-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600;
    color: var(--brand-red) !important;
    margin-top: 8px; transition: gap var(--t-fast);
}
.rz-blog-card:hover .rz-blog-btn { gap: 8px; }

/* ================================================================
   SEO SECTION
   ================================================================ */
.rz-seo-section {
    padding: 64px 0;
    background: var(--surface-100);
}
.rz-seo-card {
    background: var(--surface-white);
    border-radius: var(--r-2xl);
    border: 1px solid var(--surface-200);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}
.rz-seo-card .col-12.text-center { padding: 36px 36px 0; }
.rz-seo-card .col-md-8 { padding: 28px 36px 40px; }
.rz-seo-card .col-md-4 { padding: 0 !important; margin: 0 !important; }
@media (max-width: 767px) {
    .rz-seo-card .col-12.text-center, .rz-seo-card .col-md-8 { padding: 28px 20px; }
}
.rz-seo-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800; color: var(--ink-900) !important;
    letter-spacing: -0.015em;
}
.rz-seo-sub { font-size: 14px; color: var(--ink-400); margin-top: 6px; }
.rz-seo-heading {
    font-size: 14px; font-weight: 700;
    color: var(--ink-900); padding-left: 12px;
    border-left: 3px solid var(--brand-red);
    margin: 20px 0 8px;
}
.rz-seo-content p {
    font-size: 14px; color: var(--ink-500);
    line-height: 1.75; margin-bottom: 8px;
}
.rz-seo-links {
    list-style: none; padding: 0; margin: 16px 0 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.rz-seo-links li { margin: 0 !important; }
.rz-seo-links li a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: var(--surface-100);
    color: var(--ink-700); border-radius: var(--r-full);
    border: 1px solid var(--surface-200);
    font-weight: 600; font-size: 13px; transition: var(--t-base);
}
.rz-seo-links li a:hover {
    background: var(--brand-red); color: #fff;
    border-color: var(--brand-red); transform: translateY(-1px);
}
.rz-seo-img {
    width: 100%; height: 100%; min-height: 250px;
    object-fit: cover; display: block;
}

/* ================================================================
   REVIEWS SECTION
   ================================================================ */
.rz-reviews {
    padding: 72px 0;
    background: var(--surface-white);
}
.rentorzo-google-review-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; border-radius: var(--r-full);
    background: var(--brand-red); color: #fff !important;
    font-weight: 700; font-size: 14px;
    box-shadow: var(--sh-red); transition: var(--t-base);
}
.rentorzo-google-review-btn:hover {
    background: var(--brand-red-dark); color: #fff !important;
    transform: translateY(-2px); box-shadow: 0 12px 32px rgba(229,39,26,0.35);
}
.rentorzo-google-review-btn-wrap { text-align: center; margin-top: 32px; }

/* ================================================================
   BRANDS SECTION
   ================================================================ */
.rz-brands {
    padding: 40px 0;
    background: var(--surface-100);
    border-top: 1px solid var(--surface-200);
}
.brand-img img {
    height: 34px; object-fit: contain;
    opacity: 0.4; transition: var(--t-base);
    display: block; margin: 0 auto;
    filter: grayscale(1);
}
.brand-img:hover img { opacity: 1; filter: grayscale(0); }

/* ================================================================
   BANNER SECTIONS
   ================================================================ */
.custom-banner { padding: 20px 0; background: var(--surface-100); }
.custom-banner img {
    border-radius: var(--r-2xl) !important;
    width: 100%; display: block;
}
.custom-wrap { position: relative; }
.custom-info {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 36px; pointer-events: none;
}
.custom-text h2 {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 34px);
    font-weight: 800; color: #fff; margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.custom-text span {
    font-size: 14px; color: rgba(255,255,255,0.8);
    display: block; margin-bottom: 20px;
}
.custom-link {
    display: inline-flex; padding: 11px 24px;
    background: #fff; color: var(--ink-900);
    border-radius: var(--r-full); font-size: 13px; font-weight: 700;
    pointer-events: all; transition: var(--t-base);
    box-shadow: var(--sh-md);
}
.custom-link:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ================================================================
   CART DRAWER
   ================================================================ */
.cart-drawer {
    position: fixed; top: 0; right: 0;
    width: 100%; max-width: 400px; height: 100%;
    background: var(--surface-white); z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column;
    box-shadow: -12px 0 48px rgba(0,0,0,0.15);
}
.cart-drawer.active, .cart-drawer.open { transform: translateX(0); }
.drawer-header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--surface-200);
    background: var(--navy-900);
}
.drawer-header-title { font-size: 16px; font-weight: 700; margin: 0; color: #fff; }
.drawer-close-btn {
    background: rgba(255,255,255,0.1); border: none;
    color: rgba(255,255,255,0.7); font-size: 18px;
    width: 32px; height: 32px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--t-fast);
}
.drawer-close-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
.drawer-inner { flex: 1; overflow-y: auto; }
.drawer-scrollable { padding: 16px 20px; }
.drawer-cart-empty {
    display: flex; align-items: center;
    justify-content: center; flex: 1; padding: 40px 20px; text-align: center;
}
.drawer-cart-empty h2 { font-size: 16px; color: var(--ink-400); margin-bottom: 16px; }
.cart-item {
    display: flex; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--surface-200);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
    width: 72px; height: 60px; border-radius: var(--r-md);
    overflow: hidden; flex-shrink: 0; background: var(--surface-100);
    border: 1px solid var(--surface-200);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name a { font-size: 13px; font-weight: 600; color: var(--ink-900); }
.cart-item-name a:hover { color: var(--brand-red); }
.price { font-size: 14px; font-weight: 700; color: var(--brand-red); }
.cart-remove {
    background: var(--surface-100); border: 1px solid var(--surface-200);
    width: 28px; height: 28px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink-400); transition: var(--t-fast);
}
.cart-remove:hover { background: var(--brand-red-light); color: var(--brand-red); border-color: rgba(229,39,26,0.2); }
.drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--surface-200);
    background: var(--surface-50);
}
.drawer-block { width: 100%; }
.cart-checkout-btn .btn { width: 100%; justify-content: center; }

/* ================================================================
   MOBILE MENU OVERLAY
   ================================================================ */
.bg-screen {
    position: fixed; inset: 0;
    background: rgba(5,10,20,0.6);
    backdrop-filter: blur(4px);
    z-index: 1001; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.bg-screen.active { opacity: 1; pointer-events: all; }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 300px; background: var(--surface-white);
    z-index: 1002; transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column; overflow-y: auto;
    box-shadow: 12px 0 48px rgba(0,0,0,0.15);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-contents { padding-bottom: 32px; }
.menu-close {
    padding: 18px 20px 16px;
    border-bottom: 1px solid var(--surface-200);
    display: flex; justify-content: space-between;
    align-items: center;
    background: var(--navy-900);
}
.menu-close-btn {
    background: rgba(255,255,255,0.1); border: none;
    border-radius: var(--r-sm); width: 32px; height: 32px;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.7);
    transition: var(--t-fast);
}
.menu-close-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
.main-menu { list-style: none; padding: 8px 0; margin: 0; }
.menu-link a.link-title {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px; font-size: 14px; font-weight: 500;
    color: var(--ink-700) !important; text-decoration: none;
    transition: var(--t-fast); border-left: 3px solid transparent;
}
.menu-link a.link-title:hover {
    background: var(--surface-100);
    color: var(--brand-red) !important;
    border-left-color: var(--brand-red);
}
.menu-link a.btn { margin: 12px 20px; }

/* ================================================================
   SEARCH MODAL
   ================================================================ */
.modal.fade #searchmodal .modal-dialog { max-width: 560px; }
.crap-search {
    background: var(--surface-white);
    border-radius: var(--r-xl); padding: 24px; position: relative;
}
.pop-close {
    position: absolute; top: 14px; right: 14px;
    background: var(--surface-100); border: 1px solid var(--surface-200);
    border-radius: var(--r-sm); width: 32px; height: 32px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--ink-400); transition: var(--t-fast);
}
.pop-close:hover { background: var(--surface-200); }
.form-search {
    display: flex; align-items: center; gap: 12px;
    background: var(--surface-100); border-radius: var(--r-full);
    padding: 12px 18px; border: 2px solid var(--surface-200);
    transition: border-color var(--t-fast);
}
.form-search:focus-within { border-color: var(--brand-red); }
.input-text {
    flex: 1; border: none; background: transparent;
    outline: none; font-size: 15px; color: var(--ink-900);
    font-family: var(--font-body);
}
.input-text::placeholder { color: var(--ink-300); }
.search-btn {
    background: none; border: none; cursor: pointer;
    color: var(--brand-red); font-size: 18px;
}

/* ================================================================
   CITY MODAL
   ================================================================ */
#news-letter-modal .modal-content {
    border-radius: var(--r-2xl);
    border: 1px solid var(--surface-200);
    box-shadow: var(--sh-xl); overflow: hidden;
}
#news-letter-modal .modal-body { padding: 32px; }
.close-btn {
    position: absolute; top: 16px; right: 16px;
    background: var(--surface-100); border: 1px solid var(--surface-200);
    border-radius: var(--r-full); width: 34px; height: 34px;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; font-size: 16px; color: var(--ink-400);
    transition: var(--t-fast);
}
.close-btn:hover { background: var(--surface-200); }
.grid-container {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-top: 20px;
}
@media (max-width: 400px) { .grid-container { grid-template-columns: repeat(2, 1fr); } }
.city {
    border: 1.5px solid var(--surface-200);
    border-radius: var(--r-xl); padding: 14px 10px 12px;
    text-align: center; cursor: pointer;
    transition: var(--t-bounce); font-size: 13px;
    font-weight: 600; color: var(--ink-700);
}
.city:hover {
    border-color: var(--brand-red);
    background: var(--brand-red-light);
    color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}
.city img {
    width: 100%; height: 60px; object-fit: cover;
    border-radius: var(--r-md); margin-bottom: 8px; display: block;
}

/* ================================================================
   BOTTOM NAV (Mobile)
   ================================================================ */
.bottom-menu {
    display: flex; position: fixed;
    bottom: 0; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--surface-200);
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .bottom-menu { display: none !important; } }
.bottom-menu-element {
    list-style: none; display: flex; width: 100%;
    justify-content: space-around; margin: 0; padding: 0;
}
.bottom-menu-wrap { flex: 1; }
.bottom-menu-wrapper { display: flex; justify-content: center; }
.bottom-menu-wrapper a,
.bottom-menu-home, .bottom-menu-collection,
.bottom-menu-user, .bottom-menu-wishlist {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; gap: 3px !important;
    font-size: 10px !important; color: var(--ink-400) !important;
    text-decoration: none !important; padding: 4px 8px !important;
    transition: var(--t-base) !important;
}
.bottom-menu-wrapper a:hover, .bottom-menu-wrapper a.active {
    color: var(--brand-red) !important;
}
.bottom-menu-title { font-size: 10px; font-weight: 500; }
.bottom-menu-icon svg { width: 22px; height: 22px; }
.bottom-menu-icon-wrap { position: relative; }

@media (max-width: 767px) {
    main { padding-bottom: 72px; }
    body > main, body > div > main { padding-bottom: 72px; }
}

/* ================================================================
   SLIDER
   ================================================================ */
.slider-content { padding: 20px 0 24px; background: var(--surface-100); }
.slider-content .container { padding: 0 16px; }
.home-slider .item { padding: 0 5px; }
.slider-image img {
    border-radius: var(--r-2xl) !important;
    width: 100%; display: block; object-fit: cover;
    transition: transform 0.5s ease;
}
.home-slider .owl-dots { margin-top: 16px !important; text-align: center; }
.home-slider .owl-dot span {
    width: 8px !important; height: 8px !important;
    background: var(--surface-300) !important;
    border-radius: 999px !important; margin: 0 4px !important;
    transition: var(--t-base) !important;
}
.home-slider .owl-dot.active span {
    width: 28px !important;
    background: var(--brand-red) !important;
}

@media (max-width: 640px) { .desk-img { display: none !important; } .mobile-img { display: block !important; } }
@media (min-width: 641px) { .mobile-img { display: none !important; } .desk-img { display: block !important; } }

/* ================================================================
   SWIPER NAV
   ================================================================ */
.swiper-buttons { position: static !important; display: flex; justify-content: center; gap: 10px; margin-top: 24px; width: 100% !important; }
.swiper-prev, .swiper-next {
    width: 42px !important; height: 42px !important;
    border-radius: var(--r-full) !important;
    border: 2px solid var(--surface-200) !important;
    background: var(--surface-white) !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important; cursor: pointer !important;
    transition: var(--t-base) !important; color: var(--ink-700) !important;
}
.swiper-prev:hover, .swiper-next:hover {
    background: var(--brand-red) !important;
    border-color: var(--brand-red) !important; color: #fff !important;
    transform: scale(1.05);
}
.swiper-pagination-bullet { background: var(--surface-300) !important; }
.swiper-pagination-bullet-active { background: var(--brand-red) !important; }

/* ================================================================
   SECTION SPACING RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
    .rz-section { padding: 52px 0; }
    .rz-section-sm { padding: 36px 0; }
    .rz-section-lg { padding: 64px 0; }
    .rz-section-header { margin-bottom: 32px; }
    .rz-title { font-size: clamp(22px, 6vw, 32px); }
    .rz-subtitle { font-size: 14px; }
}

/* ================================================================
   PRODUCT ACTION HIDE
   ================================================================ */
.product-action { display: none !important; }
.mobile-vega { display: none !important; }

/* ================================================================
   SECTION BADGE / TITLE (legacy classes)
   ================================================================ */
.rz-section-badge {
    display: inline-flex; align-items: center;
    padding: 5px 14px; background: var(--brand-red-light);
    color: var(--brand-red); border-radius: var(--r-full);
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 12px;
}
.rz-section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800; color: var(--ink-900);
    line-height: 1.2; margin: 0; letter-spacing: -0.02em;
}
.rz-section-title span { color: var(--brand-red); }
.rz-section-sub {
    font-size: 15px; color: var(--ink-400); margin-top: 10px;
}
.rz-section-header { margin-bottom: 40px; }

/* ================================================================
   COLLECTION BUTTON
   ================================================================ */
.collection-button { text-align: center; margin-top: 32px; }

/* ================================================================
   CONTAINER RESPONSIVE
   ================================================================ */
.container { padding-left: 16px; padding-right: 16px; }
@media (min-width: 768px) { .container { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1200px) { .container { padding-left: 32px; padding-right: 32px; } }

/* ================================================================
   MODAL BASE
   ================================================================ */
.modal-content { border-radius: var(--r-xl); border: 1px solid var(--surface-200); }
.modal-header { border-bottom: 1px solid var(--surface-200); padding: 16px 20px; }
.modal-quickview { font-size: 15px; font-weight: 700; color: var(--ink-900); }

/* ================================================================
   STATS COUNTER SECTION (NEW)
   ================================================================ */
.rz-stats-section {
    padding: 60px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}
.rz-stats-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,39,26,0.12), transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.rz-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
@media (max-width: 767px) { .rz-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.rz-stat-item {
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.rz-stat-item:last-child { border-right: none; }
.rz-stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.rz-stat-number span { color: var(--brand-red); }
.rz-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ================================================================
   PROFESSIONAL PAGE HERO (for inner pages)
   ================================================================ */
.rz-page-hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    padding: 56px 0 52px;
    position: relative;
    overflow: hidden;
}
.rz-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.rz-page-hero-content { position: relative; z-index: 1; }
.rz-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800; color: #fff;
    letter-spacing: -0.02em; margin-bottom: 8px;
}
.rz-page-hero p { font-size: 15px; color: rgba(255,255,255,0.6); margin: 0; }
.rz-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.rz-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.rz-breadcrumb a:hover { color: #fff; }
.rz-breadcrumb span { color: rgba(255,255,255,0.25); }
.rz-breadcrumb .current { color: var(--brand-red); font-weight: 500; }

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.rz-float-btn {
    position: fixed;
    width: 52px; height: 52px;
    border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center;
    z-index: 998; text-decoration: none;
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), opacity 0.3s, visibility 0.3s;
}
.rz-float-btn:hover { transform: scale(1.1) !important; }
.call-btn {
    bottom: 96px; right: 16px;
    background: #0066FF;
    box-shadow: 0 6px 24px rgba(0,102,255,.40);
}
.call-btn::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid #0066FF;
    animation: rzPulse 2.2s cubic-bezier(.22,1,.36,1) infinite;
}
@keyframes rzPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.7); opacity: 0; }
}
.wa-btn {
    bottom: 36px; right: 16px;
    background: #25D366;
    box-shadow: 0 6px 24px rgba(37,211,102,.42);
}
.rz-float-btn.rz-hide-on-footer { opacity: 0; visibility: hidden; pointer-events: none; }

@media (min-width: 768px) {
    .call-btn { bottom: 90px; right: 20px; }
    .wa-btn { bottom: 28px; right: 20px; }
}
@media (max-width: 767px) {
    .call-btn { bottom: 84px; right: 14px; }
    .wa-btn { bottom: 24px; right: 14px; }
    .rz-float-btn { width: 48px; height: 48px; }
}

/* ================================================================
   KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Shimmer loading ── */
.rz-shimmer {
    background: linear-gradient(90deg, var(--surface-100) 25%, var(--surface-200) 50%, var(--surface-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ================================================================
   PROFESSIONAL CATEGORY SECTION OVERRIDE
   ================================================================ */
.rz-category-section { padding: 64px 0; background: var(--surface-white); }

/* ================================================================
   TRENDING PRODUCTS SECTION
   ================================================================ */
.rz-trending, .Trending-product {
    padding: 64px 0 !important;
    background: var(--surface-100) !important;
}

/* ================================================================
   WHY RENT SECTION
   ================================================================ */
.rz-why-section { padding: 72px 0; background: var(--surface-white); }

/* ================================================================
   BLOG SECTION
   ================================================================ */
.rz-blog { padding: 72px 0; background: var(--surface-100); }

/* ================================================================
   PRINT & ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================================
   RENTORZO — PREMIUM FIXES & ADDITIONS
   Fixes layout breakage across product, category, and home slider
   ================================================================ */

/* ── 1. HOME SLIDER FIXES ── */
.slider-content {
    padding: 24px 0 48px;
    background: var(--surface-50);
}
.slider-content .home-slider {
    border-radius: var(--rz-radius-xl);
    overflow: hidden;
    box-shadow: var(--rz-shadow-lg);
}
.slider-content .slider-image-info img.desk-img {
    width: 100%;
    height: auto;
    aspect-ratio: 21/9;
    object-fit: cover;
    border-radius: var(--rz-radius-xl);
    display: block;
}
.slider-content .slider-image-info img.mobile-img {
    display: none;
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--rz-radius-xl);
}
@media (max-width: 768px) {
    .slider-content .slider-image-info img.desk-img { display: none; }
    .slider-content .slider-image-info img.mobile-img { display: block; }
}

/* ── 2. GLOBAL HERO (Used in categories, cart, etc) ── */
.rz-hero {
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--surface-white);
}
.rz-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 120%, rgba(229,39,26,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.rz-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.rz-hero h1 span { color: var(--brand-red); }
.rz-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 24px; }
.rz-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); }
.rz-breadcrumb a { color: var(--surface-white); text-decoration: none; transition: var(--t-fast); }
.rz-breadcrumb a:hover { color: var(--brand-red); }

/* ── 3. PRODUCT DETAILS PAGE (.pd-*) ── */
.pd-hero {
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
    padding: 60px 24px;
    text-align: center;
    color: var(--surface-white);
    position: relative;
}
.pd-hero-badge { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.1); border-radius: 99px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.pd-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.pd-hero h1 span { color: var(--brand-red); }
.pd-hero p { font-size: 16px; color: rgba(255,255,255,0.7); }
.pd-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; margin-top: 24px; color: rgba(255,255,255,0.5); }
.pd-hero-breadcrumb a { color: var(--surface-white); }
.pd-hero-breadcrumb .current { color: var(--brand-red); }

.pd-page { padding: 60px 0; background: var(--surface-50); }
.pd-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 991px) { .pd-grid { grid-template-columns: 1fr; gap: 40px; } }

.pd-gallery { position: sticky; top: 120px; }
.pd-main-wrap { position: relative; background: var(--surface-white); border-radius: var(--rz-radius-xl); padding: 24px; box-shadow: var(--rz-shadow); margin-bottom: 20px; overflow: hidden; }
.pd-badges { position: absolute; top: 20px; left: 20px; z-index: 10; display: flex; gap: 8px; }
.pd-badge { padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; color: #fff; }
.pd-badge-rent { background: var(--navy-900); }
.pd-badge-avail { background: var(--success); display: flex; align-items: center; gap: 6px; }
.pd-badge-avail-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pdPulse 2s infinite; }
@keyframes pdPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); } 70% { box-shadow: 0 0 0 6px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

.pd-main-figure { width: 100%; aspect-ratio: 4/3; background-size: contain; background-position: center; background-repeat: no-repeat; }
.pd-main-figure img { opacity: 0; width: 100%; height: 100%; }

.pd-thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.pd-thumb { width: 80px; height: 80px; flex-shrink: 0; background: var(--surface-white); border-radius: var(--rz-radius-lg); padding: 8px; cursor: pointer; border: 2px solid transparent; transition: var(--t-fast); box-shadow: var(--sh-xs); }
.pd-thumb:hover, .pd-thumb.active { border-color: var(--brand-red); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }

.pd-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; padding: 24px; background: var(--surface-white); border-radius: var(--rz-radius-xl); box-shadow: var(--sh-xs); }
.pd-trust-item { text-align: center; }
.pd-trust-icon { width: 40px; height: 40px; margin: 0 auto 10px; background: var(--brand-red-light); color: var(--brand-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pd-trust-icon svg { width: 20px; height: 20px; }
.pd-trust-label { font-size: 12px; font-weight: 600; color: var(--ink-700); line-height: 1.2; display: block; }

.pd-info { display: flex; flex-direction: column; gap: 24px; }
.pd-category { font-size: 13px; font-weight: 700; color: var(--brand-red); text-transform: uppercase; letter-spacing: 1px; }
.pd-name { font-size: 32px; font-weight: 800; color: var(--ink-900); line-height: 1.2; margin: -12px 0 0; }
.pd-price-wrap { display: flex; align-items: baseline; gap: 12px; padding-bottom: 24px; border-bottom: 1px solid var(--surface-200); }
.pd-price { font-size: 36px; font-weight: 800; color: var(--navy-900); }
.pd-duration { font-size: 15px; font-weight: 500; color: var(--ink-500); }

/* ── 4. CATEGORY GRID (.cat-*) ── */
.cat-page { padding: 80px 0; background: var(--surface-50); }
.cat-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.cat-eyebrow { font-size: 14px; font-weight: 700; color: var(--brand-red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.cat-title { font-size: 36px; font-weight: 800; color: var(--ink-900); margin: 0; }
.cat-count { font-size: 15px; font-weight: 500; color: var(--ink-500); padding: 8px 16px; background: var(--surface-200); border-radius: 99px; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.cat-card { background: var(--surface-white); border-radius: var(--rz-radius-xl); overflow: hidden; box-shadow: var(--sh-sm); transition: var(--t-bounce); display: flex; flex-direction: column; text-decoration: none; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.cat-card-img { position: relative; aspect-ratio: 4/3; background: #fff; padding: 24px; display: flex; align-items: center; justify-content: center; }
.cat-card-img img { width: 100%; height: 100%; object-fit: contain; z-index: 2; transition: var(--t-slow); }
.cat-card:hover .cat-card-img img { transform: scale(1.08); }
.cat-card-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.03) 100%); z-index: 1; }
.cat-card-arrow { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: var(--surface-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-md); opacity: 0; transform: scale(0.8) translate(-10px, 10px); transition: var(--t-bounce); z-index: 3; color: var(--navy-900); font-size: 18px; }
.cat-card:hover .cat-card-arrow { opacity: 1; transform: scale(1) translate(0, 0); }
.cat-card-body { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--surface-100); background: var(--surface-white); }
.cat-card-name { font-size: 18px; font-weight: 700; color: var(--ink-900); margin-bottom: 4px; }
.cat-card-sub { font-size: 13px; font-weight: 500; color: var(--ink-500); }
.cat-card-cta { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-red-light); color: var(--brand-red); display: flex; align-items: center; justify-content: center; transition: var(--t-fast); }
.cat-card:hover .cat-card-cta { background: var(--brand-red); color: #fff; }

/* ── 5. TRENDING PRODUCTS SECTION ── */
.rz-trending {
    padding: 80px 0;
    background: var(--surface-50);
    position: relative;
}
.rz-trending::before {
    display: none;
}
.collection-wrap { position: relative; margin-top: 40px; }
.collection-slider { padding-bottom: 32px; }

/* Swiper navigation for trending */
.swiper-buttons-wrap { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.swiper-buttons-wrap button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--surface-200);
    background: var(--surface-white);
    color: var(--ink-900);
    cursor: pointer;
    transition: var(--t-fast);
    box-shadow: var(--sh-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.swiper-buttons-wrap button:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); box-shadow: var(--sh-md); }
.swiper-pagination-Trending .swiper-pagination-bullet { background: var(--ink-300); opacity: 1; }
.swiper-pagination-Trending .swiper-pagination-bullet-active { background: var(--brand-red); width: 24px; border-radius: 99px; }

/* ================================================================
   FINAL OVERRIDE — wins over all prior .tp-card / img-fluid rules
   (added last in file so specificity + source order guarantee a win)
   ================================================================ */
.rz-trending .tp-card,
.collection-slider .tp-card {
    background: var(--surface-white) !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    border: 1px solid var(--surface-200) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 0 !important;   /* no outer padding — image fills top flush */
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s !important;
}
.rz-trending .tp-card:hover,
.collection-slider .tp-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,0.13) !important;
    border-color: rgba(229,39,26,0.25) !important;
}
.rz-trending .tp-img-wrap,
.collection-slider .tp-img-wrap {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 20px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    position: relative !important;
}
/* Anchor wrapper inside image area */
.rz-trending .tp-img-wrap > a,
.collection-slider .tp-img-wrap > a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}
/* Image itself: contain so the full product shows, no bleed watermark */
.rz-trending .tp-img-wrap img,
.collection-slider .tp-img-wrap img,
.rz-trending .tp-img-wrap img.img-fluid,
.collection-slider .tp-img-wrap img.img-fluid {
    width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) !important;
    display: block !important;
}
.rz-trending .tp-card:hover .tp-img-wrap img,
.collection-slider .tp-card:hover .tp-img-wrap img {
    transform: scale(1.06) !important;
}
/* Card body */
.rz-trending .tp-card-body,
.collection-slider .tp-card-body {
    padding: 16px 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    gap: 6px !important;
}
/* Footer */
.rz-trending .tp-card-footer,
.collection-slider .tp-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid #f1f5f9 !important;
    gap: 10px !important;
}
/* Price value */
.rz-trending .price-val,
.collection-slider .price-val {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--ink-900) !important;
    letter-spacing: -0.02em !important;
}
/* See More button */
.rz-trending .tp-card-btn,
.collection-slider .tp-card-btn {
    background: var(--navy-900) !important;
    color: #fff !important;
    border-radius: 99px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.rz-trending .tp-card-btn:hover,
.collection-slider .tp-card-btn:hover {
    background: var(--brand-red) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(229,39,26,0.30) !important;
}

/* ================================================================
   SHOP / LAPTOPS PAGE  —  Complete styles for laptops.blade.php
   ================================================================ */

/* ── Page wrapper ── */
.shop-page {
    background: var(--surface-50);
    min-height: 60vh;
    padding: 56px 0 80px;
}

.shop-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section header row ── */
.shop-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.shop-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 6px;
}

.shop-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0;
    line-height: 1.2;
}

.shop-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-400);
    background: var(--surface-100);
    border: 1px solid var(--surface-200);
    border-radius: var(--r-full);
    padding: 5px 14px;
    white-space: nowrap;
}

/* ── Filter toggle button ── */
.filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--surface-200);
    background: #fff;
    color: var(--ink-700);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.filter-toggle-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.filter-toggle-btn:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 2px 10px rgba(229,39,26,0.10);
}

/* ── Main 2-column layout ── */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.shop-layout.no-sidebar {
    grid-template-columns: 1fr;
}

/* ── Sidebar ── */
.shop-sidebar-panel {
    background: #fff;
    border: 1px solid var(--surface-200);
    border-radius: var(--r-lg);
    padding: 20px;
    position: sticky;
    top: 100px;
    box-shadow: var(--sh-xs);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--surface-100);
}

.sidebar-header-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    background: var(--brand-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    flex-shrink: 0;
}

.sidebar-header h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
}

.sidebar-section {
    margin-bottom: 22px;
}
.sidebar-section:last-child { margin-bottom: 0; }

.sidebar-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: 12px;
}

/* ── Filter checkboxes ── */
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
}
.filter-option label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-700);
    cursor: pointer;
    line-height: 1.4;
    transition: color var(--t-fast);
}
.filter-option:hover label { color: var(--brand-red); }

.cust-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid var(--surface-300);
    cursor: pointer;
    accent-color: var(--brand-red);
    flex-shrink: 0;
}

/* ── Product grid ── */
.product-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ── Product card — laptops page inner classes (rz-prod-*) ── */
a.rz-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-200);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--sh-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    position: relative;
}
a.rz-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: rgba(229,39,26,0.18);
}

.rz-prod-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface-100);
}
.rz-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s ease;
}
a.rz-product-card:hover .rz-prod-img img { transform: scale(1.06); }

.rz-prod-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.28) 100%);
    opacity: 0;
    transition: opacity var(--t-base);
}
a.rz-product-card:hover .rz-prod-overlay { opacity: 1; }

.rz-prod-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.rz-badge-rent {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--r-full);
    background: var(--brand-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rz-badge-delivery {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    color: var(--ink-700);
    font-size: 10px;
    font-weight: 600;
}

.rz-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
}

.rz-prod-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-700);
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--t-base), transform var(--t-base);
    z-index: 2;
}
a.rz-product-card:hover .rz-prod-arrow {
    opacity: 1;
    transform: scale(1);
}

.rz-prod-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rz-prod-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-900);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--t-fast);
}
a.rz-product-card:hover .rz-prod-name { color: var(--brand-red); }

.rz-prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.rz-prod-price-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rz-prod-price-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-400);
}

.rz-prod-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.rz-prod-currency {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-red);
}

.rz-prod-per {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-400);
    margin-left: 2px;
}

.rz-prod-cta {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-500);
    font-size: 16px;
    flex-shrink: 0;
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
a.rz-product-card:hover .rz-prod-cta {
    background: var(--brand-red);
    color: #fff;
    transform: translateX(3px);
}

.rz-prod-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-top: 1px solid var(--surface-100);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-400);
}
.rz-prod-delivery svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--success);
}

/* ── Empty state ── */
.rz-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
}
.rz-empty-icon {
    font-size: 56px;
    color: var(--surface-300);
    margin-bottom: 16px;
}
.rz-empty-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 8px;
}
.rz-empty-sub {
    font-size: 14px;
    color: var(--ink-400);
    max-width: 360px;
    margin: 0 auto;
}

/* ── Filter Drawer (mobile) ── */
.sidebar-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
}
.sidebar-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sidebar-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sidebar-drawer.open { transform: translateY(0); }

.drawer-close-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--surface-100);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.drawer-close-row h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
}
.drawer-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--surface-200);
    background: var(--surface-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast);
    color: var(--ink-700);
}
.drawer-close-btn:hover {
    background: var(--brand-red-light);
    color: var(--brand-red);
    border-color: var(--brand-red);
}

/* ── Breadcrumb in hero ── */
.rz-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.rz-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--t-fast);
}
.rz-breadcrumb a:hover { color: var(--brand-red); }
.rz-breadcrumb span.current {
    color: var(--brand-red);
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .shop-layout { grid-template-columns: 210px 1fr; gap: 24px; }
    .product-grid-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar-panel { display: none; }
    .product-grid-wrap { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .shop-title { font-size: 22px; }
    .rz-prod-price { font-size: 17px; }
}
@media (max-width: 480px) {
    .product-grid-wrap { grid-template-columns: 1fr 1fr; gap: 10px; }
    .shop-page { padding: 32px 0 60px; }
    .rz-prod-body { padding: 12px 14px; }
    .rz-prod-name { font-size: 13px; }
}
