:root {
    /* Modern Color Palette - Mature & Sophisticated */
    --primary-dark: #1a2332;
    --primary-darker: #0f1419;
    --accent-warm: #d97757;
    --accent-warm-light: #e8a082;
    --accent-teal: #2d7a7a;
    --accent-teal-light: #4a9d9d;
    --accent-gold: #c9a961;
    --accent-gold-light: #d4b877;

    /* Neutral Colors */
    --bg-primary: #f5f3f0;
    --bg-secondary: #ebe8e3;
    --bg-card: #ffffff;
    --bg-card-hover: #faf9f7;
    --text-primary: #1a2332;
    --text-secondary: #5a6c7d;
    --text-light: #8a9ba8;
    --border-color: #e0ddd8;

    /* Status Colors */
    --success: #2d7a7a;
    --danger: #c94a3f;
    --warning: #d4a574;
    --info: #4a9d9d;
}

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

body {
    font-family: 'DM Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f3f0 0%, #ebe8e3 50%, #f5f3f0 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Graffiti Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* SALE text - top left */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Ctext x='10' y='50' font-family='Arial Black' font-size='60' fill='%23d97757' opacity='0.15' transform='rotate(-15 100 40)'%3ESALE%3C/text%3E%3C/svg%3E"),
        /* Price tag - top right */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M20 20 L100 20 L100 80 L60 100 L20 80 Z' fill='%232d7a7a' opacity='0.12' transform='rotate(25 60 60)'/%3E%3Ctext x='50' y='60' font-family='Arial' font-size='30' fill='%23ffffff' opacity='0.2'%3E$%3C/text%3E%3C/svg%3E"),
        /* Arrow - middle left */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 80'%3E%3Cpath d='M10 40 L140 40 M120 20 L140 40 L120 60' stroke='%23c9a961' stroke-width='8' fill='none' opacity='0.18'/%3E%3C/svg%3E"),
        /* DEALS text - bottom left */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 100'%3E%3Ctext x='10' y='70' font-family='Arial Black' font-size='70' fill='%23e8a082' opacity='0.12' transform='rotate(10 125 50)'%3EDEALS%3C/text%3E%3C/svg%3E"),
        /* Star - middle right */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L68 60 L78 90 L50 70 L22 90 L32 60 L10 40 L40 40 Z' fill='%23d97757' opacity='0.14' transform='rotate(-20 50 50)'/%3E%3C/svg%3E"),
        /* BOGOF text - bottom right. */
        /*url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Ctext x='10' y='60' font-family='Arial Black' font-size='50' fill='%232d7a7a' opacity='0.13' transform='rotate(-10 100 40)'%3EBOGOF%3C/text%3E%3C/svg%3E"),*/
        /* Circle with % - top center */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23c94a3f' stroke-width='6' opacity='0.16'/%3E%3Ctext x='50' y='65' font-family='Arial Black' font-size='40' fill='%23c94a3f' opacity='0.16' text-anchor='middle'%3E%%3C/text%3E%3C/svg%3E"),
        /* Zigzag line - middle */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'%3E%3Cpath d='M0 15 L50 5 L100 25 L150 5 L200 15' stroke='%234a9d9d' stroke-width='5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
    background-size:
        300px 120px,
        150px 150px,
        200px 100px,
        350px 140px,
        120px 120px,
        280px 110px,
        120px 120px,
        250px 40px;
    background-position:
        5% 10%,
        95% 8%,
        8% 45%,
        3% 85%,
        92% 50%,
        88% 82%,
        50% 5%,
        50% 60%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(217, 119, 87, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(45, 122, 122, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6, .brand {
    font-family: 'Poppins', 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-teal) 100%);
    color: white;
    font-size: 0.875rem;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-links a {
    transition: opacity 0.3s;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: var(--primary-dark) !important;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container-fluid {
    position: relative;
}

.navbar-brand {
    padding: 0;
    margin-right: 1.5rem;
}

.navbar-logo {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s;
    object-fit: contain;
}

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

.search-form {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-width: 200px;
}

.search-form input {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50px;
    padding: 0.65rem 3.5rem 0.65rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    width: 100%;
}

.search-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-form input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent-warm);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.2);
    color: white;
}

.search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-warm);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: white;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-form button:hover {
    background: var(--accent-warm-light);
    transform: translateY(-50%) scale(1.1);
    color: white;
}

.search-form button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(217, 119, 87, 0.3);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem !important;
}

.categories-link {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.categories-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.categories-link::after {
    margin-left: 0.5rem;
}

.categories-dropdown {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.categories-dropdown .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.categories-dropdown .dropdown-item i {
    width: 20px;
    color: var(--accent-teal);
    transition: transform 0.3s;
}

.categories-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(217, 119, 87, 0.1) 0%, transparent 100%);
    color: var(--primary-dark);
    padding-left: 1.5rem;
}

.categories-dropdown .dropdown-item:hover i {
    transform: scale(1.2);
    color: var(--accent-warm);
}

.categories-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--border-color);
}

.categories-dropdown .dropdown-item:last-child {
    font-weight: 600;
    color: var(--accent-teal);
}

.categories-dropdown .dropdown-item:last-child:hover {
    background: linear-gradient(90deg, rgba(45, 122, 122, 0.1) 0%, transparent 100%);
    color: var(--accent-teal);
}

.nav-icon {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-icon:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-icon i {
    font-size: 1.1rem;
}

.cart-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

@media (max-width: 991.98px) {
    .cart-badge {
        font-size: 0.65rem;
        min-width: 16px;
        height: 16px;
        padding: 0.2rem 0.4rem;
    }
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-nav-icons {
    border-color: rgba(255,255,255,0.1) !important;
}

/* Hero Banner */
.hero-banner {
    padding: 1.25rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

/* Section Styling */
.section-deals,
.section-products {
    padding: 2rem 0;
    position: relative;
}

.section-deals {
    background:
        linear-gradient(135deg, rgba(63, 81, 181, 0.16) 0%, rgba(156, 39, 176, 0.14) 55%, rgba(33, 150, 243, 0.16) 100%),
        rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    border-top: 3px solid #3f51b5;
    border-bottom: 3px solid #9c27b0;
    box-shadow:
        0 -10px 30px rgba(63, 81, 181, 0.2),
        0 10px 30px rgba(156, 39, 176, 0.2);
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.section-deals::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.14) 0%, rgba(63, 81, 181, 0.12) 50%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.section-deals .container {
    position: relative;
    z-index: 1;
}

/* Flash Deals Product Cards */
.section-deals .product-card {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(45, 122, 122, 0.25);
    box-shadow: 0 8px 30px rgba(156, 39, 176, 0.2);
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-deals .product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(156, 39, 176, 0.4);
    border-color: #4a9d9d;
}

.section-deals .product-card.boosted {
    border: 2px solid rgba(251, 191, 36, 0.5);
    box-shadow:
        0 8px 30px rgba(156, 39, 176, 0.25),
        0 0 0 1px rgba(251, 191, 36, 0.2) inset,
        0 0 20px rgba(251, 191, 36, 0.15);
}

.section-deals .product-card.boosted:hover {
    border-color: #fbbf24;
    box-shadow:
        0 15px 50px rgba(156, 39, 176, 0.4),
        0 0 0 1px rgba(251, 191, 36, 0.3) inset,
        0 0 30px rgba(251, 191, 36, 0.25);
}

.section-deals .discount-badge {
    background: linear-gradient(135deg, #4a9d9d 0%, #9c27b0 100%);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.5);
    font-size: 1rem;
    padding: 10px 18px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-deals .btn-add {
    background: linear-gradient(135deg, #4a9d9d 0%, #9c27b0 100%);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    font-weight: 700;
}

.section-deals .btn-add:hover {
    background: linear-gradient(135deg, #9c27b0 0%, #4a9d9d 100%);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
    transform: translateY(-3px);
}

.section-products {
    background:
        radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
        rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(1px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0.75rem 0;
    border-bottom: 2px dashed rgba(217, 119, 87, 0.3);
}

.section-deals .section-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.25);
    border: 2px solid rgba(63, 81, 181, 0.35);
    border-bottom: 2px dashed rgba(156, 39, 176, 0.55);
}

.section-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-deals .section-title {
    color: #3f51b5;
    text-shadow: 2px 2px 4px rgba(63, 81, 181, 0.25);
    font-size: 2.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-warm) 0%, var(--accent-teal) 100%);
    border-radius: 2px;
}

.section-deals .section-title::after {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #3f51b5 0%, #9c27b0 100%);
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.5);
}

.section-badge {
    background: linear-gradient(135deg, var(--danger) 0%, #e85d4a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(201, 74, 63, 0.4);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.section-deals .section-badge {
    background: linear-gradient(135deg, #4a9d9d 0%, #9c27b0 100%);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.5);
}

.section-note {
    font-size: 0.95rem;
    font-weight: 600;
    color: #9c27b0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
}

.section-deals .section-note {
    color: #3f51b5;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.product-card > a {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Ensure product images in all sections use square aspect ratio */
.section-deals .product-img,
.section-products .product-img,
.section-deals .product-card > a,
.section-products .product-card > a {
    width: 100%;
    display: block;
    overflow: hidden;
}

.section-deals .product-img,
.section-products .product-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    transition: transform 0.4s;
}

/* Owl carousel item fixes */
.owl-carousel .item .product-card > a {
    display: block;
    overflow: hidden;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--accent-warm-light);
}

/* Boosted Product Cards */
.product-card.boosted {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 2px solid rgba(251, 191, 36, 0.4);
    box-shadow:
        0 6px 25px rgba(251, 191, 36, 0.2),
        0 0 0 1px rgba(251, 191, 36, 0.1) inset;
    position: relative;
}

.product-card.boosted::before {
    content: none;
}

.product-card.boosted:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.25);
    border-color: #fbbf24;
}

.product-card.boosted .product-img {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, #faf9f7 50%, rgba(251, 191, 36, 0.05) 100%);
}

.product-card.boosted .discount-badge {
    left: 16px;
    top: 50px;
}

.product-card.boosted .price {
    color: #f59e0b;
    font-weight: 800;
}

.product-card.boosted .btn-add {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a2332;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    font-weight: 700;
}

.product-card.boosted .btn-add:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    color: #1a2332;
    transform: translateY(-2px);
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    transition: transform 0.4s;
}

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

.product-card .p-3 {
    padding: 1rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.product-card .price {
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 1.15rem;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.product-card .price::after {
    content: '';
}

.product-card .old-price {
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.75rem;
    font-size: 0.9rem;
    font-family: 'DM Sans', 'Poppins', sans-serif;
}

.product-card .old-price::after {
    content: '';
}

.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--danger) 0%, #e85d4a 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(201, 74, 63, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.boosted-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a2332;
    font-weight: 800;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 11;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: none;
}

/* Buttons */
.btn-add {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s;
    margin-top: auto;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.3);
}

.btn-add:hover {
    background: linear-gradient(135deg, var(--accent-warm-light) 0%, var(--accent-warm) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.4);
    color: white;
}

/* Category Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--accent-teal);
}

.card i {
    transition: transform 0.3s;
}

.card:hover i {
    transform: scale(1.15);
}

.card .text-primary { color: var(--accent-teal) !important; }
.card .text-danger { color: var(--accent-warm) !important; }
.card .text-info { color: var(--accent-teal-light) !important; }
.card .text-warning { color: var(--accent-gold) !important; }
.card .text-success { color: var(--accent-teal) !important; }

/* Owl Carousel Navigation */
.owl-nav button {
    background: var(--bg-card) !important;
    color: var(--primary-dark) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    font-size: 1.5rem !important;
    transition: all 0.3s !important;
    border: 2px solid var(--border-color) !important;
}

.owl-nav button:hover {
    background: var(--accent-warm) !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.4) !important;
}

.owl-prev {
    left: -25px !important;
}

.owl-next {
    right: -25px !important;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 0 4px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
    background: var(--bg-card);
}

.pagination .page-link:hover {
    background: var(--accent-warm);
    color: white;
    border-color: var(--accent-warm);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
    border-color: var(--accent-warm);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.3);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: rgba(255,255,255,0.9);
    padding: 2.5rem 0 1.5rem;
    margin-top: 2rem;
}

.brand {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-warm-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-warm);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.4);
}

.newsletter-form input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent-warm);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.2);
    color: white;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, var(--accent-warm-light) 0%, var(--accent-warm) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.4);
    color: white;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 40px;
    }

    .navbar-collapse {
        background: var(--primary-dark);
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.1);
        position: relative;
        z-index: 999;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .search-form {
        margin: 0 0 1.5rem 0;
        max-width: 100%;
        width: 100%;
    }

    .search-form input {
        width: 100%;
    }

    .navbar-nav {
        margin-top: 0;
        width: 100%;
        padding: 0.5rem 0;
    }

    .navbar-nav:first-child {
        margin-bottom: 0.5rem;
    }

    .categories-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem !important;
        border: 1px solid rgba(255,255,255,0.2);
        margin-bottom: 0.5rem;
    }

    .categories-link span {
        display: inline !important;
    }

    .categories-dropdown {
        width: 100%;
        margin-top: 0.25rem;
        border-radius: 8px;
    }

    .navbar-nav .nav-item {
        flex: 1;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.75rem 0.5rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .navbar-nav .nav-icon {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem !important;
    }

    .navbar-nav .nav-icon i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .navbar-nav .nav-icon span {
        font-size: 0.75rem;
        display: block;
    }

    .mobile-nav-icons {
        margin-top: 1rem;
        padding-top: 1rem;
        display: flex;
        justify-content: space-around;
        gap: 0.5rem;
    }

    .mobile-nav-icons .nav-icon {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 0.75rem 0.5rem !important;
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
        transition: all 0.3s;
    }

    .mobile-nav-icons .nav-icon:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-2px);
    }

    .mobile-nav-icons .nav-icon i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .mobile-nav-icons .nav-icon small {
        font-size: 0.75rem;
        display: block;
        color: rgba(255,255,255,0.9);
    }

    .section-title {
        font-size: 2rem;
    }

    .owl-prev {
        left: -15px !important;
    }

    .owl-next {
        right: -15px !important;
    }
}

@media (max-width: 767.98px) {
    body::before {
        background-size:
            200px 80px,
            100px 100px,
            150px 70px,
            250px 100px,
            80px 80px,
            200px 80px,
            80px 80px,
            180px 30px;
        opacity: 0.8;
    }

    .hero-banner {
        padding: 1rem 0;
    }

    .hero-image-wrapper {
        border-radius: 12px;
    }

    .hero-image {
        border-radius: 12px;
    }

    .section-deals,
    .section-products {
        padding: 2.5rem 0;
    }

    .section-deals {
        margin: 2rem 0;
    }

    .section-deals .section-header {
        padding: 1.25rem 1.5rem;
    }

    .section-deals .section-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        width: 100%;
        padding: 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 575.98px) {
    body::before {
        background-size:
            150px 60px,
            80px 80px,
            120px 60px,
            200px 80px,
            60px 60px,
            150px 60px,
            60px 60px,
            150px 25px;
        opacity: 0.7;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 10px 0;
    }

    .top-bar-content {
        text-align: center;
    }

    .top-bar-links {
        display: none !important;
    }

    .navbar-logo {
        height: 45px;
    }

    .navbar-collapse {
        padding: 1rem 0.75rem;
        margin-top: 0.75rem;
    }

    .search-form {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .search-form input {
        padding-right: 3rem;
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }

    .search-form button {
        width: 32px;
        height: 32px;
        right: 3px;
    }

    .search-form button i {
        font-size: 0.9rem;
    }

    .navbar-nav {
        padding: 0.25rem 0;
    }

    .categories-link {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.9rem;
    }

    .categories-dropdown {
        min-width: auto;
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .navbar-nav .nav-icon {
        padding: 0.5rem 0.25rem !important;
    }

    .navbar-nav .nav-icon i {
        font-size: 1.1rem;
    }

    .mobile-nav-icons {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        gap: 0.25rem;
    }

    .mobile-nav-icons .nav-icon {
        padding: 0.5rem 0.25rem !important;
    }

    .mobile-nav-icons .nav-icon i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .mobile-nav-icons .nav-icon small {
        font-size: 0.7rem;
    }

    .hero-banner {
        padding: 0.5rem 0;
    }

    .hero-image-wrapper {
        border-radius: 10px;
    }

    .hero-image {
        border-radius: 10px;
    }

    .product-img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        width: 100%;
        padding: 0;
    }

    .section-deals,
    .section-products {
        padding: 1.25rem 0;
    }

    .section-deals {
        margin: 0.75rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-deals .section-title {
        font-size: 1.5rem;
    }

    .section-deals .section-header {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }

    .section-header {
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }

    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .pagination {
        margin-top: 1.5rem;
    }

    .owl-nav {
        display: none !important;
    }
}

/* Additional Utility Classes */
.text-purple {
    color: var(--accent-teal) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s;
}

img[src=""] {
    opacity: 0;
}

/* Page headers and layout */
.page-header {
    padding: 1.5rem 0 1rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-dark);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.breadcrumb-yookus {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.breadcrumb-yookus a {
    color: var(--accent-teal);
    text-decoration: none;
}

.breadcrumb-yookus a:hover {
    color: var(--accent-warm);
}

.surface-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Product detail */
.product-gallery {
    display: grid;
    gap: 0.75rem;
    width: 100%;
}

.product-main {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    padding: 0;
    box-shadow: none;
    display: block;
}

.thumb-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumb-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.thumb-list img:hover {
    border-color: var(--accent-teal);
}

.meta-inline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.meta-inline i {
    color: var(--accent-teal);
}

.seller-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(63, 81, 181, 0.06);
}

.seller-card .seller-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.seller-card .seller-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Category/filter */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.4rem 0.75rem;
    background: rgba(63, 81, 181, 0.08);
    border: 1px solid rgba(63, 81, 181, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    color: #3f51b5;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-pill.active,
.filter-pill:hover {
    background: #3f51b5;
    color: #fff;
    border-color: #3f51b5;
}

.sort-select {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
}

/* Forms and checkout */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.form-card:last-child {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
    outline: none;
    background: white;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #3f51b5;
    border-color: #3f51b5;
}

.form-check-label {
    cursor: pointer;
    margin-left: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.summary-line strong {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
}

.summary-card h5 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.summary-card h4.text-primary {
    color: var(--accent-teal) !important;
    font-weight: 800;
    font-size: 1.5rem;
}

/* Cart and checkout */
.cart-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
}

.cart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(63, 81, 181, 0.15);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.cart-card-header i {
    color: #3f51b5;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1.25rem;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    border-radius: 8px;
}

.cart-item-row:hover {
    background: rgba(63, 81, 181, 0.03);
    box-shadow: 0 2px 8px rgba(63, 81, 181, 0.1);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-thumb {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: #fff;
    object-fit: cover;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.cart-item-actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0.25rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 1.1rem;
    font-family: 'DM Sans', 'Poppins', sans-serif;
}

/* Quantity Controls */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.25rem;
    width: fit-content;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(63, 81, 181, 0.1);
    color: #3f51b5;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.qty-btn:hover {
    background: #3f51b5;
    color: white;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    padding: 0.25rem;
}

.qty-input:focus {
    outline: none;
}

/* Remove Button */
.btn-remove {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: rgba(201, 74, 63, 0.1);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-remove:hover {
    background: var(--danger);
    color: white;
    transform: scale(1.1);
}

.btn-remove:active {
    transform: scale(0.95);
}

/* Cart & Checkout Buttons */
.btn-buy,
.btn-checkout {
    background: linear-gradient(135deg, #3f51b5 0%, #5c6bc0 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(63, 81, 181, 0.3);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-buy:hover,
.btn-checkout:hover {
    background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 81, 181, 0.4);
    color: white;
    text-decoration: none;
}

.btn-continue {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-continue:hover {
    background: rgba(63, 81, 181, 0.05);
    border-color: #3f51b5;
    color: #3f51b5;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-promo {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-teal-light) 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(45, 122, 122, 0.2);
}

.btn-promo:hover {
    background: linear-gradient(135deg, var(--accent-teal-light) 0%, var(--accent-teal) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 122, 122, 0.3);
    color: white;
}

.promo-card {
    border: 2px dashed rgba(63, 81, 181, 0.3);
    border-radius: 12px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.05) 0%, rgba(45, 122, 122, 0.05) 100%);
}

.promo-card .form-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.promo-card .form-control {
    border: 1px solid rgba(63, 81, 181, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.promo-card .form-control:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.checkout-steps {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.checkout-step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(63, 81, 181, 0.08);
    color: #3f51b5;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-step.active {
    background: #3f51b5;
    color: #fff;
}

.section-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.summary-items {
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    margin: 0.75rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Shop Page Styles */
.shop-sidebar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(63, 81, 181, 0.15);
    font-size: 1.1rem;
}

.sidebar-title i {
    color: #3f51b5;
}

.sidebar-subtitle {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

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

.category-list li {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.category-link i {
    width: 20px;
    color: var(--accent-teal);
    transition: all 0.3s;
}

.category-link:hover {
    background: rgba(63, 81, 181, 0.08);
    color: #3f51b5;
    transform: translateX(5px);
    text-decoration: none;
}

.category-link:hover i {
    color: #3f51b5;
    transform: scale(1.1);
}

.category-link.active {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.15) 0%, rgba(45, 122, 122, 0.1) 100%);
    color: #3f51b5;
    font-weight: 600;
    border-left: 3px solid #3f51b5;
}

.category-link.active i {
    color: #3f51b5;
}

.sidebar-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price-filter .form-check {
    padding-left: 0;
}

.price-filter .form-check-label {
    cursor: pointer;
    padding-left: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.price-filter .form-check-input:checked ~ .form-check-label {
    color: #3f51b5;
    font-weight: 600;
}

.shop-toolbar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.results-count {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.results-count strong {
    color: #3f51b5;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .cart-item-row {
        grid-template-columns: 70px 1fr auto;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .cart-item-thumb {
        width: 70px;
        height: 70px;
    }

    .cart-item-actions {
        align-items: flex-start;
        padding-top: 0;
    }

    .qty-control {
        margin-top: 0.5rem;
    }

    .cart-item-price {
        font-size: 0.95rem;
    }

    .btn-remove {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 1rem 0 0.75rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .surface-card,
    .form-card {
        padding: 1rem;
    }

    .thumb-list img {
        width: 60px;
        height: 60px;
    }

    .shop-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 1.5rem;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .category-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
}
