/* --- Under Construction Banner --- */
.under-construction-banner {
    background-color: #f8d7da; /* Light red/pink for warning */
    color: #721c24;           /* Dark red text */
    border: 1px solid #f5c6cb; /* Red border */
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
    position: sticky; /* Keep it at the top if scrolling */
    top: 0;
    z-index: 1000; /* Ensure it's above other content */
}
.under-construction-banner h1 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.8em; /* Slightly larger heading */
}
.under-construction-banner p {
    margin-bottom: 0;
}


/* Main Stylesheet for Luxury Affordable Scents */
:root {
    --color-dark: #121212;
    --color-gold: #D4AF37;
    --color-light-gray: #f8f9fa;
    --color-text: #343a40;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); background-color: #fff; color: var(--color-text); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.main-header { background-color: var(--color-dark); padding: 1rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.7rem; text-decoration: none; color: #fff; }
.main-nav a { color: #fff; text-decoration: none; margin-left: 25px; transition: color 0.3s; }
.main-nav a:hover { color: var(--color-gold); }

/* Hero Section */
.hero { text-align: center; padding: 5rem 1.5rem; background-color: var(--color-light-gray); }
.hero h1 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; color: #6c757d; max-width: 700px; margin: 0 auto; }

/* Products Grid */
.products-section { padding: 4rem 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.product-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
.product-image { height: 300px; width: 100%; overflow: hidden; background-color: var(--color-light-gray); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; text-align: center; }
.product-info h3 { font-family: var(--font-heading); font-size: 1.3rem; margin: 0 0 8px; }
.product-info .appeal { font-size: 0.95rem; color: #6c757d; margin-bottom: 15px; flex-grow: 1; }
.product-price { font-size: 1.5rem; font-weight: bold; color: var(--color-dark); }

/* Footer */
.main-footer { background-color: var(--color-dark); color: #fff; padding: 3rem 0; text-align: center; }