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

:root {
    --forest: #1a4d2e;
    --emerald: #2d7a4f;
    --jade: #48a36d;
    --mint: #7bc99c;
    --pearl: #faf8f3;
    --ivory: #ffffff;
    --charcoal: #1e1e1e;
    --ash: #6b6b6b;
    --bronze: #cd7f32;
    --gold: #c9a961;

    /* Semantic tokens (light defaults) */
    --bg-body: var(--pearl);
    --bg-header: var(--ivory);
    --bg-card: var(--ivory);
    --bg-section: var(--ivory);
    --bg-product-img: #f8f8f8;
    --bg-table: var(--pearl);
    --bg-categories: var(--ivory);
    --bg-mobile-menu: var(--ivory);
    --text-primary: var(--charcoal);
    --text-nav: var(--charcoal);
    --text-mobile-link: var(--charcoal);
    --border-header: rgba(29, 77, 46, 0.1);
    --border-card: rgba(45, 122, 79, 0.12);
    --border-tab: rgba(45, 122, 79, 0.2);
    --border-mobile-link: rgba(29, 77, 46, 0.1);
    --toggle-bg: rgba(45, 122, 79, 0.12);
    --toggle-border: rgba(45, 122, 79, 0.3);
    --toggle-track: #c8e6c9;
    --toggle-thumb: var(--forest);
    --devpopup-bg: var(--ivory);
}

/* ===== DARK MODE OVERRIDES ===== */
[data-theme="dark"] {
    /* Backgrounds */
    --bg-body: #111714;
    --bg-header: #0e1411;
    --bg-card: #1a231c;
    --bg-section: #161d18;
    --bg-product-img: #1e2920;
    --bg-table: #131a15;
    --bg-categories: #0e1411;
    --bg-mobile-menu: #0e1411;

    /* Text */
    --text-primary: #ddeedd;
    --text-nav: #b8d8bf;
    --text-mobile-link: #b8d8bf;

    /* Borders */
    --border-header: rgba(72, 163, 109, 0.18);
    --border-card: rgba(72, 163, 109, 0.2);
    --border-tab: rgba(72, 163, 109, 0.22);
    --border-mobile-link: rgba(72, 163, 109, 0.18);

    /* Toggle */
    --toggle-bg: rgba(72, 163, 109, 0.14);
    --toggle-border: rgba(72, 163, 109, 0.4);
    --toggle-track: #2a3f2e;
    --toggle-thumb: var(--gold);

    /* Dev popup */
    --devpopup-bg: #1a231c;

    /* Override raw colour tokens only where safe */
    --ash: #8aab91;
    --mint: #6db893;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Development Popup */
.dev-popup {
    position: fixed;
    inset: 0;
    background: rgba(26, 77, 46, 0.98);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dev-content {
    background: var(--devpopup-bg);
    max-width: 520px;
    width: 90%;
    padding: 50px 45px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-top: 4px solid var(--gold);
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dev-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: var(--charcoal);
    color: var(--ivory);
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
}

.dev-close:hover {
    background: var(--bronze);
    transform: rotate(90deg);
}

.dev-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 20px;
}

.dev-content p {
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.hidden {
    display: none;
}

/* Header - Compact & Responsive */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-header);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

header.hide-mobile {
    transform: translateY(-100%);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-text img {
    height: 90px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text-nav);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bronze);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--emerald);
}

nav a:hover::after {
    width: 100%;
}

.contact-btn {
    background: var(--forest);
    color: var(--ivory);
    padding: 9px 20px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-btn:hover {
    background: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--forest);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--toggle-bg);
    border: 1px solid var(--toggle-border);
    border-radius: 50px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: rgba(45, 122, 79, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 122, 79, 0.2);
}

.theme-toggle__track {
    width: 36px;
    height: 20px;
    background: var(--toggle-track);
    border-radius: 10px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: var(--toggle-thumb);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

[data-theme="dark"] .theme-toggle__thumb {
    transform: translateX(16px);
}

.theme-toggle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
    transition: opacity 0.3s ease;
    color: var(--forest);
}

.theme-toggle__sun {
    opacity: 1;
}

.theme-toggle__moon {
    opacity: 0.4;
}

[data-theme="dark"] .theme-toggle__sun {
    opacity: 0.4;
}

[data-theme="dark"] .theme-toggle__moon {
    opacity: 1;
}

[data-theme="dark"] .theme-toggle__icon {
    color: var(--mint);
}

/* Hide toggle label on very small screens */
@media (max-width: 380px) {
    .theme-toggle {
        padding: 6px 8px;
        gap: 5px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-mobile-menu);
    transform: translateX(-100%);
    transition: transform 0.3s ease, background 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 30px 20px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: var(--text-mobile-link);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-mobile-link);
}

.mobile-menu .contact-btn {
    width: 100%;
    margin-top: 20px;
    display: block;
    text-align: center;
}

/* Main content spacing for fixed header */
main {
    padding-top: 60px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--forest) 0%, #0d3d22 100%);
    padding: 70px 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 201, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 110%;
    max-width: 150%;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.15;
    max-width: 800px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 17px;
    color: var(--mint);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    border-left: 2px solid var(--gold);
    padding-left: 18px;
}

.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories */
.categories {
    padding: 30px 30px 40px;
    background: var(--bg-categories);
    transition: background 0.3s ease;
}

.section-header {
    max-width: 1320px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15px;
    color: var(--ash);
    font-weight: 300;
}

.category-tabs {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cat-tab {
    background: var(--bg-body);
    border: 1px solid var(--border-tab);
    color: var(--forest);
    padding: 11px 24px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-tab:hover {
    border-color: var(--emerald);
    background: var(--bg-card);
    transform: translateY(-2px);
}

.cat-tab.active {
    background: var(--forest);
    color: var(--ivory);
    border-color: var(--forest);
}

/* Products */
.products {
    padding: 40px 30px 70px;
    background: var(--bg-body);
    transition: background 0.3s ease;
}

.products-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.product-img {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-product-img);
    overflow: hidden;
    transition: background 0.3s ease;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* use 'cover' if you want it fully filled */
}

.product-package {
    width: 130px;
    height: 170px;
    background: linear-gradient(165deg, #d4c4a8 0%, #b5a082 100%);
    clip-path: polygon(12% 0%, 88% 0%, 94% 6%, 94% 94%, 88% 100%, 12% 100%, 6% 94%, 6% 6%);
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.product-card:hover .product-package {
    transform: scale(1.08);
}

.package-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 45%;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--emerald);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.package-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--emerald);
    margin-bottom: 5px;
}

.package-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.2;
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--bronze);
    color: var(--ivory);
    padding: 5px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 3;
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 5px;
}

.product-subtitle {
    color: var(--ash);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 500;
}

.product-desc {
    color: var(--charcoal);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;

    overflow: hidden;
    max-height: 3.4em;
    /* 2 lines (1.7 line-height × 2) */
    transition: max-height 0.3s ease;
}

/* When expanded */
.product-desc.expanded {
    max-height: 1000px;
}





.view-btn {
    background: none;
    border: none;
    color: var(--emerald);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 18px;
    padding: 0;
    text-align: left;
}

.view-btn:hover {
    color: var(--forest);
}

.product-table {
    background: var(--bg-table);
    padding: 18px;
    margin-bottom: 18px;
    border-left: 3px solid var(--jade);
    transition: background 0.3s ease;
}

.table-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.spec-table {
    width: 100%;
    font-size: 12px;
    border-collapse: collapse;
}

.spec-table th {
    background: var(--jade);
    color: var(--ivory);
    padding: 7px 9px;
    text-align: left;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

.spec-table td {
    padding: 7px 9px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-table tr:last-child td {
    border-bottom: none;
    font-weight: 600;
}

.product-features {
    margin-bottom: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    list-style: none;
}

.features-grid li {
    font-size: 12px;
    color: var(--text-primary);
    padding-left: 18px;
    position: relative;
}

.features-grid li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: 700;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn {
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--forest);
    color: var(--ivory);
}

.btn-primary:hover {
    background: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

.btn-secondary {
    background: var(--bg-body);
    color: var(--forest);
    border: 1px solid var(--forest);
}

.btn-secondary:hover {
    background: var(--forest);
    color: var(--ivory);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--charcoal) 0%, #0d0d0d 100%);
    padding: 70px 30px;
}

.contact-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--mint);
    font-size: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.contact-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--bronze), var(--gold));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.contact-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--mint);
    font-size: 13px;
    margin-bottom: 7px;
}

.contact-box a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--gold);
}

.hours-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    text-align: center;
}

.hours-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 25px;
}

.hours-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hour-item {
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hour-item strong {
    display: block;
    color: var(--ivory);
    font-size: 13px;
    margin-bottom: 7px;
}

.hour-item span {
    color: var(--mint);
    font-size: 12px;
}

/* Footer */
footer {
    background: var(--charcoal);
    padding: 45px 30px 25px;
}

.footer-content {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 35px;
}

.footer-brand h3 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    color: var(--ivory);
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--mint);
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 18px;
}

.social {
    display: flex;
    gap: 10px;

}

.social a {
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social a:hover {
    background: var(--emerald);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 9px;
}

.footer-section a {
    color: var(--mint);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--ivory);
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: var(--ash);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        margin-top: 30px;
    }

    .hero-right img {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Show mobile menu toggle */
    .menu-toggle {
        display: flex;
    }

    /* Hide desktop nav */
    nav {
        display: none;
    }

    /* Hero adjustments */
    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 32px;
    }

    /* Category tabs */
    .category-tabs {
        flex-direction: column;
    }

    .cat-tab {
        width: 100%;
    }

    /* Products grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hours-list {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 8px 15px;
    }

    .logo-text img {
        height: 90px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }
}

/* About Section Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f8;
}

.about-section {
    padding: 80px 20px;
    background: var(--bg-section);
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.about-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 25px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ash);
    margin-bottom: 20px;
}

.highlight {
    color: #1f7a3f;
    font-weight: 600;
}

.tagline {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #1f7a3f;
}

/* About Section - Modern Industry Standard Design */
.about-section {
    padding: 90px 30px;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-section) 100%);
    transition: background 0.3s ease;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-subtitle {
    display: inline-block;
    color: var(--emerald);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 20px;
    background: rgba(45, 122, 79, 0.1);
    border-radius: 20px;
}

.about-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 24px;
}

.about-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--charcoal);
}

.about-lead strong {
    color: var(--emerald);
    font-weight: 600;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--ash);
    margin-bottom: 24px;
}



.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-left: 4px solid var(--emerald);
    padding: 32px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-left-color: var(--bronze);
}

.value-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ash);
}

@media (max-width: 968px) {
    .about-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =====================================================
   DARK MODE — Targeted Component Overrides
   (These take care of places that use --forest /
   --charcoal / --ivory as raw colours and would
   otherwise look broken in dark mode)
   ===================================================== */

/* --- Header (already uses semantic tokens) --- */
[data-theme="dark"] header {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* --- Dev popup text --- */
[data-theme="dark"] .dev-content h2 {
    color: var(--mint);
}

[data-theme="dark"] .dev-content p {
    color: #8aab91;
}

[data-theme="dark"] .dev-close {
    background: #2a3f2e;
    color: var(--mint);
}

/* --- Section headings (use --forest which stays dark green in both modes) --- */
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .about-header h2,
[data-theme="dark"] .about-section h2,
[data-theme="dark"] .value-card h3,
[data-theme="dark"] .product-title {
    color: var(--mint);
}

/* --- About section subtitle chip --- */
[data-theme="dark"] .about-subtitle {
    background: rgba(72, 163, 109, 0.15);
    color: var(--mint);
}

[data-theme="dark"] .about-lead {
    color: #b8d8bf;
}

[data-theme="dark"] .about-lead strong {
    color: var(--jade);
}

/* --- Product cards --- */
[data-theme="dark"] .product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .product-subtitle {
    color: #6db893;
}

[data-theme="dark"] .product-desc {
    color: #b8d8bf;
}

[data-theme="dark"] .table-title {
    color: var(--jade);
}

[data-theme="dark"] .spec-table td {
    color: #b8d8bf;
    border-bottom-color: rgba(72, 163, 109, 0.12);
}

[data-theme="dark"] .spec-table tr:last-child td {
    color: var(--mint);
}

/* --- Category tabs --- */
[data-theme="dark"] .cat-tab {
    color: var(--mint);
}

[data-theme="dark"] .cat-tab.active {
    background: var(--forest);
    color: var(--ivory);
    border-color: var(--emerald);
}

[data-theme="dark"] .section-header p {
    color: #6db893;
}

/* --- View Description button --- */
[data-theme="dark"] .view-btn {
    color: var(--jade);
}

[data-theme="dark"] .view-btn:hover {
    color: var(--mint);
}

/* --- Feature list checkmarks --- */
[data-theme="dark"] .features-grid li::before {
    color: var(--gold);
}

/* --- Buttons on product cards --- */
[data-theme="dark"] .btn-secondary {
    background: transparent;
    border-color: var(--emerald);
    color: var(--mint);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--emerald);
    color: #ffffff;
}

/* --- Mobile menu --- */
[data-theme="dark"] .mobile-menu a:hover {
    color: var(--jade);
}

/* --- Footer (already dark, just tweak it slightly) --- */
[data-theme="dark"] footer {
    background: #080e09;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(72, 163, 109, 0.12);
    color: #5a7a61;
}

/* --- Scrollbar (optional nice touch) --- */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 8px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #0e1411;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #2d4a35;
    border-radius: 4px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: var(--emerald);
}

/* ===================================================
   PURCHASE ON FLIPKART SECTION
   =================================================== */

/* Nav highlight for Flipkart link */
nav a.nav-flipkart-link,
.mobile-menu a.nav-flipkart-link {
    color: #F57C00;
    font-weight: 600;
}

nav a.nav-flipkart-link:hover {
    color: #e65100;
}

nav a.nav-flipkart-link::after {
    background: #F57C00;
}

/* Section wrapper */
.purchase-section {
    padding: 70px 30px;
    background: linear-gradient(160deg, #fff8f0 0%, #fffde7 50%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.purchase-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 162, 32, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.purchase-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Banner header */
.purchase-banner {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.flipkart-badge {
    display: inline-flex;
    align-items: center;
    background: #fff3e0;
    border: 1.5px solid #F8A220;
    color: #e65100;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(248, 162, 32, 0.18);
}

.purchase-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 14px;
    line-height: 1.2;
}

.purchase-banner p {
    font-size: 16px;
    color: var(--ash);
    line-height: 1.75;
    font-weight: 400;
}

.purchase-banner p strong {
    color: #e65100;
}

/* Product grid */
.purchase-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Individual purchase card */
.purchase-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(248, 162, 32, 0.2);
    border-top: 3px solid #F8A220;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.purchase-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(248, 162, 32, 0.2);
    border-color: #F8A220;
}

.purchase-card-img {
    width: 100%;
    height: 180px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.purchase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.purchase-card:hover .purchase-card-img img {
    transform: scale(1.05);
}

.purchase-card-info {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 6px;
}

.purchase-card-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.3;
}

.purchase-card-info p {
    font-size: 12px;
    color: var(--ash);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    flex-grow: 1;
}

/* Flipkart buy button */
.flipkart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8A220 0%, #F57C00 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(245, 124, 0, 0.35);
}

.flipkart-btn:hover {
    background: linear-gradient(135deg, #F57C00 0%, #e65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.45);
    color: #ffffff;
}

/* Disclaimer note */
.purchase-note {
    max-width: 1320px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 13px;
    color: var(--ash);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ===== DARK MODE for purchase section ===== */
[data-theme="dark"] .purchase-section {
    background: linear-gradient(160deg, #1a1400 0%, #1a1700 50%, #0e1a10 100%);
}

[data-theme="dark"] .purchase-banner h2 {
    color: #b8d8bf;
}

[data-theme="dark"] .purchase-banner p {
    color: #8aab91;
}

[data-theme="dark"] .flipkart-badge {
    background: #2a1a00;
    border-color: #c87c00;
    color: #F8A220;
}

[data-theme="dark"] .purchase-card {
    background: #1a1600;
    border-color: rgba(248, 162, 32, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .purchase-card:hover {
    box-shadow: 0 18px 40px rgba(248, 162, 32, 0.15);
}

[data-theme="dark"] .purchase-card-img {
    background: #141100;
}

[data-theme="dark"] .purchase-card-info h3 {
    color: #b8d8bf;
}

[data-theme="dark"] .purchase-card-info p {
    color: #6a8a71;
}

[data-theme="dark"] nav a.nav-flipkart-link {
    color: #F8A220;
}

[data-theme="dark"] nav a.nav-flipkart-link:hover {
    color: #ffb74d;
}

[data-theme="dark"] .mobile-menu a.nav-flipkart-link {
    color: #F8A220;
}

/* ===== RESPONSIVE for purchase section ===== */
@media (max-width: 1100px) {
    .purchase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .purchase-section {
        padding: 50px 18px;
    }

    .purchase-banner h2 {
        font-size: 28px;
    }

    .purchase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .purchase-grid {
        grid-template-columns: 1fr;
    }
}