    header {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    
    /* Page Banner */
    .page-banner {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1592997572594-34be01bc36c7?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        color: white;
        text-align: center;
    }

    .page-banner h1 {
        font-size: 48px;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease;
        font-family: 'Playfair Display', serif;
    }

    .page-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        animation: fadeInUp 0.8s ease 0.2s both;
    }

    /* Salt Page Banner */
    .salt-page-banner {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/pink_salt.jpg');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        color: white;
        text-align: center;
    }

    .salt-page-banner h1 {
        font-size: 48px;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease;
        font-family: 'Playfair Display', serif;
    }

    .salt-page-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        animation: fadeInUp 0.8s ease 0.2s both;
    }


        /* Catalog Section - Full Width */
        .catalog-section {
            padding: 50px 0;
        }

        .catalog-main {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        /* Catalog Header */
        .catalog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .results-count {
            color: #666;
            font-size: 15px;
        }

        .results-count strong {
            color: #2E5C3E;
            font-size: 18px;
        }

        .sort-options {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sort-options label {
            color: #666;
            font-size: 14px;
        }

        .sort-select {
            padding: 10px 30px 10px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            background: white;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
        }

        .view-options {
            display: flex;
            gap: 10px;
        }

        .view-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .view-btn.active {
            background: #2E5C3E;
            border-color: #2E5C3E;
            color: white;
        }

        .view-btn i {
            font-size: 18px;
        }

        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #D4A853;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #D4A853;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .product-badge.premium {
            background: #2E5C3E;
        }

        .product-image {
            height: 290px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
        }

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

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

        .product-content {
            padding: 20px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            color: #2E5C3E;
            margin-bottom: 10px;
        }

        .salt-product-detail-text {
            margin-top: 12px;
            font-size: 15px;
            color: #6b5a46;
            background: #fefaf0;
            padding: 12px 14px;
            border-radius: 14px;
            line-height: 1.5;
        }

        .salt-product-specs {
            font-size: 15px;
            color: #4e5e4c;
            line-height: 1.5;
            margin-bottom: 20px;
            border-left: 3px solid #D4A853;
            padding-left: 14px;
        }

        .product-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #666;
        }

        .spec-item i {
            color: #D4A853;
            width: 16px;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 20px;
            font-weight: 700;
            color: #2E5C3E;
        }

        .product-price span {
            font-size: 14px;
            font-weight: 400;
            color: #999;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #D4A853;
        }

        .product-rating span {
            color: #999;
            font-size: 13px;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn-view {
            flex: 1;
            padding: 10px;
            background: #2E5C3E;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            transition: background 0.3s;
        }

        .btn-view:hover {
            background: #1A3A2A;
        }

        .btn-inquire {
            width: 45px;
            height: 40px;
            background: #D4A853;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-inquire:hover {
            background: #b38d3f;
        }

        /* Important Note Box */
        .note-box {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            border-left: 5px solid #D4A853;
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .note-icon {
            width: 70px;
            height: 70px;
            background: #2E5C3E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .note-icon i {
            font-size: 35px;
            color: #D4A853;
        }

        .note-content {
            flex: 1;
        }

        .note-content h4 {
            color: #2E5C3E;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .note-content p {
            color: #555;
            font-size: 16px;
        }

        .note-btn {
            padding: 15px 35px;
            background: #2E5C3E;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .note-btn:hover {
            background: #1A3A2A;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .page-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 8px;
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
        }

        .page-item.active {
            background: #2E5C3E;
            border-color: #2E5C3E;
            color: white;
        }

        .page-item:hover:not(.active) {
            background: #f5f5f5;
            border-color: #D4A853;
        }

        .page-item.next {
            width: auto;
            padding: 0 15px;
        }

    
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-main {
                grid-template-columns: repeat(2, 1fr);
            }
        }

          /* Mobile menu active state */
    @media (max-width: 768px) {
        nav.active {
            display: block;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
             z-index: 9999;
        }

         nav.active ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Product grid collapses to single column */
        .products-grid {
            grid-template-columns: 1fr;
            gap: 25px; /* reduce spacing for mobile */
        }

         /* Product card adjustments */
        .product-card {
            margin: 0 auto;
            max-width: 95%; /* keep cards centered */
        }

        .product-image {
            height: 200px; /* smaller image height for mobile */
        }

        .product-name {
            font-size: 16px;
            text-align: center;
        }

        .product-specs {
            font-size: 14px;
            text-align: center;
        }

        /* Note box stacks vertically */
        .note-box {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .note-icon {
            margin: 0 auto;
        }

        .note-btn {
            width: 100%;
            text-align: center;
        }

    }

        /* @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .catalog-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .note-box {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            nav.active {
                display: block;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav.active ul {
                flex-direction: column;
                gap: 15px;
            }
            
        } */
