        /* ==================== SHOP HERO SECTION (compact, unified with right-side banner) ==================== */
        .shop-hero-section {
        position: relative;
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-primary);
        overflow: hidden;
        padding: var(--space-8) var(--space-4);
        }

        .shop-hero-section::before,
        .shop-hero-section::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 80px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.08' stroke-width='2'%3E%3Cpath d='M3 6h18l-2 13H5L3 6z'/%3E%3Cpath d='M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3Ccircle cx='8' cy='18' r='2'/%3E%3Ccircle cx='16' cy='18' r='2'/%3E%3C/svg%3E") no-repeat center;
        background-size: contain;
        animation: shop-hero-float 6s ease-in-out infinite;
        opacity: 0.9;
        }

        .shop-hero-section::before {
        top: 10%;
        left: 5%;
        }

        .shop-hero-section::after {
        bottom: 15%;
        right: 8%;
        animation-delay: 2s;
        }

        @keyframes shop-hero-float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-12px);
        }
        }

        .shop-hero-wrapper {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-8);
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
        }

        .shop-hero-info {
        flex: 1;
        text-align: left;
        color: var(--color-white);
        min-width: 280px;
        }

        .shop-hero-logo {
        display: inline-block;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid white;
        background: white;
        overflow: hidden;
        margin-bottom: var(--space-4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .shop-hero-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

        .shop-hero-title {
        font-size: var(--font-size-4xl);
        font-weight: var(--font-weight-extrabold);
        margin-bottom: var(--space-2);
        color: var(--color-white);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .shop-hero-type {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: var(--space-1) var(--space-3);
        border-radius: 20px;
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-4);
        backdrop-filter: blur(10px);
        }

        .shop-hero-rating {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        margin-bottom: var(--space-4);
        }

        .shop-hero-rating .stars {
        color: #ffc107;
        }

        .shop-hero-rating .value {
        font-weight: var(--font-weight-bold);
        font-size: var(--font-size-base);
        }

        .shop-hero-rating .count {
        opacity: 0.9;
        font-size: var(--font-size-sm);
        }

        .shop-hero-location {
        display: flex;
        align-items: center;
        gap: var(--space-2);
        font-size: var(--font-size-sm);
        opacity: 0.95;
        }

        .shop-hero-banner {
        flex-shrink: 0;
        width: 320px;
        height: 180px;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        }

        .shop-hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .shop-hero-banner .banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    }

    .banner-placeholder i {
    font-size: var(--font-size-3xl);
    opacity: 0.7;
    }

    @media (min-width: 768px) {
    .shop-hero-section {
        min-height: 220px;
    }
    .shop-hero-logo {
        width: 100px;
        height: 100px;
    }
    .shop-hero-banner {
        width: 380px;
        height: 210px;
        border-radius: 10px;
    }
    .shop-hero-location {
        font-size: var(--font-size-base);
    }
    }

    @media (max-width: 768px) {
    .shop-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .shop-hero-info {
        text-align: center;
    }
    .shop-hero-rating {
        justify-content: center;
    }
    .shop-hero-location {
        justify-content: center;
    }
    }

    @media (max-width: 576px) {
    .shop-hero-section {
        min-height: 180px;
        padding: var(--space-6) var(--space-4);
    }
    .shop-hero-title {
        font-size: var(--font-size-2xl);
    }
    .shop-hero-logo {
        width: 70px;
        height: 70px;
    }
    .shop-hero-banner {
        width: 280px;
        height: 160px;
    }
    .shop-hero-type {
        font-size: var(--font-size-xs);
    }
    .shop-hero-rating .value {
        font-size: var(--font-size-sm);
    }
    .shop-hero-rating .count {
        font-size: var(--font-size-xs);
    }
    .shop-hero-location {
        font-size: var(--font-size-xs);
    }
    .banner-placeholder i {
        font-size: var(--font-size-2xl);
    }
    }

        /* ==================== SHOP NAVIGATION ==================== */
        .shop-sub-nav {
            background: white;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 70px; /* Adjust based on your main header height */
            z-index: 99; /* Lower than main header */
            margin-top: 0;
        }

        .shop-sub-nav-container {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 0;
        }

        .shop-nav-item {
            padding: 1rem 0;
            color: #666;
            text-decoration: none;
            font-weight: 600;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .shop-nav-item:hover,
        .shop-nav-item.active {
            color: #4361ee;
            border-bottom-color: #4361ee;
        }

        /* ==================== SHOP CONTENT SECTIONS ==================== */
        .shop-content-section {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about-section {
            background: #f8f9fa;
        }

        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .about-text {
            line-height: 1.8;
            color: #555;
        }

        .shop-details-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .detail-item {
            display: flex;
            justify-content: between;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .detail-label {
            font-weight: 600;
            color: #333;
            min-width: 120px;
        }

        .detail-value {
            color: #666;
            flex: 1;
        }

        /* ==================== ASSOCIATED SCHOOLS SECTION ==================== */
        .schools-section {
            background: white;
        }

        .schools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .school-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .school-card:hover {
            border-color: #4361ee;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .school-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .school-type {
            display: inline-block;
            background: #4361ee;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .school-location {
            color: #666;
            margin-bottom: 1rem;
        }

        .association-type {
            background: #38b000;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* ==================== PRODUCTS SECTION ==================== */
        .products-section {
            background: #f8f9fa;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: #38b000;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-image {
            height: 200px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .product-content {
            padding: 1.5rem;
        }

        .product-category {
            color: #4361ee;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            line-height: 1.4;
        }

        .product-attributes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .attribute-tag {
            background: #f8f9fa;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #666;
            border: 1px solid #e0e0e0;
        }

        .product-pricing {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .price-current {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .price-original {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .stock-status {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .in-stock {
            color: #38b000;
        }

        .low-stock {
            color: #ff6b35;
        }

        .product-actions {
            display: flex;
            gap: 0.5rem;
        }

        /* .btn {
            padding: 0.6rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 0.9rem;
        } */

        .btn-success {
            background: #38b000;
            color: white;
            flex: 2;
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #4361ee;
            border: 2px solid #4361ee;
            flex: 1;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .favorite-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .favorite-btn:hover {
            background: #fff5f5;
            border-color: #ff6b6b;
        }

        .favorite-btn.active {
            background: #ff6b6b;
            border-color: #ff6b6b;
            color: white;
        }
        /* ==================== NO RESULTS STYLES ==================== */
        .no-results {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 15px;
            margin: 2rem 0;
        }

        .no-results-icon {
            font-size: 3rem;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .no-results-title {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 1rem;
        }

        /* ==================== MODAL STYLES ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 1rem;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
             padding: 0.25rem 0.5rem;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
            border-radius: 12px 12px 0 0;
        }

        .modal-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: #e9ecef;
            color: #333;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-product {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .modal-product-image {
            width: 150px;
            height: 150px;
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .modal-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-product-info {
            flex: 1;
        }

        .modal-product-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            line-height: 1.3;
        }

        .modal-product-category {
            color: #4361ee;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .modal-product-shop {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-product-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #4361ee;
            margin-bottom: 0.03rem;
        }

        .modal-stock-status {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .modal-stock-status.in-stock {
            background: #e8f5e8;
            color: #38b000;
        }

        .modal-stock-status.low-stock {
            background: #fff3e8;
            color: #ff6b35;
        }

        .modal-stock-status.out-of-stock {
            background: #ffe8e8;
            color: #dc3545;
        }

        .modal-attributes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .modal-attribute-tag {
            background: #f8f9fa;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #666;
            border: 1px solid #e0e0e0;
        }

        .modal-description {
            /* background: #f8f9fa; */
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            /* border-left: 3px solid #4361ee; */
        }

        .modal-description h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .modal-description p {
            color: #666;
            line-height: 1.5;
            font-size: 0.9rem;
            margin: 0;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            /* padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px; */
        }

        .quantity-label {
            font-weight: 600;
            color: #333;
            min-width: 80px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .quantity-btn {
            width: 36px;
            height: 36px;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .quantity-btn:hover {
            background: #4361ee;
            color: white;
            border-color: #4361ee;
        }

        .quantity-input {
            width: 50px;
            height: 36px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            text-align: center;
            font-size: 1rem;
            font-weight: 600;
        }

        .quantity-input:focus {
            outline: none;
            border-color: #4361ee;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
        }

        .modal-actions .btn {
            flex: 1;
            padding: 0.5rem;
            font-size: 0.78rem;
        }

        /* Responsive Design for Modal */
        @media (max-width: 768px) {
            .modal-content {
                max-width: 95%;
                margin: 1rem;
            }
            
            .modal-product {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }
            
            .modal-product-image {
                width: 100%;
                max-width: 200px;
                margin: 0 auto;
            }
            
            .modal-product-name {
                font-size: 1.2rem;
            }
            
            .modal-product-price {
                font-size: 1.3rem;
            }
            
            .quantity-selector {
                flex-direction: inherit;
                align-items: anchor-center;
                gap: 0.75rem;
            }
            
            .quantity-controls {
                justify-content: center;
            }
            
            .modal-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .modal-body {
                padding: 1.25rem;
            }
            
            .modal-header {
                padding: 1rem 1.25rem;
            }
            
            .modal-title {
                font-size: 1.1rem;
            }
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 768px) {
            .shop-header {
                flex-direction: column;
                text-align: center;
            }

            .shop-logo-large {
                width: 100px;
                height: 100px;
            }

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

            .about-content {
                grid-template-columns: 1fr;
            }

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

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

            .shop-meta {
                justify-content: center;
            }

            .product-actions {
                flex-direction: column;
            }
        }
        /* Alternative Banner Style */
        .shop-banner-right {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .shop-banner-image {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

        .shop-banner-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(67, 97, 238, 0.7), rgba(56, 176, 0, 0.7));
            z-index: 1;
            mix-blend-mode: multiply;
        }

        .banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 0;
        }

        /* Banner with shop name overlay */
        .banner-content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            z-index: 2;
        }
