/* ========== BORROWD MODERN DESIGN SYSTEM ========== */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Brand Colors */
    --primary: #0A4A8C;
    --primary-dark: #073A6F;
    --primary-light: #1B5BA3;
    --accent: #00C9C9;
    --accent-dark: #00A0A0;
    --accent-light: #2DDCDC;

    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;

    /* Neutral Palette */
    --text: #2c3e50;
    --text-light: #6c757d;
    --text-lighter: #adb5bd;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #e9ecef;
    --border: #dee2e6;

    /* Shadows (Layered Depth) */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography */
    --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Header offset - space for fixed header */
    --header-offset: calc(195px + env(safe-area-inset-top, 0px));
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    /* Block iOS Safari rubber-band over-scroll past the footer. Doesn't affect
       normal scrolling — only kicks in when the user tries to pull past the
       page boundary. */
    overscroll-behavior-y: contain;
}

/* Prevent iOS auto-zoom on form inputs (requires explicit 16px) */
input, select, textarea {
    font-size: 16px;
}

/* Force 16px on mobile to override inline styles that cause iOS zoom */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
    /* Touch-target floor: keep all native buttons at least 36px tall on mobile.
       Inline-styled buttons that override `padding` will inherit this min via the
       cascade. Excludes the dismiss × on the floating help bubble (its small size
       is intentional — see .help-dismiss override in components.css). */
    button:not(.help-dismiss) {
        min-height: 36px;
    }
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: var(--space);
}
h1 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 4vw, 32px); }
h3 { font-size: 20px; }
p { color: var(--text-light); line-height: 1.7; margin-bottom: var(--space); }

/* ========== HEADER ========== */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: calc(var(--space-sm) + env(safe-area-inset-top, 0px)) var(--space-xl) var(--space-xs) var(--space-xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px var(--space-xl);
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

/* ===== HEADER SEARCH CONTAINER ===== */
.header-search {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    justify-self: center;
    width: 100%;
    transform: translateX(20px);
    align-self: center;
}

.search-row {
    display: flex;
    gap: var(--space);
    align-items: center;
    width: 100%;
}

/* ===== LOCATION TOGGLE ===== */
.location-toggle-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding: 6px 0;
    width: 100%;
}

.location-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    min-width: 90px;
    padding: 4px 8px;
}

.location-option:hover {
    color: rgba(255,255,255,1);
}

.location-option.active {
    color: #fff;
}

.location-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-option .emoji {
    font-size: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.location-option.active .emoji {
    opacity: 1;
    transform: scale(1);
}

.location-subtext {
    font-size: 10px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition);
    height: 12px;
}

.location-option.active .location-subtext {
    opacity: 1;
    color: rgba(255,255,255,0.85);
}

/* Animated dots for "Getting location" loading state */
@keyframes location-dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}
.location-loading::after {
    content: '';
    animation: location-dots 1.4s steps(1) infinite;
}

/* Custom Toggle Switch */
.toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(255,255,255,0.2);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* Expand the hit area without growing the visual toggle (mobile tap-target compliance) */
.toggle-switch::before {
    content: '';
    position: absolute;
    inset: -8px -10px;
    border-radius: inherit;
}

.toggle-switch:hover {
    background: rgba(255,255,255,0.25);
}

.toggle-slider {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.near-home .toggle-slider {
    left: 26px;
}

/* ===== LOGO ===== */
.logo-container {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 95px;
    width: auto;
    /* Semi-transparent (70%) white outline via stacked drop-shadows.
       Softer than a solid white stroke — still makes the logo pop
       against the teal but less aggressive. Plus a subtle dark drop
       shadow for depth. */
    filter:
        drop-shadow(1px 0 0 rgba(255,255,255,0.4))
        drop-shadow(-1px 0 0 rgba(255,255,255,0.4))
        drop-shadow(0 1px 0 rgba(255,255,255,0.4))
        drop-shadow(0 -1px 0 rgba(255,255,255,0.4))
        drop-shadow(0.7px 0.7px 0 rgba(255,255,255,0.4))
        drop-shadow(-0.7px 0.7px 0 rgba(255,255,255,0.4))
        drop-shadow(0.7px -0.7px 0 rgba(255,255,255,0.4))
        drop-shadow(-0.7px -0.7px 0 rgba(255,255,255,0.4))
        drop-shadow(0 3px 8px rgba(0,0,0,0.3));
    transition: all var(--transition);
}

.logo-container:hover .logo-img {
    /* Keep the white outline visible on hover but fade it from 0.4 → 0.2
       alpha so the halo softens rather than disappearing entirely. Pairs
       with the deeper dark drop-shadow for the "lift" effect. */
    filter:
        drop-shadow(1px 0 0 rgba(255,255,255,0.2))
        drop-shadow(-1px 0 0 rgba(255,255,255,0.2))
        drop-shadow(0 1px 0 rgba(255,255,255,0.2))
        drop-shadow(0 -1px 0 rgba(255,255,255,0.2))
        drop-shadow(0.7px 0.7px 0 rgba(255,255,255,0.2))
        drop-shadow(-0.7px 0.7px 0 rgba(255,255,255,0.2))
        drop-shadow(0.7px -0.7px 0 rgba(255,255,255,0.2))
        drop-shadow(-0.7px -0.7px 0 rgba(255,255,255,0.2))
        drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}

.logo-tagline {
    /* Scott-picked orange to match the logo "My" wordmark. */
    color: #F78B27;
    /* Nunito — rounded, friendly, matches the logo's playful style.
       Loaded via Google Fonts link in index.html. */
    font-family: 'Nunito', 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-align: center;
    /* Legibility via heavy dark drop-shadow instead of white stroke.
       Three stacked shadows: a tight dark offset for definition,
       a mid-distance shadow for depth, and a wider soft shadow for
       overall pop. Preserves full orange saturation. */
    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 2px 3px rgba(0,0,0,0.75),
        0 3px 8px rgba(0,0,0,0.5);
    line-height: 1.3;
    /* max-width sized so line 1 = "The Find It, Borrow It, Like It,"
       and line 2 = "Buy It Community!" together. At font-size 17px
       with 0.7px letter-spacing, 300px fits line 1 and line 2 breaks
       at the space before "Community!". 250px was too narrow and
       caused a 3-line wrap (Borrow It, / Like It, Buy It / Community!). */
    max-width: 300px;
    margin-top: 2px;
}

/* ===== HAMBURGER MENU BUTTON ===== */
/* Hamburger uses the unified header utility button treatment (matches
   chat/bell/cart/wishlist): solid teal gradient + sheen + white border halo. */
.hamburger-menu {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.10),
        0 2px 4px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hamburger-menu:hover {
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.32),
        0 6px 14px rgba(0, 0, 0, 0.15),
        0 0 18px rgba(0, 201, 201, 0.40);
}

.hamburger-menu span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger-menu:hover span {
    width: 28px;
}

/* ===== BOOKING REQUESTS NOTIFICATION ===== */
.booking-requests-notif {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    padding: 8px 12px;
    cursor: pointer;
    transition: all var(--transition);
    display: none;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.booking-requests-notif.show {
    display: flex;
}

.booking-requests-notif:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.booking-requests-badge {
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== RETURN PENDING NOTIFICATION ===== */
.return-pending-notif {
    background: rgba(230,126,34,0.2);
    border: 2px solid rgba(230,126,34,0.4);
    border-radius: var(--radius);
    padding: 8px 12px;
    cursor: pointer;
    transition: all var(--transition);
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.return-pending-notif.show {
    display: flex;
}

.return-pending-notif:hover {
    background: rgba(230,126,34,0.35);
    border-color: rgba(230,126,34,0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.return-pending-badge {
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== CART NOTIFICATION =====
   Unified header utility button treatment (matches chat/bell/hamburger/wishlist). */
.cart-notif {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.10),
        0 2px 4px rgba(0,0,0,0.10);
    padding: 8px 12px;
    min-width: 130px;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.cart-notif.show {
    display: flex;
}

.cart-notif:hover {
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.32),
        0 6px 14px rgba(0, 0, 0, 0.15),
        0 0 18px rgba(0, 201, 201, 0.40);
}

.cart-badge {
    background: #17a2b8;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-left: auto;
}

/* ===== WISHLIST HEADER NOTIF =====
   Unified header utility button treatment (matches chat/bell/hamburger/cart). */
.wishlist-notif {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.10),
        0 2px 4px rgba(0,0,0,0.10);
    padding: 8px 12px;
    min-width: 130px;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.wishlist-notif.show {
    display: flex;
}

.wishlist-notif:hover {
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.32),
        0 6px 14px rgba(0, 0, 0, 0.15),
        0 0 18px rgba(0, 201, 201, 0.40);
}

.wishlist-header-badge {
    background: #17a2b8;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-left: auto;
}

/* ===== SLIDE-OUT MENU ===== */
.nav-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: var(--bg);
    box-shadow: var(--shadow-xl);
    z-index: 1101;
    transition: right var(--transition);
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.nav-menu-header h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.close-menu {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
    padding: 0;
}

.close-menu:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.nav-menu-items {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.nav-item {
    padding: 14px var(--space-xl);
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: var(--space);
    cursor: pointer;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-item:hover {
    background: linear-gradient(90deg, var(--bg-alt) 0%, var(--bg) 100%);
    color: var(--accent);
    padding-left: calc(var(--space-xl) + 8px);
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-icon {
    font-size: 22px;
    width: 30px;
    text-align: center;
    filter: grayscale(0.3);
}

.nav-item:hover .nav-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero section removed - search now in header */

/* ========== SEARCH BAR (in header) ========== */
.search-bar {
    flex: 1;
    padding: 12px 20px;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.search-bar:focus {
    outline: none;
    border-color: rgba(255,255,255,0.8);
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.search-bar::placeholder {
    color: var(--text-lighter);
}

input[style*="text-transform:uppercase"]::placeholder,
input[style*="text-transform: uppercase"]::placeholder {
    text-transform: none;
}

.search-button {
    padding: 12px 28px;
    white-space: nowrap;
}

/* ========== BUTTONS — material treatment ==========
   Layered: base gradient + diagonal sheen overlay + inner top highlight
   + bottom shade. Hover adds soft outer accent glow + lift. */
button {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.10),
        0 2px 4px rgba(0,0,0,0.10);
}

button:hover {
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.32),
        inset 0 -1px 0 rgba(0,0,0,0.10),
        0 6px 14px rgba(0,0,0,0.12),
        0 0 22px rgba(0, 201, 201, 0.45);
    transform: translateY(-2px);
}

button:active {
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0) 50%),
        linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.18),
        0 1px 2px rgba(0,0,0,0.08);
    transform: translateY(0);
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-height: 500px) and (orientation: landscape) {
    header {
        gap: 6px 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-search {
        transform: none;
    }

    .location-option {
        min-width: 65px;
        min-height: 40px;
        font-size: 11px;
        padding: 6px 8px;
        justify-content: center;
    }

    .location-label {
        font-size: 10px;
    }

    .cart-notif, .wishlist-notif {
        min-width: 0;
        padding: 6px 8px;
        font-size: 12px;
    }
}

