:root {
    /* Brand Colors based on the packaging and Logo */
    --primary-red: #D32F2F;
    /* Deep red/maroon for tradition */
    --accent-gold: #FFC107;
    /* Bright yellow/gold for energy */
    --text-dark: #333333;
    --off-white: #F9F7F2;
    /* Cream background instead of stark white */
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    /* Traditional, elegant font */
}

/* --- Navigation --- */
nav {
    background-color: #fff;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
    top: 0;
    border-bottom: 3px solid var(--primary-red);
}

.logo img {
    height: 70px;
    padding: 6px;
    /* Adjust based on your logo file */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(193, 30, 16, 0.6)), url("images/background_image.png");
    /* If you have a pattern image, put it here */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2px;
    position: relative;
    overflow: hidden;
}

/* Ornamental Pattern CSS (Simulating a mandala/Indian pattern) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#FFC107 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* --- Products Section --- */
.products-section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

/* Decorative underline */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.product-image-container {
    height: 300px;
    background-image: url("images/product_card.jpg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-tag {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.buy-btn {
    background-color: var(--text-dark);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.buy-btn:hover {
    background-color: var(--primary-red);
}

/* --- Features Section --- */
.features {
    background-color: var(--accent-gold);
    padding: 3rem 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    color: var(--text-dark);
}

.feature-item {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}

/* --- Footer --- */
footer {
    background-color: #d52424;
    color: white;
    padding: 3rem 5%;
    text-align: center;
    border-top: 5px solid var(--primary-red);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-box h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.footer-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-box i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.footer-box a {
    color: white;
    text-decoration: none;
}

.footer-box a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: white ;
    font-size: 1.4rem;
    margin-right: 15px;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: translateY(-4px);
    color: var(--accent-gold);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for demo */
}