/* Color Palette */
:root {
    --plum: #502551;
    --plum-light: #7a3a7c;
    --soft-cream: #faf7f2;
    --text-dark: #333;
    --text-light: #777;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.top-bar {
    background: var(--plum);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

header {
    background: white;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin: 0 15px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--plum); }

.wa-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1544126592-807daa2b565b?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.badge {
    background: var(--plum);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--plum); }
.hero p { font-size: 1.1rem; color: var(--text-light); max-width: 500px; margin-bottom: 30px; }

.btn-primary {
    background: var(--plum);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
}

.btn-secondary {
    border: 2px solid var(--plum);
    color: var(--plum);
    padding: 13px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: var(--soft-cream);
    text-align: center;
}

.feature-item i { font-size: 2.5rem; color: var(--plum); margin-bottom: 15px; }

/* --- Optimized Product Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.product-card {
    background: var(--white);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.product-card:hover {
    box-shadow: 0 15px 35px rgba(80, 37, 81, 0.08);
    transform: translateY(-5px);
}

.product-img-container {
    height: 380px; /* Uniform height for all products */
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This keeps the photos proportional and clean */
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.08); /* Gentle zoom effect on hover */
}

/* Overlay for the button feel */
.product-img-container::after {
    content: 'Order via WhatsApp';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--plum);
    color: white;
    padding: 12px 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.product-card:hover .product-img-container::after {
    bottom: 0;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--plum);
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 10px;
}

/* Sections Styling */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: var(--plum); }
.products, .process, .about, .faq, .contact { padding: 80px 8%; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.img-placeholder {
    height: 250px;
    background: #f0f0f0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-weight: bold;
    border-radius: 8px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step { flex: 1; min-width: 200px; padding: 20px; text-align: center; }
.step span {
    font-size: 3rem;
    font-weight: bold;
    color: #eee;
    display: block;
    margin-bottom: -30px;
}
.step h3 { position: relative; z-index: 1; margin-bottom: 10px; color: var(--plum); }

/* Stats */
.stats { display: flex; gap: 30px; margin-top: 30px; }
.stats strong { font-size: 1.5rem; color: var(--plum); }

/* Footer */
footer { background: #222; color: white; padding: 60px 8% 20px; text-align: center; }
.footer-logo { font-size: 2rem; font-family: 'Playfair Display'; margin-bottom: 20px; }
.footer-logo span { color: var(--plum-light); }
.footer-links { list-style: none; display: flex; justify-content: center; margin-bottom: 30px; }
.footer-links li { margin: 0 15px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; }
.copyright { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; color: #666; }

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
}