
        body {
            font-family: 'Playfair Display', serif;
            line-height: 1.6;
            color: #2c2c2c;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 0.5rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8B4513;
            text-decoration: none;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            color: #2c2c2c;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            font-size: 1.1rem;
        }

        .nav-menu a:hover {
            color: #8B4513;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #8B4513;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.3rem;
            color: #2c2c2c;
            transition: color 0.3s ease;
        }

        .nav-icon:hover {
            color: #8B4513;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #8B4513;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
			background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../imgs/frontpage.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1.5s ease;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-weight: 300;
            letter-spacing: 3px;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-style: italic;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .cta-primary {
            background: #8B4513;
            color: white;
            border: 2px solid #8B4513;
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .cta-primary:hover {
            background: #A0522D;
            border-color: #A0522D;
        }

        .cta-secondary:hover {
            background: white;
            color: #8B4513;
        }

        /* Featured Collections */
        .featured-collections {
            padding: 6rem 2rem;
            background: #f8f8f8;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #2c2c2c;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            color: #666;
            font-style: italic;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .collection-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
            height: 500px;
        }

        .collection-card:hover {
            transform: translateY(-10px);
        }

        .collection-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .collection-card:hover img {
            transform: scale(1.1);
        }

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .collection-card:hover .collection-overlay {
            transform: translateY(0);
        }

        .collection-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .collection-description {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Products Section */
        .products {
            padding: 6rem 2rem;
            background: white;
        }

        .products-filter {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #8B4513;
            color: white;
            border-color: #8B4513;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: #8B4513;
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-actions {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-actions {
            opacity: 1;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: #8B4513;
            color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2c2c2c;
            font-weight: 500;
        }

        .product-price {
            font-size: 1.1rem;
            color: #8B4513;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .stars {
            color: #FFD700;
        }

        .add-to-cart {
            width: 100%;
            padding: 0.8rem;
            background: #8B4513;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .add-to-cart:hover {
            background: #A0522D;
            transform: translateY(-2px);
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: #f8f8f8;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #2c2c2c;
            font-weight: 300;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 400px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Footer */
        .footer {
            background: #2c2c2c;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #8B4513;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #8B4513;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #ccc;
        }

/* --- New & Improved Cart Styles --- */

.cart-modal {
    position: fixed;
    top: 0;
    right: -400px; /* Initially off-screen */
    width: 400px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    flex-direction: column;
}

.cart-modal.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.cart-item-details p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.remove-from-cart {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.remove-from-cart:hover {
    color: #c0392b;
}

.cart-summary {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cart-summary .cta-button {
    width: 100%;
}

.empty-cart {
    text-align: center;
    color: #888;
    padding: 2rem 0;
}

/* For smaller screens */
@media (max-width: 480px) {
    .cart-modal {
        width: 100%;
        right: -100%;
    }
}
        .cart-modal.open {
            right: 0;
        }

        /* User Menu Dropdown */
        .user-menu {
            position: relative;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .user-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .user-dropdown a {
            display: block;
            padding: 1rem 1.5rem;
            color: #2c2c2c;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background 0.3s ease;
        }

        .user-dropdown a:hover {
            background: #f8f8f8;
            color: #8B4513;
        }

        .user-dropdown span {
            display: block;
            padding: 1rem 1.5rem;
            font-weight: 600;
            color: #8B4513;
            border-bottom: 1px solid #eee;
        }

        /* Auth Modals */
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .auth-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .auth-modal-content {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            width: 90%;
            max-width: 450px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .auth-modal.show .auth-modal-content {
            transform: scale(1);
        }

        .auth-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .auth-modal-close:hover {
            background: #f0f0f0;
            color: #8B4513;
        }

        .auth-form h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #2c2c2c;
            font-size: 2rem;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c2c2c;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #8B4513;
        }

        .auth-btn {
            width: 100%;
            padding: 1rem;
            background: #8B4513;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn:hover {
            background: #A0522D;
            transform: translateY(-2px);
        }

        .auth-switch {
            text-align: center;
            margin-top: 2rem;
            color: #666;
        }

        .auth-switch a {
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
        }

        .auth-switch a:hover {
            text-decoration: underline;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 2rem 0;
            color: #666;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #eee;
        }

        .divider span {
            padding: 0 1rem;
        }

        .social-login {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-btn {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #eee;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .social-btn:hover {
            border-color: #8B4513;
            color: #8B4513;
        }

        .google-btn {
            color: #db4437;
        }

        .facebook-btn {
            color: #3b5998;
        }

        /* Checkout Enhancement */
        .checkout-form {
            display: none;
            padding: 2rem;
            background: #f8f8f8;
            border-top: 1px solid #eee;
        }

        .checkout-form.show {
            display: block;
        }

        .checkout-section {
            margin-bottom: 2rem;
        }

        .checkout-section h4 {
            margin-bottom: 1rem;
            color: #8B4513;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .payment-method {
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-method.selected {
            border-color: #8B4513;
            background: #f8f5f0;
        }

        .order-summary {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .summary-row.total {
            font-weight: bold;
            font-size: 1.1rem;
            border-top: 1px solid #eee;
            padding-top: 0.5rem;
            margin-top: 1rem;
        }

        /* Search Modal */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding-top: 10vh;
        }

        .search-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .search-container {
            background: white;
            width: 90%;
            max-width: 600px;
            border-radius: 12px;
            overflow: hidden;
            transform: translateY(-50px);
            transition: transform 0.3s ease;
        }

        .search-modal.show .search-container {
            transform: translateY(0);
        }

        .search-input-container {
            position: relative;
            padding: 2rem;
            border-bottom: 1px solid #eee;
        }

        .search-input {
            width: 100%;
            padding: 1rem 3rem 1rem 1rem;
            border: 2px solid #eee;
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            border-color: #8B4513;
        }

        .search-close {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .search-close:hover {
            background: #f0f0f0;
            color: #8B4513;
        }

        .search-results {
            max-height: 60vh;
            overflow-y: auto;
            padding: 1rem;
        }

        .search-category {
            margin-bottom: 2rem;
        }

        .search-category h4 {
            color: #8B4513;
            margin-bottom: 1rem;
            padding: 0 1rem;
            font-size: 1.1rem;
        }

        .search-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-item:hover {
            background: #f8f8f8;
        }

        .search-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
        }

        .search-item-info {
            flex: 1;
        }

        .search-item-name {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .search-item-price {
            color: #8B4513;
            font-weight: 600;
        }

        .no-results {
            text-align: center;
            padding: 3rem;
            color: #666;
        }

        .search-suggestions {
            padding: 1rem 2rem;
            background: #f8f8f8;
            border-top: 1px solid #eee;
        }

        .search-suggestions h5 {
            margin-bottom: 0.5rem;
            color: #2c2c2c;
        }

        .suggestion-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .suggestion-tag {
            background: white;
            border: 1px solid #ddd;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .suggestion-tag:hover {
            background: #8B4513;
            color: white;
            border-color: #8B4513;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f8f8f8, #fff);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            margin-bottom: 2rem;
            color: #2c2c2c;
            font-size: 2rem;
            font-weight: 300;
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            color: #8B4513;
            font-size: 2rem;
            font-weight: 300;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: #f8f8f8;
            border-radius: 8px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #8B4513;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-details h4 {
            margin-bottom: 0.25rem;
            color: #2c2c2c;
        }

        .contact-details p {
            color: #666;
            margin: 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c2c2c;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8B4513;
        }

        .form-group textarea {
            min-height: 120px;
        }

        .contact-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: #8B4513;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-submit:hover {
            background: #A0522D;
            transform: translateY(-2px);
        }

        .business-hours {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }

        .business-hours h4 {
            margin-bottom: 1rem;
            color: #8B4513;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .cart-header {
            padding: 2rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-items {
            padding: 1rem;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }

        .cart-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-total {
            padding: 2rem;
            border-top: 1px solid #eee;
            background: #f8f8f8;
        }

        .checkout-btn {
            width: 100%;
            padding: 1rem;
            background: #8B4513;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cart-modal {
                width: 100%;
                right: -100%;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #2c2c2c;
            margin: 3px 0;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: flex;
            }
        }
		
		.loading {
			text-align: center;
			padding: 2rem;
			font-size: 1.2rem;
			color: #8B4513;
			grid-column: 1 / -1;
		}

		.no-products, .error {
			text-align: center;
			padding: 2rem;
			font-size: 1.2rem;
			color: #666;
			grid-column: 1 / -1;
		}

		.error {
			color: #dc3545;
		}


        .social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    align-items: center;
    justify-content: center;
}

.social-icon {
    display: inline-block;
    width: 32px; /* Adjust size as needed */
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures images maintain aspect ratio */
    filter: grayscale(100%) opacity(0.8); /* Optional: stylish effect */
    transition: filter 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.social-icon:hover img {
    filter: grayscale(0%) opacity(1); /* Full color on hover */
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background-color: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    min-width: 250px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.info {
    background-color: #3498db;
}

.notification.success {
    background-color: #2ecc71;
}

.notification.error {
    background-color: #e74c3c;
}

/* Add to your existing product-card styles */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
}

.product-price .new-price {
    font-weight: bold;
    color: #e74c3c; /* Red color for sale price */
    font-size: 1.1em;
}

/* Style for the discount badge */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c; /* Red background for discount */
    color: white;
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
}

.product-colors {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
}