    /* CORE STYLES (Your Original Design) */
    :root {
        --primary: #F8D7D3;
        --secondary: #F3E9E2;
        --accent: #E8B4B8;
        --dark: #67595E;
        --light: #FFF9F5;
        --text: #4A3F41;
        --highlight: #D8A7B1;
        --white: #ffffff;
    }
	

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: 'Montserrat', sans-serif;
        color: var(--text);
        background-color: var(--light);
        line-height: 1.6;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; }

    /* Header */
    header {
        background-color: var(--light);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 1rem 5%;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    .logo i { color: var(--accent); margin-right: 0.5rem; font-size: 1.8rem; }

    nav ul { display: flex; list-style: none; }
    nav ul li { margin-left: 2rem; }
    nav ul li a { text-decoration: none; color: var(--text); font-weight: 500; transition: all 0.3s ease; }
    nav ul li a:hover { color: var(--accent); }

    /* Main */
    main { padding: 2rem 5%; max-width: 1400px; margin: 0 auto; }

    /* Products Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .brand-label { grid-column: 1 / -1; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); margin: 1rem 0 0.5rem; padding-left: 0.5rem; position: relative; }
    .brand-label:before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 70%; background-color: var(--accent); }

    .product-card {
        background-color: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    .product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }

    .product-image {
        height: 300px;
        background-color: var(--secondary);
        background-size: cover;
        background-position: center;
    }

    .product-info { padding: 1.5rem; }
    .product-title { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--dark); }
    .product-price { font-weight: 500; color: var(--accent); margin-bottom: 1rem; }

    .buy-btn {
        background-color: var(--accent);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }
    .buy-btn:hover { background-color: var(--highlight); transform: translateY(-2px); }
	
	/* Add this to your CSS for the arrow animation */
	@keyframes blinker {
		50% { opacity: 0; }
	}
	
	.blink-arrow {
		display: inline-block;
		animation: blinker 1s linear infinite; /* This makes it flicker every 1 second */
	}

	/* --- CUTE TOAST NOTIFICATION --- */
	.toast {
		visibility: hidden; /* Hidden by default */
		min-width: 250px; 
		background-color: var(--white);
		color: var(--dark);
		text-align: center;
		border-radius: 50px; /* Fully rounded/pill shape */
		padding: 16px 24px;
		position: fixed;
		z-index: 2000; /* Sit on top of everything, even the modal */
		left: 50%;
		top: 30px;
		transform: translateX(-50%) translateY(-100px); /* Start hidden above screen */
		box-shadow: 0 5px 20px rgba(103, 89, 94, 0.2); /* Soft shadow using your dark color */
		border: 1px solid var(--primary); /* Subtle pink border */
		font-family: 'Montserrat', sans-serif;
		font-size: 0.95rem;
		font-weight: 500;
		display: flex;
		align-items: center;
		gap: 10px;
		transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bouncy effect */
	}
	
	/* The icon styling */
	.toast i {
		color: var(--accent);
		font-size: 1.2rem;
	}
	
	/* The class we add with JS to show it */
	.toast.show {
		visibility: visible;
		transform: translateX(-50%) translateY(0); /* Slide down to position */
	}
	
	/* --- CART BUTTON STYLES --- */
	.cart-btn-container {
		position: relative;
		cursor: pointer;
		margin-left: 2rem; /* Space from the nav links */
		color: var(--dark);
		font-size: 1.4rem;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
	}
	
	.cart-btn-container:hover {
		color: var(--accent);
		transform: scale(1.1);
	}
	
	.cart-badge {
		position: absolute;
		top: -8px;
		right: -10px;
		background-color: var(--accent); /* Uses your pink accent */
		color: white;
		font-size: 0.75rem;
		font-weight: 700;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid var(--white); /* White border makes it pop */
	}
	
		/* --- CHATBOT STYLES --- */

		/* The Floating Button */
		#chat-launcher {
			position: fixed;
			bottom: 30px;
			right: 30px;
			width: 60px;
			height: 60px;
			background-color: var(--dark);
			color: var(--white);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.8rem;
			cursor: pointer;
			box-shadow: 0 4px 15px rgba(0,0,0,0.2);
			transition: all 0.3s ease;
			z-index: 1500;
		}
		
		#chat-launcher:hover {
			transform: scale(1.1);
			background-color: var(--accent);
		}
		
		/* The Chat Window (Hidden by default) */
		#chat-window {
			position: fixed;
			bottom: 100px;
			right: 30px;
			width: 350px;
			height: 450px;
			background-color: var(--white);
			border-radius: 20px;
			box-shadow: 0 5px 30px rgba(0,0,0,0.15);
			z-index: 1500;
			display: flex;
			flex-direction: column;
			overflow: hidden;
			transform: translateY(20px);
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
			border: 1px solid var(--secondary);
		}
		
		/* Open State */
		#chat-window.active {
			transform: translateY(0);
			opacity: 1;
			visibility: visible;
		}
		
		/* Header */
		.chat-header {
			background-color: var(--accent); /* Pink header */
			padding: 1rem;
			display: flex;
			justify-content: space-between;
			align-items: center;
			color: white;
		}
		
		.chat-title { font-weight: 600; font-family: 'Playfair Display', serif; display: flex; gap: 8px; align-items: center; }
		.chat-close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
		
		/* Body */
		.chat-body {
			flex: 1;
			padding: 1rem;
			overflow-y: auto;
			background-color: var(--light);
			display: flex;
			flex-direction: column;
			gap: 15px;
		}
		
		/* Message Bubbles */
		.chat-message {
			max-width: 85%;
			padding: 12px 16px;
			border-radius: 12px;
			font-size: 0.9rem;
			line-height: 1.4;
			position: relative;
			animation: fadeIn 0.3s ease;
		}
		
		.chat-message.bot {
			background-color: white;
			color: var(--dark);
			border-bottom-left-radius: 2px;
			box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		}
		
		.chat-message.user {
			background-color: var(--dark);
			color: white;
			align-self: flex-end;
			border-bottom-right-radius: 2px;
		}
		
		/* Buttons inside chat */
		.chat-option-btn {
			background-color: var(--secondary);
			color: var(--dark);
			border: 1px solid var(--accent);
			padding: 8px 12px;
			border-radius: 20px;
			cursor: pointer;
			margin-top: 8px;
			font-size: 0.85rem;
			transition: all 0.2s;
			width: 100%;
			text-align: left;
			display: flex;
			align-items: center;
			gap: 8px;
			margin-bottom: 8px; /* Adds space between the buttons */
			margin-top: 0;      /* Reset top margin if it exists */
		}
		
		.chat-option-btn:hover {
			background-color: var(--accent);
			color: white;
		}
		
		/* Input Field inside chat */
		.chat-input-group {
			display: flex;
			margin-top: 5px;
		}
		.chat-input-group input {
			flex: 1;
			padding: 8px;
			border: 1px solid #ddd;
			border-radius: 8px 0 0 8px;
			outline: none;
		}
		.chat-input-group button {
			padding: 8px 12px;
			background-color: var(--dark);
			color: white;
			border: none;
			border-radius: 0 8px 8px 0;
			cursor: pointer;
		}
		
		@keyframes fadeIn {
			from { opacity: 0; transform: translateY(5px); }
			to { opacity: 1; transform: translateY(0); }
		}
		
		/* Mobile Responsiveness for Chat */
		@media (max-width: 480px) {
			#chat-window {
				width: 90%;
				right: 5%;
				bottom: 100px;
			}
		}


    /* --- CHECKOUT MODAL STYLES --- */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(103, 89, 94, 0.6);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
    }
    .modal-overlay.active { display: flex; }

    .checkout-container {
        background-color: var(--white);
        width: 90%;
        max-width: 1000px;
        max-height: 90vh;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        position: relative;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
        z-index: 10;
        background: none;
        border: none;
        width: 40px;
        height: 40px;
    }

    .checkout-left { padding: 2.5rem; border-right: 1px solid var(--secondary); }
    .checkout-right { padding: 2.5rem; background-color: var(--light); }

    .checkout-title { font-family: 'Playfair Display', serif; color: var(--dark); font-size: 1.8rem; margin-bottom: 0.5rem; }
    .section-title { font-size: 1.1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 1rem; color: var(--dark); border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; display: inline-block; }

    .form-group { margin-bottom: 1rem; }
    .form-label { display: block; font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--text); }
    .form-input { width: 100%; padding: 0.8rem; border: 1px solid var(--accent); border-radius: 8px; font-family: 'Montserrat', sans-serif; }
    
    .radio-group { display: flex; flex-direction: column; gap: 0.8rem; }
    .radio-option { display: flex; align-items: center; border: 1px solid var(--secondary); padding: 1rem; border-radius: 8px; cursor: pointer; transition: 0.2s; }
    .radio-option:hover { background-color: var(--light); border-color: var(--accent); }
    .radio-option input { margin-right: 1rem; accent-color: var(--dark); transform: scale(1.2); }

    .cart-item { display: flex; align-items: center; background: white; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; border: 1px solid var(--secondary); }
    .cart-img { width: 60px; height: 60px; border-radius: 6px; object-fit: cover; margin-right: 1rem; background-color: var(--secondary); }
    .cart-details { flex: 1; }
    .cart-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
    .remove-btn { color: #cc0000; cursor: pointer; font-size: 0.8rem; border: none; background: none; margin-top: 5px; }

    .summary-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.95rem; }
    .total-row { display: flex; justify-content: space-between; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--secondary); font-weight: 700; font-size: 1.2rem; color: var(--dark); }

    .submit-btn { background-color: var(--dark); color: var(--white); width: 100%; padding: 1rem; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; margin-top: 2rem; cursor: pointer; }
    .continue-shopping { display: block; text-align: center; margin-top: 1rem; color: var(--text); font-size: 0.9rem; text-decoration: underline; cursor: pointer; }

    /* Footer */
    footer { background-color: var(--dark); color: var(--light); padding: 3rem 5%; margin-top: 4rem; }

    .footer-container {
		max-width: 1400px;
		margin: 0 auto;
		display: grid;
		/* Use 3 columns instead of 4 to match your 3 HTML divs */
		grid-template-columns: 1.5fr 1fr 1.5fr; 
		gap: 2rem;
		align-items: start;
	}

    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--light); text-decoration: none; }
    .social-links a { color: var(--light); margin-right: 1rem; font-size: 1.2rem; }
    .copyright { text-align: center; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; opacity: 0.7; font-size: 0.9rem; }

    .footer-about p { margin-bottom: 1.5rem; opacity: 0.8; }

    .social-links { display: flex; gap: 1rem; }
    .social-links a { color: var(--light); background-color: rgba(255, 255, 255, 0.1); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
    .social-links a:hover { background-color: var(--accent); transform: translateY(-3px); }

    .footer-links h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--light); }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 0.8rem; }
    .footer-links ul li a { color: var(--light); opacity: 0.8; text-decoration: none; transition: all 0.3s ease; }
    .footer-links ul li a:hover { opacity: 1; color: var(--accent); padding-left: 5px; }

    /* FIXED: Position Newsletter in Column 4 */
    .newsletter {
		/* Remove the 'grid-column: 4' as it was causing the jump */
		grid-column: auto; 
	}

    .newsletter p { opacity: 0.8; margin-bottom: 1.5rem; }
    .newsletter-form { display: flex; }
    .newsletter-form input { flex: 1; padding: 0.8rem; border: none; border-radius: 8px 0 0 8px; font-family: 'Montserrat', sans-serif; }
    .newsletter-form button { background-color: var(--accent); color: white; border: none; border-radius: 0 8px 8px 0; padding: 0 1.2rem; cursor: pointer; transition: all 0.3s ease; }
    .newsletter-form button:hover { background-color: var(--highlight); }


    /* ========================================= */
    /* === MOBILE RESPONSIVENESS FIX === */
    /* ========================================= */
    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: 1fr;
        }

        .header-container {
           flex-direction: row; /* Keep row direction for logo + cart */
			flex-wrap: wrap; 
			justify-content: space-between;
        }
        /* Make the logo take up space */
		.logo {
			order: 1;
		}
	
		/* Put cart next to logo on mobile */
		.cart-btn-container {
			order: 2;
			margin-left: 0;
		}
	
		/* Force nav to break to a new line */
		nav {
			order: 3;
			width: 100%;
			margin-top: 1rem;
		}
		
		nav ul {
			justify-content: center;
			margin-left: 0;
		}
		
		nav ul li {
			margin: 0 1rem; /* Better spacing on mobile */
		}

        /* Footer Mobile Stack */
        .footer-container {
			grid-template-columns: 1fr; /* Stack everything on mobile */
			text-align: center;
		}
        /* FIXED: Reset newsletter position for mobile */
        .newsletter-form {
			justify-content: center;
		}

        /* MODAL MOBILE FIXES */
        .checkout-container {
            display: flex;
            flex-direction: column;
            width: 100% !important;
            height: 100% !important;
            max-height: 100vh !important;
            border-radius: 0;
            grid-template-columns: 1fr;
        }

        .checkout-left, .checkout-right {
            width: 100%;
            padding: 1.5rem;
        }

        .checkout-left {
            border-right: none;
            border-bottom: 1px solid var(--secondary);
            order: 1;
        }

        .checkout-right {
            background-color: var(--secondary);
            order: 2;
            padding-bottom: 3rem;
        }

        .close-modal {
            top: 10px;
            right: 10px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
    }
	
	