:root {
            --black: #000000;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --gold: #d4af37;
            --dark-gold: #a18a3d;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --section-padding: 150px 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid var(--medium-gray);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 95%;
            max-width: 1600px;
            margin: 0 auto;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav-left {
            display: flex;
            gap: 40px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-left a, .nav-right a {
            color: var(--black);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: var(--black);
        }

        .nav-left a::after, .nav-right a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .nav-left a:hover::after, .nav-right a:hover::after {
            width: 100%;
        }

         /* Logo container - keeps the space for logo */
        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 60px; /* Adjust based on your logo size */
            width: 180px; /* Adjust based on your logo size */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-container a {
            text-decoration: none;
            display: flex;
            height: 100%;
            align-items: center;
        }
        .logo-img {
            max-height: 125%;
            max-width: 125%;
            transition: var(--transition);
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .nav-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-icon {
            font-size: 20px;
            color: var(--black);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .nav-icon:hover {
            transform: translateY(-2px) scale(1.1);
        }

        .nav-icon .tooltip {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--black);
            color: var(--white);
            padding: 5px 10px;
            font-size: 10px;
            border-radius: 3px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            margin-top: 10px;
        }

        .nav-icon:hover .tooltip {
            opacity: 1;
            visibility: visible;
            margin-top: 5px;
        }

        /* Cart count bubble */
        .nav-icon[href="Cart.html"] {
            position: relative;
        }

        .nav-icon[href="Cart.html"] .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--black);
            color: var(--white);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            color: var(--black);
            transition: var(--transition);
            font-size: 24px;
        }

        .hamburger.active {
            transform: rotate(90deg);
        }

        /* Video Hero Section */
        .shop-hero {
            height: 90vh;
            position: relative;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            z-index: 1;
        }

        .shop-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 80px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .shop-hero h1 {
            font-size: 82px;
            margin-bottom: 30px;
            line-height: 1.1;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.3s;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
            font-weight: 700;
            letter-spacing: 2px;
        }

        .shop-hero p {
            font-size: 16px;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
            color: var(--white);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }

        /* Shop Controls */
        .shop-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--medium-gray);
        }

        .filter-toggle {
            display: none;
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 12px 25px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-toggle:hover {
            background: var(--dark-gray);
        }

        .sort-options {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .sort-options label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sort-options select {
            padding: 10px 15px;
            border: 1px solid var(--medium-gray);
            font-size: 12px;
            background: var(--white);
            cursor: pointer;
            transition: var(--transition);
        }

        .sort-options select:hover {
            border-color: var(--black);
        }

        /* Filter Sidebar */
        .shop-container {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 50px;
            padding-bottom: 100px;
        }

        .filter-sidebar {
            padding-right: 30px;
            border-right: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }

        .filter-section {
            margin-bottom: 40px;
        }

        .filter-section h3 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            position: relative;
            padding-bottom: 10px;
        }

        .filter-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 1px;
            background: var(--black);
        }

        .filter-options {
            list-style: none;
        }

        .filter-options li {
            margin-bottom: 12px;
        }

        .filter-options a {
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            position: relative;
            display: inline-block;
            padding: 5px 0;
        }

        .filter-options a:hover, .filter-options a.active {
            color: var(--black);
            padding-left: 10px;
        }

        .filter-options a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .filter-options a:hover::after, .filter-options a.active::after {
            width: 100%;
        }

        .price-range {
            width: 100%;
            -webkit-appearance: none;
            height: 4px;
            background: var(--medium-gray);
            outline: none;
            margin-top: 15px;
        }

        .price-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            background: var(--black);
            cursor: pointer;
            border-radius: 50%;
        }

        .price-inputs {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .price-inputs input {
            width: 45%;
            padding: 8px 12px;
            border: 1px solid var(--medium-gray);
            font-size: 12px;
        }

        .apply-filters {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 12px 25px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            margin-top: 20px;
        }

        .apply-filters:hover {
            background: var(--dark-gray);
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            animation: fadeIn 0.8s both;
            animation-delay: calc(var(--order) * 0.1s);
            border: 1px solid var(--light-gray);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 380px;
            background: var(--light-gray);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.25, 0.45, 0.45, 0.95);
        }

        .product-card:hover {
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border-color: var(--black);
            transform: translateY(-5px);
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--white);
            color: var(--black);
            padding: 6px 15px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1px;
            z-index: 2;
            border: 1px solid var(--black);
        }

        .product-actions {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 15px;
            transform: translateY(50px);
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover .product-actions {
            transform: translateY(0);
            opacity: 1;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--black);
        }

        .action-btn:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-5px);
        }

        .product-info {
            padding: 20px;
            text-align: center;
            background: var(--white);
        }

        .product-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .product-card:hover .product-title {
            color: var(--black);
        }

        .product-category {
            font-size: 12px;
            color: var(--dark-gray);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-price {
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
        }

        .current-price {
            color: var(--black);
        }

        .original-price {
            text-decoration: line-through;
            color: var(--medium-gray);
        }

        /* Modified Button Styles */
        .product-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .product-card:hover .product-buttons {
            opacity: 1;
            transform: translateY(0);
        }

        .add-to-cart, .bid-now {
            flex: 1;
            padding: 12px 5px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .add-to-cart {
            background: var(--black);
            color: var(--white);
        }

        .add-to-cart:hover {
            background: var(--white);
            color: var(--black);
            border: 1px solid var(--black);
        }

        .bid-now {
            background: var(--gold); /* Assuming you have a gold color variable */
            color: var(--black);
        }

        .bid-now:hover {
            background: var(--light-gold); /* Lighter gold for hover */
            border: 1px solid var(--gold);
        }

        .add-to-cart.added {
            background-color: #28a745 !important;
            color: white !important;
            transition: all 0.3s ease;
        }

        /* If you don't have gold color variables, add these: */
        :root {
            --gold: #d4af37;
            --light-gold: #f1e5ac;
        }
        /* Product Rating */
        .product-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .rating-stars {
            color: var(--gold);
            font-size: 12px;
        }

        .rating-count {
            font-size: 11px;
            color: var(--dark-gray);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 60px;
            gap: 10px;
        }

        .page-item {
            list-style: none;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--medium-gray);
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: var(--transition);
        }

        .page-link:hover, .page-link.active {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }

        /* Quick View Modal */
        .quick-view-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .quick-view-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--white);
            width: 90%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 60px;
            position: relative;
            transform: translateY(50px);
            transition: var(--transition);
        }

        .quick-view-modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            color: var(--black);
            background: none;
            border: none;
        }

        .modal-close:hover {
            transform: rotate(90deg);
        }

        .modal-images {
            display: flex;
            gap: 15px;
        }

        .modal-main-image {
            flex: 1;
            height: 500px;
            background: var(--light-gray);
            overflow: hidden;
        }

        .modal-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .modal-thumbnails {
            width: 80px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal-thumbnail {
            width: 100%;
            height: 80px;
            background: var(--light-gray);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
        }

        .modal-thumbnail:hover, .modal-thumbnail.active {
            border-color: var(--black);
        }

        .modal-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-info h2 {
            font-size: 28px;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .modal-price {
            font-size: 24px;
            color: var(--black);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .modal-description {
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 14px;
        }

        .modal-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .modal-rating-stars {
            color: var(--gold);
            font-size: 14px;
        }

        .modal-rating-count {
            font-size: 13px;
            color: var(--dark-gray);
        }

        .modal-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid var(--black);
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .quantity-btn:hover {
            background: var(--light-gray);
        }

        .quantity-input {
            width: 50px;
            height: 40px;
            text-align: center;
            border: none;
            border-left: 1px solid var(--black);
            border-right: 1px solid var(--black);
            font-size: 14px;
        }

        .modal-add-to-cart {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 0 30px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-add-to-cart:hover {
            background: var(--white);
            color: var(--black);
            border: 1px solid var(--black);
        }

        .modal-add-to-cart.added {
            background-color: #28a745 !important;
            color: white !important;
        }

        .wishlist-btn {
            background: var(--white);
            color: var(--black);
            border: 1px solid var(--black);
            padding: 0 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wishlist-btn:hover {
            background: var(--light-gray);
        }

        .wishlist-btn.active {
            background: var(--black);
            color: var(--white);
        }

        .modal-details {
            margin-top: 25px;
            border-top: 1px solid var(--medium-gray);
            padding-top: 15px;
        }

        .modal-details-item {
            margin-bottom: 15px;
        }

        .modal-details-item h4 {
            font-size: 13px;
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .modal-details-item p {
            font-size: 13px;
            color: var(--dark-gray);
            line-height: 1.7;
        }

        /* Featured Banner */
        .featured-banner {
            background: var(--black);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .featured-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            opacity: 0.2;
            z-index: 1;
        }

        .featured-banner .container {
            position: relative;
            z-index: 2;
        }

        .featured-banner h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .featured-banner p {
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .banner-btn {
            background: var(--white);
            color: var(--black);
            border: none;
            padding: 15px 35px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
        }

        .banner-btn:hover {
            background: var(--black);
            color: var(--white);
            border: 1px solid var(--white);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--white);
            color: var(--black);
            padding: 100px 0 50px;
            position: relative;
            border-top: 1px solid var(--light-gray);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            padding: 0 80px;
            margin-bottom: 80px;
        }

        .footer-column h4 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            position: relative;
            display: inline-block;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--black);
        }

        .footer-column ul {
            list-style: none;
            margin-top: 20px;
        }

        .footer-column li {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);
            position: relative;
            display: inline-block;
            padding: 5px 0;
        }

        .footer-column a:hover {
            color: var(--black);
            padding-left: 10px;
        }

        .footer-column a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .footer-column a:hover::after {
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .social-links a {
            color: var(--dark-gray);
            font-size: 16px;
            transition: var(--transition);
            width: 45px;
            height: 45px;
            border: 1px solid var(--dark-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--black);
            transition: var(--transition);
            z-index: -1;
        }

        .social-links a:hover {
            color: var(--white);
            border-color: var(--black);
            transform: translateY(-3px);
        }

        .social-links a:hover::before {
            left: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid var(--light-gray);
            position: relative;
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--dark-gray);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .footer-bottom a {
            color: var(--dark-gray);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--black);
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .payment-methods img {
            height: 25px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }

        .payment-methods img:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        .back-to-top {
            position: absolute;
            top: -25px;
            right: 80px;
            width: 50px;
            height: 50px;
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            color: var(--white);
            font-size: 18px;
            border-radius: 50%;
        }

        .back-to-top:hover {
            transform: translateY(-5px) rotate(360deg);
            background: var(--dark-gray);
            color: var(--white);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .shop-hero h1 {
                font-size: 62px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .modal-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .modal-images {
                flex-direction: column;
            }
            
            .modal-thumbnails {
                width: 100%;
                flex-direction: row;
                order: 1;
            }
            
            .modal-main-image {
                order: 2;
                height: 400px;
            }
        }
        
        @media (max-width: 992px) {
            .shop-hero h1 {
                font-size: 48px;
            }
            
            .shop-container {
                grid-template-columns: 1fr;
            }
            
            .filter-sidebar {
                display: none;
                padding-right: 0;
                border-right: none;
                margin-bottom: 40px;
            }
            
            .filter-sidebar.active {
                display: block;
            }
            
            .filter-toggle {
                display: block;
            }
            
            .featured-banner h2 {
                font-size: 36px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .shop-hero {
                height: 80vh;
            }
            
            .shop-hero h1 {
                font-size: 36px;
            }
            
            .shop-hero p {
                font-size: 14px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 30px;
            }
            
            .product-image {
                height: 320px;
            }
            
            .modal-content {
                padding: 40px;
            }
            
            .featured-banner h2 {
                font-size: 32px;
            }

            .nav-left {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-left.active {
                display: flex;
            }

            .nav-icons {
                display: none;
                position: fixed;
                top: 180px;
                left: 0;
                width: 100%;
                background: var(--white);
                justify-content: center;
                padding: 20px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-icons.active {
                display: flex;
            }

            .hamburger {
                display: block;
            }

            .logo-container {
                position: static;
                transform: none;
                margin: 0 auto;
            }

            nav {
                flex-direction: column;
                gap: 20px;
            }

            .nav-right {
                width: 100%;
                justify-content: space-between;
            }
        }

        @media (max-width: 576px) {
            .shop-hero {
                height: 70vh;
            }
            
            .shop-hero h1 {
                font-size: 32px;
            }
            
            .shop-hero-content {
                padding: 0 40px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
            
            .modal-actions {
                flex-direction: column;
            }
            
            .modal-add-to-cart,
            .wishlist-btn {
                width: 100%;
                justify-content: center;
                padding: 12px;
            }
            
            .featured-banner h2 {
                font-size: 28px;
            }
            
            .featured-banner p {
                font-size: 14px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }

            .footer-column {
                text-align: center;
            }

            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }

            .back-to-top {
                right: 20px;
            }
        }