/* --- Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --mnyalu-red: #d32f2f;
    --mnyalu-orange: #ff9800;
    --mnyalu-gradient: linear-gradient(90deg, #ff8a00, #e52d27);
    --mnyalu-dark: #1a1a1a;
    --bg-light: #fdfdfd;
    --card-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--mnyalu-dark);
    line-height: 1.6;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
}

.brand-text h1 {
    font-size: 1.5rem;
    color: var(--mnyalu-red);
    line-height: 1;
}

.brand-text p {
    font-size: 0.8rem;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--mnyalu-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--mnyalu-red);
}

.admin-btn {
    background: var(--mnyalu-dark);
    color: white;
    padding: 8px 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* --- Admin Login & Dashboard Layouts --- */
.login-page-bg {
    background: rgba(18, 25, 41, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-standalone-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px;
}

.admin-btn-link {
    background: var(--mnyalu-dark);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.dashboard-card h3 {
    margin-bottom: 20px;
    color: var(--mnyalu-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Product Tag Grid for Dashboard */
.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.prod-tag {
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 18px;
    border-radius: 12px;
    transition: transform 0.2s;
    font-weight: 600;
}

.prod-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.prod-tag small {
    display: block;
    color: #a0aec0;
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: normal;
}

.price-red {
    color: var(--mnyalu-red);
    font-size: 1.2rem;
    margin-right: 15px;
}

.status-select {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* --- Shopping Cart Sidebar --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; 
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 3000;
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--mnyalu-red);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    background: #25D366; 
    color: white;
    border: none;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.checkout-btn:hover { opacity: 0.9; }

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background: var(--mnyalu-gradient);
    color: white;
    min-height: 500px;
}

.hero-content { max-width: 500px; }

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.shop-now-btn {
    background: white;
    color: var(--mnyalu-red);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
    margin-top: 20px;
}

.shop-now-btn:hover { transform: scale(1.05); }

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px; 
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* --- Features Bar --- */
.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 10%;
    background: white;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item .icon { font-size: 2rem; }

/* --- Shop Layout & Categories --- */
.shop-container {
    display: flex;
    padding: 50px 5%;
    gap: 40px;
    background: #f8f9fa;
    min-height: 60vh;
}

.shop-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 260px;
    flex-shrink: 0;
}

.category-heading {
    border-left: 5px solid var(--mnyalu-red);
    padding-left: 15px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--mnyalu-dark);
}

.filter-group {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid #eee;
}

.filter-group h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.filter-option {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px;
}

.filter-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.filter-option input:checked ~ .custom-radio {
    background-color: var(--mnyalu-red);
    border-color: var(--mnyalu-red);
}

.help-box {
    margin-top: 20px;
    padding: 15px;
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* --- Product Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f5f5f5;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.variant-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background: #fafafa;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.variant-select:focus {
    outline: none;
    border-color: var(--mnyalu-red);
}

.price-row {
    display: flex;
    flex-direction: column;
    margin: 12px 0 15px;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mnyalu-red);
    line-height: 1.2;
}

.per-unit {
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 15px;
    overflow: hidden;
}

.quantity-controls button {
    padding: 8px 14px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    transition: background 0.2s;
}

.quantity-controls button:hover {
    background: #e8e8e8;
}

.quantity-controls input {
    width: 45px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 8px 0;
}

/* Remove number input arrows */
.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.quantity-controls input[type=number],
.quantity-controls input[type=text] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-btn {
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e8e8e8 !important;
}

.add-btn {
    width: 100%;
    background: var(--mnyalu-red);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.add-btn:hover {
    background: #b71c1c;
    transform: scale(1.02);
}

/* --- About Section --- */
.about-container {
    padding: 80px 10%;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.vision-card, .mission-card {
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--card-shadow);
    border-top: 5px solid var(--mnyalu-red);
}

/* --- Footer & Contact Form --- */
footer {
    background: var(--mnyalu-dark);
    color: white;
    padding: 60px 10% 20px;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: #2a2a2a;
    color: white;
}

.send-btn {
    background: var(--mnyalu-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: white;
    color: var(--mnyalu-red);
}

.copyright { 
    font-size: 0.8rem; 
    border-top: 1px solid #333; 
    padding-top: 20px; 
    margin-top: 20px; 
    opacity: 0.7; 
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .shop-container { flex-direction: column; }
    .sidebar { width: 100%; }
}

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 40px 5%; }
    .hero-img { margin-top: 30px; }
    .about-grid, .footer-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
/* Dashboard Card Extensions */
.dashboard-card h3 {
    margin-bottom: 20px;
    color: var(--mnyalu-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Product Tag Styling from Screenshot */
.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.prod-tag {
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 18px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.prod-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.prod-tag small {
    color: #a0aec0;
    font-size: 0.75rem;
    margin-top: 4px;
}
.login-page-bg {
    background-color: #2c333f; /* Dark slate background from screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-standalone-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.login-logo-large {
    width: 180px; /* Larger logo as seen in centered design */
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 20px 0;
}

.login-action-btn {
    width: 100%;
    padding: 12px;
    background: #eeeeee; /* Light grey button from screenshot */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}/* --- Product Info Styling --- */
.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--mnyalu-dark);
    font-weight: 700;
}

.product-info .desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Price and Unit Labels --- */
.price-row {
    margin: 15px 0;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mnyalu-red); /* #d32f2f */
}

.per-unit {
    font-size: 0.75rem;
    color: #888;
}

/* --- Quantity and Add Button --- */
.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 15px;
}

.quantity-controls button {
    padding: 5px 12px;
    background: #f8f8f8;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.quantity-controls input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: bold;
    cursor: default;
}

/* Remove number input arrows */
.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.quantity-controls input[type=number],
.quantity-controls input[type=text] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-btn {
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e8e8e8 !important;
}

.add-btn {
    width: 100%;
    background: var(--mnyalu-red);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.add-btn:hover {
    background: #b71c1c;
}

/* --- Stock Badges --- */
.stock-badge.out {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(211, 47, 47, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
:root { --mnyalu-red: #d32f2f; --mnyalu-dark: #1a1a1a; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }

/* NAVIGATION */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 8%; background: white; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.logo-img { height: 50px; }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
.admin-btn-link { background: var(--mnyalu-dark); color: white !important; padding: 8px 15px; border-radius: 5px; text-decoration: none; }

/* LOGIN PAGE */
.login-page-bg { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: white; }
.login-standalone-container { text-align: center; width: 100%; max-width: 400px; padding: 40px; }
.login-logo { width: 180px; margin-bottom: 20px; }


/* ABOUT & CONTACT */
.about-header-banner { background: var(--mnyalu-red); color: white; padding: 40px; text-align: center; }
.contact-container { display: flex; gap: 40px; }
.contact-form-card { flex: 1; background: #f9f9f9; padding: 20px; border-radius: 10px; }
.contact-form-card input, textarea { width: 100%; margin-bottom: 10px; padding: 10px; border: 1px solid #ddd; }
.send-btn { background: var(--mnyalu-red); color: white; border: none; padding: 10px 20px; cursor: pointer; }

/* ========== NEW STYLES FOR PRODUCTS PAGE ========== */

.products-page-header {
    background: var(--mnyalu-gradient);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}

.products-page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.products-page-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container input {
    width: 100%;
    padding: 18px 50px 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}

.search-container input:focus {
    outline: none;
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    pointer-events: none;
}

.products-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-count {
    color: #666;
    font-size: 0.95rem;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-results p {
    font-size: 1.2rem;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    background: var(--mnyalu-red);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.view-all-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 40px;
}

/* ========== ABOUT PAGE STYLES ========== */

.about-hero {
    background: var(--mnyalu-gradient);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story-section {
    padding: 80px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--mnyalu-red);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--mnyalu-gradient);
}

.vm-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.vm-card h2 {
    font-size: 2rem;
    color: var(--mnyalu-dark);
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.check-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--mnyalu-red);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: var(--mnyalu-dark);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--mnyalu-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--mnyalu-gradient);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--mnyalu-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--mnyalu-red);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
}

.cta-button:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* ========== WHY CHOOSE SECTION (HOMEPAGE) ========== */

.why-choose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--mnyalu-dark);
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */

@media (max-width: 900px) {
    .story-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .products-page-header h1 {
        font-size: 2rem;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .search-container input {
        font-size: 1rem;
        padding: 15px 45px 15px 20px;
    }
}