:root {
    /* =========================
       NEW COLOR PALETTE
       ========================= */
    --primary-color: #81C784;       /* Brand accents, icons, decorations */
    --btn-bg: #123022;              /* "Highlight Text" & Button Backgrounds */
    --btn-text: #FFFFFF;            /* Text on buttons */
    --bg-body: #ECF6E9;             /* Whole website background */
    
    /* Semantic Variables based on Palette */
    --primary-hover: #66bb6a;       /* Slightly lighter/darker green for hover */
    --text-dark: #123022;           /* Using the Highlight color for main text */
    --text-muted: #5e7d75;          /* Muted version of the dark green */
    --white: #ffffff;
    
    /* Accents (Kept compatible) */
    --accent-color: #DAA520;
    --brand-orange: #EF6C00;
    
    /* Borders & UI */
    --border-light: #dbece0;        /* Adjusted to match green tint */
    --border-radius-pill: 50px;
    --card-radius: 16px;
    --shadow-soft: 0 4px 20px rgba(18, 48, 34, 0.05); /* Shadow using dark green tint */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body); /* #ECF6E9 */
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* ============================
   1. LAYOUT UTILITIES
   ============================ */
.container,
.header-container,
.slide-inner,
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   3. HERO SLIDER
   ============================ */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-body); /* #ECF6E9 */
    margin-bottom: 60px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1300px;
}

.slide-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slide-category {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.slide-title {
    font-size: 3.5rem;
    color: var(--text-dark); /* Highlight Text Color */
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.slide-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.slide-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--btn-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(18, 48, 34, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--btn-bg);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(18, 48, 34, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--btn-bg);
    transform: scale(1.4);
}

@media (max-width: 900px) {
    .hero-slider-container {
        height: auto;
        min-height: 650px;
    }

    .slide-inner {
        flex-direction: column-reverse;
    }

    .slide-image {
        width: 100%;
        height: 300px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .slide-content {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slider-arrow {
        display: none;
    }
}

/* ============================
   4. PREMIUM PRODUCT CARDS
   ============================ */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.section-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

.btn-view-all {
    color: var(--btn-bg);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(129, 199, 132, 0.2); /* Low opacity primary */
}

.btn-view-all:hover {
    background: var(--btn-bg);
    color: var(--white);
}

/* Card Styling */
.card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 10px rgba(18, 48, 34, 0.03);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(18, 48, 34, 0.1);
    border-color: var(--primary-color);
}

.card-image-wrapper {
    height: 220px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.card-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.medicine-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.medicine-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.medicine-price {
    font-size: 1.25rem;
    color: var(--btn-bg); /* Dark price for better readability */
    font-weight: 800;
}

.btn-card-action {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg-body);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.card:hover .btn-card-action {
    background-color: var(--btn-bg);
    color: var(--white);
}

/* Badges */
.badge-pos {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-rx { background-color: #fff8e1; color: #ff8f00; }
.badge-otc { background-color: #e8f5e9; color: #2e7d32; }

/* Horizontal Scroll */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 10px 5px 30px 5px;
    margin-bottom: 40px;
    scrollbar-width: thin;
}

.horizontal-scroll::-webkit-scrollbar { height: 6px; }
.horizontal-scroll::-webkit-scrollbar-track { background: transparent; }
.horizontal-scroll::-webkit-scrollbar-thumb { background: #d0e0d5; border-radius: 10px; }
.horizontal-scroll .card { flex: 0 0 auto; width: 260px; }

/* Grid Fallback */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 60px;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}
.alert-success { background-color: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.alert-danger { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* ============================
   5. PRODUCT LISTING PAGE
   ============================ */
.listing-page-wrapper {
    background-color: var(--bg-body);
    min-height: 100vh;
}

.listing-header-bg {
    background: var(--white);
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.listing-layout {
    position: relative;
    margin-bottom: 80px;
}

/* Filter Trigger */
.filter-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-bg);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.filter-trigger-btn:hover { background: var(--primary-color); color: var(--btn-bg); transform: translateY(-2px); }
.filter-trigger-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Off-Canvas Sidebar */
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 48, 34, 0.3); z-index: 9998;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar {
    position: fixed; top: 0; left: -320px;
    width: 300px; height: 100vh;
    background: var(--white); z-index: 9999;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; padding: 25px;
}
.sidebar.active { left: 0; }

.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border-light);
}
.sidebar-title { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); }
.btn-close-sidebar {
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted);
    line-height: 1; padding: 0;
}

.sidebar-search { position: relative; margin-bottom: 30px; }
.sidebar-search input {
    width: 100%; padding: 12px 15px; padding-right: 40px;
    background: var(--bg-body); border: 1px solid var(--border-light); border-radius: 8px;
    font-size: 0.95rem; outline: none; transition: all 0.2s;
}
.sidebar-search input:focus { background: var(--white); border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.2); }
.sidebar-search-icon {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; fill: #999; pointer-events: none;
}

.filter-group { margin-bottom: 30px; }
.filter-label { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; display: block; }

/* Custom Checkbox */
.custom-checkbox {
    display: flex; align-items: center;
    margin-bottom: 10px; cursor: pointer; font-size: 0.95rem; color: var(--text-muted);
    transition: 0.2s;
}
.custom-checkbox:hover { color: var(--text-dark); }
.custom-checkbox input { display: none; }
.checkmark {
    width: 20px; height: 20px;
    border: 2px solid #ddd; border-radius: 4px;
    margin-right: 12px; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; background: var(--white);
}
.custom-checkbox input:checked + .checkmark {
    background: var(--primary-color); border-color: var(--primary-color);
}
.checkmark::after {
    content: ''; width: 5px; height: 10px;
    border: solid var(--btn-bg); border-width: 0 2px 2px 0; /* Dark check mark */
    transform: rotate(45deg); display: none; margin-bottom: 3px;
}
.custom-checkbox input:checked + .checkmark::after { display: block; }

/* Categories & Ranges */
.cat-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px; margin-bottom: 5px; border-radius: 6px;
    color: var(--text-muted); font-size: 0.95rem; transition: 0.2s;
}
.cat-item:hover { background: var(--bg-body); color: var(--text-dark); }
.cat-item.active { background: var(--primary-color); color: var(--btn-bg); font-weight: 700; }
.cat-count { font-size: 0.75rem; opacity: 0.7; }

.range-slider-wrapper { position: relative; width: 100%; margin-bottom: 20px; }
.slider-track-container {
    position: relative; width: 100%; height: 6px;
    background-color: #ddd; border-radius: 5px;
    margin-top: 30px; margin-bottom: 20px;
}
.slider-track {
    position: absolute; height: 100%;
    background-color: var(--primary-color); border-radius: 5px; z-index: 1;
}
.range-input {
    position: absolute; top: -6px; left: 0; width: 100%; height: 5px;
    -webkit-appearance: none; background: transparent;
    pointer-events: none; z-index: 2;
}
.range-input::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px;
    background: var(--white); border: 2px solid var(--primary-color);
    border-radius: 50%; cursor: pointer; pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); margin-top: -8px;
}
.range-input::-moz-range-thumb {
    width: 20px; height: 20px;
    background: var(--white); border: 2px solid var(--primary-color);
    border-radius: 50%; cursor: pointer; pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price-input-container {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.price-field { display: flex; flex-direction: column; width: 45%; }
.price-field span { font-size: 0.75rem; color: #888; margin-bottom: 4px; }
.price-field input {
    width: 100%; padding: 8px; border: 1px solid #ddd;
    border-radius: 6px; font-size: 0.9rem; text-align: center;
    color: var(--text-dark); font-weight: 600;
}
.btn-price-apply {
    width: 100%; background: var(--btn-bg); color: var(--white);
    border: none; padding: 10px; border-radius: 6px;
    font-weight: 600; cursor: pointer; margin-top: 15px;
}
.btn-price-apply:hover { background: var(--primary-color); color: var(--btn-bg); }

/* Listing Grid */
.results-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding: 0 10px;
}
.results-count { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.results-count span { color: var(--text-muted); font-weight: 400; }
.sort-dropdown {
    padding: 8px 15px; border: 1px solid #ddd; border-radius: 50px;
    background: var(--white); color: #555; outline: none; cursor: pointer; font-size: 0.9rem;
}

.product-grid-view {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
}

/* ============================
   6. SINGLE PRODUCT PAGE STYLES
   ============================ */
.product-detail-container {
    padding: 60px 0;
    background-color: var(--white);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.product-gallery { position: sticky; top: 100px; }

.main-image-box {
    width: 100%; height: 500px;
    background-color: var(--bg-body);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border: 1px solid var(--border-light);
    margin-bottom: 20px;
}
.main-image-box img {
    max-width: 80%; max-height: 80%;
    object-fit: contain; transition: transform 0.5s ease;
}
.main-image-box:hover img { transform: scale(1.1); }

.product-info { padding: 10px; }
.p-breadcrumb { font-size: 0.9rem; color: #888; margin-bottom: 15px; }
.p-title {
    font-size: 2.5rem; font-weight: 800; color: var(--text-dark);
    margin-bottom: 10px; line-height: 1.2;
}
.p-meta {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 20px; font-size: 0.9rem; color: var(--text-muted);
}
.p-price {
    font-size: 2rem; color: var(--text-dark);
    font-weight: 800; margin-bottom: 25px;
}
.p-description {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 30px;
}

.action-row {
    display: flex; gap: 20px; align-items: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.qty-selector {
    display: flex; align-items: center;
    border: 2px solid var(--border-light);
    border-radius: 50px; overflow: hidden; width: 140px; height: 50px;
}
.qty-btn {
    width: 40px; height: 100%; background: var(--bg-body);
    border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-dark); transition: 0.2s;
}
.qty-btn:hover { background: var(--primary-color); }
.qty-input {
    flex: 1; text-align: center; border: none; font-size: 1.1rem;
    font-weight: bold; outline: none; color: var(--text-dark);
}

.btn-add-cart {
    flex: 1; background-color: var(--btn-bg); color: var(--white);
    height: 50px; border-radius: 50px; border: none;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; min-width: 200px;
}
.btn-add-cart:hover {
    background-color: var(--primary-color);
    color: var(--btn-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(18, 48, 34, 0.2);
}

.p-tabs { border-top: 1px solid var(--border-light); margin-top: 20px; }
.tab-header {
    display: flex; gap: 30px; border-bottom: 2px solid transparent; margin-bottom: 20px;
}
.tab-link {
    padding: 15px 0; font-weight: 600; color: var(--text-muted);
    cursor: pointer; position: relative; font-size: 1.1rem;
}
.tab-link.active { color: var(--btn-bg); }
.tab-link.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 2px; background-color: var(--primary-color);
}
.tab-content { display: none; color: var(--text-muted); line-height: 1.7; animation: fadeIn 0.3s; }
.tab-content.active { display: block; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.feature-icon { color: var(--primary-color); font-size: 1.2rem; }

@media (max-width: 900px) {
    .product-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .main-image-box { height: 350px; }
    .p-title { font-size: 1.8rem; }
    .action-row { flex-direction: column; align-items: stretch; }
    .qty-selector { width: 100%; justify-content: center; }
}

/* ============================
   7. WHY US & CONTACT
   ============================ */
.why-hero {
    background: linear-gradient(rgba(18, 48, 34, 0.9), rgba(18, 48, 34, 0.8)), url('../images/leaf-pattern.png');
    background-size: cover; color: var(--white);
    padding: 100px 20px; text-align: center;
    border-radius: 0 0 50% 50% / 20px;
}
.why-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.why-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

.values-section { padding: 80px 0; background: var(--bg-body); }
.value-card {
    text-align: center; padding: 40px 20px;
    background: var(--white);
    border: 1px solid var(--border-light); border-radius: 16px; transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(18, 48, 34, 0.05); border-color: var(--primary-color);
}
.value-icon {
    width: 80px; height: 80px; background: var(--bg-body);
    color: var(--primary-color); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 25px;
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark); }
.value-card p { color: var(--text-muted); line-height: 1.6; }

.story-box {
    background: var(--white); padding: 60px;
    border-radius: 20px; display: flex; align-items: center;
    gap: 50px; margin-bottom: 80px; box-shadow: var(--shadow-soft);
}
.story-content h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 20px; }
.story-content p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

/* Contact Page */
.contact-split-wrapper {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 0; background: var(--white); border-radius: 20px;
    box-shadow: 0 10px 40px rgba(18, 48, 34, 0.05); overflow: hidden;
    margin-top: -50px; position: relative; z-index: 10;
    border: 1px solid var(--border-light);
}
.contact-info-side {
    background: var(--btn-bg); color: var(--white); /* Button Color for panel */
    padding: 60px; display: flex; flex-direction: column;
    justify-content: space-between; position: relative; overflow: hidden;
}
.contact-info-side::after {
    content: ""; position: absolute; bottom: -50px; right: -50px;
    width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.contact-header h2 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 800; }
.contact-header p { opacity: 0.9; font-size: 1rem; line-height: 1.6; }

.info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-item-icon {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.info-item-icon svg { width: 20px; height: 20px; fill: var(--white); }
.info-item-text h4 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; }
.info-item-text p { opacity: 0.85; font-size: 0.9rem; line-height: 1.5; }
.info-item-text a { color: var(--primary-color); text-decoration: underline; }

.contact-form-side { padding: 60px; background: var(--white); }
.c-input-group { margin-bottom: 25px; }
.c-input-group label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; font-size: 0.9rem; }
.c-input {
    width: 100%; padding: 12px 15px; border: 2px solid var(--border-light);
    border-radius: 8px; font-size: 1rem; transition: 0.2s; outline: none;
}
.c-input:focus { border-color: var(--primary-color); }
.c-textarea { height: 120px; resize: none; }
.btn-send-msg {
    background: var(--btn-bg); color: var(--white); width: 100%; padding: 15px;
    border-radius: 8px; border: none; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: 0.2s;
}
.btn-send-msg:hover { background: var(--primary-color); color: var(--btn-bg); transform: translateY(-2px); }

.full-width-map {
    width: 100%; height: 400px; margin-top: 50px;
    filter: grayscale(100%); transition: filter 0.3s;
}
.full-width-map:hover { filter: grayscale(0%); }

/* Reviews */
.reviews-container { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-light); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.review-title { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); }
.review-summary {
    display: flex; align-items: center; gap: 10px; font-size: 0.9rem;
    color: var(--text-muted); background: var(--white); padding: 8px 15px; border-radius: 50px;
    border: 1px solid var(--border-light);
}
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.review-card {
    background: var(--white); border: 1px solid var(--border-light);
    padding: 25px; border-radius: 12px; transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(18, 48, 34, 0.05); }
.r-user { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.r-avatar {
    width: 40px; height: 40px; background: linear-gradient(135deg, #e0e0e0 0%, #cfcfcf 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #555; font-size: 0.9rem;
}
.r-meta h4 { font-size: 0.95rem; font-weight: 700; margin: 0; color: var(--text-dark); }
.r-meta span { font-size: 0.8rem; color: #999; }
.r-stars { color: #f39c12; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 1px; }
.r-comment { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }


/* ============================
   9. MEDIA QUERIES (Consolidated)
   ============================ */

/* Tablet / Small Laptop */
@media (max-width: 1024px) {
    .product-grid-view { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile / Tablet Portrait */
@media (max-width: 900px) {
    /* Header */
    .header-container { flex-direction: column; gap: 15px; padding-bottom: 15px; }
    .search-wrapper { width: 100%; margin: 0; }
    .nav-menu { width: 100%; justify-content: center; font-size: 0.9rem; gap: 15px; margin: 0; }
    
    /* Hero */
    .hero-slider-container { height: auto; min-height: 650px; }
    .slide-inner { flex-direction: column-reverse; }
    .slide-image { width: 100%; height: 300px; mask-image: none; -webkit-mask-image: none; }
    .slide-content { padding: 40px 20px; align-items: center; text-align: center; }
    .slide-title { font-size: 2.2rem; }
    .slider-arrow { display: none; }
    
    /* Product Layout */
    .product-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .main-image-box { height: 350px; }
    .p-title { font-size: 1.8rem; }
    .action-row { flex-direction: column; align-items: stretch; }
    .qty-selector { width: 100%; justify-content: center; }
    
    /* Contact & Why Us */
    .contact-split-wrapper { grid-template-columns: 1fr; margin-top: 0; }
    .contact-info-side, .contact-form-side { padding: 40px 20px; }
    .story-box { flex-direction: column; padding: 30px; }
    
    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .trust-icons { justify-content: center; }
}

/* Small Mobile */
@media (max-width: 768px) {
    .product-grid-view { grid-template-columns: 1fr 1fr; gap: 15px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}