html {
    font-size: clamp(15px, 1vw + 0.75rem, 19px);
}

body {
    font-size: clamp(1rem, 0.9vw + 0.9rem, 1.1rem);
    line-height: 1.7;
}

h1 {
    font-size: clamp(1.8rem, 2.2vw + 0.9rem, 3.2rem);
}

h2 {
    font-size: clamp(1.4rem, 1.6vw + 0.8rem, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.5rem);
}

p,
li,
label,
input,
textarea,
select,
button,
a {
    font-size: inherit;
}

img,
video,
iframe,
embed,
object,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    object-fit: cover;
}

:root {
    color-scheme: light;
    --green-900: #14432b;
    --green-700: #1f704c;
    --green-500: #44a36f;
    --green-100: #edf9f0;
    --cream: #f8f6ea;
    --text: #21362b;
    --muted: #5e7168;
    --white: #ffffff;
    --border: #dfeee4;
    --shadow: 0 18px 45px rgba(20, 67, 43, 0.12);
    --base-font: clamp(0.95rem, 0.95vw + 0.85rem, 1.05rem);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8fff8 0%, #f4fbf5 100%);
    transition: padding-top 0.25s ease;
    font-size: var(--base-font);
}

body,
button,
input,
textarea,
select,
a,
.announcement-bar,
.announcement-bar *,
.left-drawer,
.left-drawer *,
.site-header,
.site-header *,
.green-nav,
.green-nav *,
.category-nav,
.category-nav * {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 
   LEFT DRAWER
*/
.left-drawer{

    position:fixed;

    inset:0 auto 0 0;

    width:0;

    height:100dvh;

    z-index:99999;

    background:#fff;

}

.left-drawer.is-open{

    width:min(320px,88vw);

    padding:22px 18px;

    pointer-events:auto;

}

.left-drawer::-webkit-scrollbar{

    width:6px;

}

.left-drawer::-webkit-scrollbar-thumb{

    background:#d7d7d7;

    border-radius:20px;

}

.drawer-toggle {
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.96);
    color: var(--green-900);
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.drawer-toggle:hover {
    background: rgba(255, 255, 255, 1);
}

.drawer-toggle.header-toggle {
    margin-right: 14px;
}

.hamburger {
    width: 20px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green-900);
    border-radius: 999px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 6px;
}

.hamburger span:nth-child(3) {
    top: 12px;
}

.drawer-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.drawer-nav a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 16px;

    border-radius:12px;

    text-decoration:none;

    color:#1d1d1d;

    font-size:1.08rem;

    font-weight:600;

    transition:.25s;

}

.drawer-nav a:hover{

    background:#f3f7f4;

    color:#2e7d32;

}
/* Laptop */

@media (max-width:1200px){

    .left-drawer.is-open{

        width:300px;

    }

}

/* Tablet */

@media (max-width:992px){

    .left-drawer.is-open{

        width:280px;

    }

}

/* Mobile */

@media (max-width:768px){

    .left-drawer.is-open{

        width:88vw;

        max-width:330px;

    }

    .drawer-nav a{

        font-size:1rem;

        padding:13px 14px;

    }

}

.left-drawer:hover .drawer-nav,
.left-drawer.is-open .drawer-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.drawer-nav a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.drawer-text {
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.announcement-bar {
    position: relative;
    background: #38e0ff;
    color: #04141a;
    font-size: clamp(0.58rem, 0.9vw, 0.8rem);
    padding: 8px 0;
    z-index: 310;
    overflow: visible;

}

/* Announcement bar links */

.announcement-bar a {
    color: #222 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}

.announcement-bar a:hover {
    color: #000 !important;
    text-decoration: underline;
}

.locale-trigger {
    color: #222 !important;
    background: rgba(255, 255, 255, .35);
    border-radius: 20px;
    padding: 6px 12px;
    transition: .25s ease;
}

.locale-trigger:hover {
    background: rgba(255, 255, 255, .55);
}

.announcement-bar .lang-switch,
.announcement-bar .lang-switch a,
.announcement-bar .lang-switch button,
.announcement-bar .lang-switch span,
.announcement-bar select {
    color: #222 !important;
}

.announcement-content {
    position: relative;
    width: min(1200px, calc(100vw - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--green-900);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    font-weight: 700;
}

.nav-carousel-btn:hover {
    background: #f3f7f3;
}

.nav-carousel-btn.prev {
    left: 8px;
}

.nav-carousel-btn.next {
    right: 8px;
}

.header-actions {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.announcement-text {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.announcement-marquee {
    overflow: hidden;
    position: relative;
}

.announcement-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: announcement-scroll 16s linear infinite;
    will-change: transform;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
    font-size: clamp(0.75rem, 0.9vw, 0.92rem);
    color: #04141a;
    line-height: 1.3;
    gap: 0.35rem;
}

.announcement-item::first-letter {
    font-size: 0.92em;
    margin-right: 0.18rem;
}

.announcement-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.announcement-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

@keyframes announcement-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.announcement-links a {
    color: #04141a;
    font-weight: 700;
    font-size: inherit;
    text-decoration: none;
}

.announcement-content a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.announcement-content a:hover {
    opacity: 0.9;
}

.announcement-content .top-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.announcement-content .top-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: white !important;
}

.locale-dropdown {
    position: relative;
    display: inline-block;
    z-index: 99999;
    overflow: visible;
}

.locale-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    border: none;
    background: transparent;
    appearance: none;
}

.locale-caret {
    font-size: 0.8rem;
    opacity: 0.85;
}

.locale-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    display: none;
    flex-direction: column;
    padding: 8px;
    border-radius: 14px;
    background: white;
    border: 1px solid rgba(20, 67, 43, 0.12);
    box-shadow: 0 14px 32px rgba(20, 67, 43, 0.16);
    z-index: 99999;
}

.locale-dropdown.open .locale-menu,
.locale-dropdown:focus-within .locale-menu {
    display: flex;
}

.locale-menu a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
}

.locale-menu a {
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
}

.locale-menu a:hover,
.locale-menu a.active {
    background: var(--green-100);
    color: var(--green-700);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 400;
    background: #020202;
    color: white;
    border-bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.nav-row.top-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr 0.7fr;
    align-items: center;
    gap: 12px;
}

.left-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.center-col {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.right-col {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand strong {
    display: block;
    font-size: 1rem;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: white;
    font-weight: 800;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(20, 67, 43, 0.12);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    width: min(420px, 100%);
    box-shadow: inset 0 1px 2px rgba(20, 67, 43, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header .center-col .search-bar .search-input,
.site-header #tech-search-btn,
.site-header .right-col .icon-link,
.site-header .right-col .icon-link .icon-text {
    font-size: clamp(0.58rem, 0.9vw, 0.8rem) !important;
}

.site-header #tech-search-btn {
    padding: 8px 12px !important;
}

.site-header .right-col .icon-link {
    padding: 6px 8px !important;
}

.tech-search-panel {
    position: fixed;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 450;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.16);
    width: min(680px, 95%);
    max-width: 95%;
    max-height: calc(100vh - 240px);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.tech-search-panel.is-open {
    display: flex;
}

.tech-search-shell {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.tech-result {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}

.tech-search-panel input,
#tech-search-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    color: white;
    font-size: 0.98rem;
}

.tech-search-panel input::placeholder,
#tech-search-input::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

/* Standalone technical search page */
.tech-search-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 24px;
}

.tech-search-card {
    width: min(100%, 520px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 112, 76, 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(20, 67, 43, 0.12);
    padding: 28px;
}

.tech-search-card label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--green-700);
}

.tech-search-card input {
    width: 100%;
    border: 1px solid rgba(31, 112, 76, 0.18);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    margin-bottom: 16px;
}

.tech-search-results {
    display: grid;
    gap: 14px;
}

.tech-result {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(31, 112, 76, 0.12);
    text-decoration: none;
    color: inherit;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-result img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.tech-result .meta {
    display: grid;
    gap: 4px;
}

.tech-result .meta strong {
    font-size: 0.98rem;
    color: var(--green-900);
}

.tech-result .meta span {
    font-weight: 700;
    color: var(--green-700);
}

.tech-result .meta small {
    color: var(--muted);
    display: block;
}

.tech-result .indicator {
    justify-self: end;
    color: var(--green-700);
    font-size: 1.1rem;
}

.tech-result:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(20, 67, 43, 0.12);
}

.tech-result img {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.tech-result .meta {
    display: grid;
    gap: 6px;
}

.tech-result .meta strong {
    font-size: 1rem;
    color: var(--green-900);
}

.tech-result .meta span {
    font-weight: 700;
    color: var(--green-700);
}

.tech-result .meta small {
    color: var(--muted);
}

.no-results {
    padding: 18px 14px;
    border-radius: 18px;
    background: #f3f7f2;
    color: var(--green-900);
    font-weight: 600;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-weight: 600;
}

.site-nav a,
.nav-dropdown-trigger {
    color: inherit;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown-trigger.active {
    color: var(--green-700);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: auto;
}

.popup-overlay[hidden] {
    display: none;
    pointer-events: none;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 15, 0.68);
    backdrop-filter: blur(6px);
}

.popup-panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(90vh, 860px);
    overflow: auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(10, 24, 15, 0.28);
    z-index: 1;
}

.popup-frame {
    width: 100%;
    min-height: 560px;
    border: 0;
    background: white;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-900);
    font-size: 1.2rem;
    cursor: pointer;
}

.popup-loading {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
    font-weight: 600;
}

body.popup-open {
    overflow: hidden;
}

.form-shell {
    padding: 24px 0 48px;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 28px;
    max-width: 760px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group.full {
    grid-column: 1 / -1;
}

.field-group label {
    font-weight: 600;
    color: var(--green-900);
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: #fbfefd;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: none;
    border-radius: 999px;
    background-image: url("../../Images/button-large.svg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(31, 112, 76, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(31, 112, 76, 0.28);
    opacity: 0.98;
}

.form-submit:focus-visible {
    outline: 3px solid rgba(68, 163, 111, 0.55);
    outline-offset: 3px;
}

body.popup-page-body {
    background: #f7faf4;
}

body.popup-page-body .popup-panel {
    width: min(720px, 100%);
    max-height: min(94vh, 860px);
}

body.popup-page-body .container {
    width: min(700px, calc(100% - 32px));
}

body.popup-page-body .page-hero {
    padding: 24px 20px 16px;
}

body.popup-page-body .page-hero .hero-grid {
    max-width: 680px;
    margin: 0 auto;
    gap: 18px;
}

body.popup-page-body .page-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
}

body.popup-page-body .page-hero p {
    max-width: 100%;
    font-size: 0.98rem;
    opacity: 0.88;
}

body.popup-page-body .form-shell {
    padding: 24px 0 32px;
}

body.popup-page-body .form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 26px;
}

body.popup-page-body .form-grid {
    gap: 14px;
}

body.popup-page-body .form-input,
body.popup-page-body .form-textarea {
    min-height: 48px;
    font-size: 0.98rem;
}

.form-note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--green-100);
    color: var(--green-900);
    font-weight: 600;
}

@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.brand-section {
    padding: 40px 0;
}

.brand-section .section-heading h2 {
    margin-bottom: 12px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.brand-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 160px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(20, 67, 43, 0.12);
}

.brand-card img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    margin-bottom: 12px;
}

.brand-card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--green-900);
}

.brand-card a {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.16s ease, visibility 0.16s ease;
    z-index: 20001;
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
}

.nav-dropdown-menu a:hover {
    background: var(--green-100);
    color: var(--green-700);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20001 !important;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background-image: url("../../Images/button-large.svg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 14px 28px rgba(31, 112, 76, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.cart-link {
    position: relative;
}

.cart-count {
    background: #12d18a;
    color: #002217;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 800;
    margin-left: 6px;
}

.green-nav {
    background: var(--green-500);
    color: white;
    padding: 1px 0;
    position: relative;
    z-index: 100;
    overflow: visible !important;
    transition: all .25s ease;
}

body.drawer-open .green-nav {
    margin-left: 250px;
    width: calc(100% - 250px);
}

body.drawer-open .green-nav .container {
    width: 100%;
}

.category-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    overflow: visible !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 6px 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.category-nav a,
.category-nav .nav-dropdown > a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    font-size: clamp(0.58rem, 0.9vw, 0.8rem);
    padding: 2px 6px;
    border-radius: 12px;
    cursor: pointer;
}

.category-nav a:hover,
.category-nav .nav-dropdown > a:hover {
    background: rgba(255,255,255,0.12);
}

.category-nav a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 9999;
}

.category-nav .nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-nav .dropdown-caret {
    margin-left: 6px;
    font-size: 0.85rem;
    opacity: 0.96;
    transition: transform 0.18s ease;
    display: inline-block;
}

.nav-dropdown.open > a .dropdown-caret,
.nav-dropdown:hover > a .dropdown-caret {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: none;
    min-width: 220px;
    max-width: min(1000px, calc(100vw - 40px));
    max-height: calc(100vh - 120px);
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.98) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}

.nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--green-900);
    padding: 10px 14px;
    font-weight: 700;
    min-width: 0;
    align-items: flex-start;
    font-size: clamp(0.58rem, 0.9vw, 0.8rem);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
}

.nav-dropdown-menu a:hover {
    background: rgba(34, 94, 62, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20001 !important;
}

/* Mega menu layout on larger screens: show children in columns */
@media (min-width: 900px) {
    .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 18px 20px;
        min-width: 220px;
        max-width: 520px;
        white-space: normal;
    }

    .nav-dropdown-menu a {
        padding: 8px 12px;
        border-radius: 8px;
    }

    .nav-dropdown-menu a strong {
        display: block;
        font-size: clamp(0.58rem, 0.9vw, 0.8rem);
        color: var(--green-900);
    }

    .nav-dropdown-menu a small {
        display: none;
    }

    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 8px;
        background: transparent;
    }

    /* allow dropdowns to overflow horizontally-scrolling category nav on desktop */
    .category-nav {
        overflow: visible;
    }
}

/* Hide native scrollbars but keep scrolling functionality */
.category-nav::-webkit-scrollbar {
    height: 8px;
    display: none;
}

.category-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Responsive alignment: center on wide screens, left-align on small */
/* By default left-align the categories; we'll center only when they fit via JS */
.green-nav .container {
    display: flex;
    justify-content: flex-start;
    padding-left: clamp(12px, 4vw, 28px);
    padding-right: clamp(12px, 4vw, 28px);
}

.category-nav {
    justify-content: flex-start;
    padding: 6px 12px;
    gap: clamp(4px, 0.6vw, 10px);
}

/* When there is enough room, JS will add `.centered` to center the nav */
.green-nav .container.centered {
    justify-content: center;
}

@media (max-width: 899px) {
    .green-nav .container {
        display: block;
        padding-left: 12px;
        padding-right: 12px;
    }

    .category-nav {
        justify-content: flex-start;
        gap: 10px;
        padding: 6px 8px;
    }
}

/* Mobile: show compact icon-only pills */
@media (max-width: 900px) {
    .category-nav {
        gap: 6px;
        overflow: visible !important;
        white-space: normal !important;
        flex-wrap: wrap !important;
    }

    .category-nav>a,
    .category-nav>.nav-dropdown>a {
        padding: 10px;
        border-radius: 12px;
        font-size: 0;
        position: relative;
        min-width: 40px;
    }

    .category-nav>a::before,
    .category-nav>.nav-dropdown>a::before {
        content: attr(data-icon);
        display: inline-grid;
        place-items: center;
        width: clamp(28px, 6vw, 40px);
        height: clamp(28px, 6vw, 40px);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.16);
        color: white;
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        margin-right: 0;
    }

    .category-nav .nav-dropdown {
        z-index: 1200;
    }

    .category-nav .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        transform: none;
        right: auto;
        min-width: 180px;
        width: max-content;
        max-width: min(100vw - 20px, 260px);
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        overflow: visible;
        background: rgba(255,255,255,0.98) !important;
        border: 1px solid rgba(0,0,0,0.08) !important;
        box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        transition: opacity 0.16s ease, visibility 0.16s ease;
    }

    .category-nav .nav-dropdown:hover .nav-dropdown-menu,
    .category-nav .nav-dropdown.open .nav-dropdown-menu,
    .category-nav .nav-dropdown:focus-within .nav-dropdown-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .category-nav .nav-dropdown-menu a {
        width: 100%;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 14px;
        font-size: clamp(0.8rem, 1vw, 0.95rem);
    }

    .category-nav .cat-label {
        display: inline;
    }

    .category-nav>a .cat-label,
    .category-nav>.nav-dropdown>a .cat-label {
        display: none;
    }

    .category-nav .nav-dropdown-menu a .cat-label {
        display: inline;
    }

    .category-nav .nav-dropdown>a::after {
        display: none;
    }

    .category-nav .dropdown-caret {
        display: none;
    }

    .drawer-toggle.header-toggle {
        display: none;
    }
}

/* Scale hero spacing and title for uniform appearance across sizes */
.author-note {}

/* Aggressive shrink for very small screens so items can fit without horizontal scroll */
@media (max-width: 420px) {
    .category-nav {
        gap: 5px;
    }

    .category-nav a {
        padding: 6px;
        min-width: 32px;
    }

    .category-nav a::before {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
    }

    .category-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 6px 6px;
    }

    .category-nav a {
        margin: 0;
    }
}

.hero-grid {
    padding: clamp(18px, 6vw, 40px);
    gap: clamp(16px, 3.5vw, 32px);
}

.hero-grid h1,
.hero h1 {
    font-size: clamp(1.6rem, 5vw, 3rem);
    line-height: 1.05;
}

.hero-carousel {
    min-height: clamp(220px, 32vw, 420px);
}

/* Ensure images and panels scale reasonably */
.hero-slide,
.hero-carousel img {
    width: 100%;
    height: auto;
}

/* Quickview modal */
.quickview-modal[hidden] {
    display: none;
}

.quickview-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: rgba(4, 4, 6, 0.6);
}

.quickview-panel {
    width: min(820px, 96%);
    max-height: 86vh;
    overflow: auto;
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.quickview-close {
    position: absolute;
    right: 18px;
    top: 18px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}

.quickview-content {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.quickview-content img {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
}

.quickview-meta {
    flex: 1;
}

.quickview-meta h3 {
    margin-top: 0;
}

.quickview-meta .price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-700);
    margin-top: 8px;
}

.quickview-actions {
    margin-top: 14px;
    display: flex;
    gap: 12px;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(31, 112, 76, 0.22);
    opacity: 0.98;
}

.button.small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
    background-image: url("../../Images/button-small.svg");
}

.button.large {
    min-height: 56px;
    padding: 0 30px;
    font-size: 1rem;
    background-image: url("../../Images/button-large.svg");
}

.button.extra-large,
.button.extraLarge {
    min-height: 64px;
    padding: 0 34px;
    font-size: 1.03rem;
    background-image: url("../../Images/button-xlarge.svg");
}

.hero {
    padding: 54px 0 30px;
}

.title-page-logo {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(20, 67, 43, 0.16);
    margin-bottom: 18px;
}

.title-page-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    border-radius: 36px;
    padding: 40px;
    background: radial-gradient(circle at top left, rgba(72, 163, 111, 0.24), transparent 34%), linear-gradient(135deg, #173f2e 0%, #225d40 100%);
    color: white;
    box-shadow: 0 24px 60px rgba(20, 67, 43, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-grid::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-visual {
    display: grid;
    gap: 16px;
}

.hero-carousel {
    position: relative;
    min-height: 390px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 25, 16, 0.1) 0%, rgba(6, 25, 16, 0.7) 100%);
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.hero-slide-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slide-content h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.hero-slide-content p {
    margin: 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green-900);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(20, 67, 43, 0.15);
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-control:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev {
    left: 16px;
}

.carousel-control.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.1);
}

.eyebrow {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 3.3vw, 3.4rem);
    line-height: 1.05;
}

.hero p {
    max-width: 560px;
    font-size: var(--base-font);
    opacity: 0.92;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-actions .button.secondary {
    background: white;
    color: var(--green-900);
    box-shadow: none;
}

.hero-card {
    border-radius: 24px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 16px;
}

.hero-card h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

.hero-metric {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.95rem;
}

.hero-card h3 {
    margin-top: 0;
}

.hero-metric {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metric:last-child {
    border-bottom: 0;
}

.section {
    padding: 40px 0 10px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
}

.section-heading .eyebrow {
    background: var(--green-100);
    color: var(--green-700);
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: var(--base-font);
}

.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.info-card,
.product-card,
.quote-card,
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card .icon,
.product-card .icon {
    background: linear-gradient(135deg, var(--green-100), #e8fbe9);
    color: var(--green-700);
}

.info-card:hover,
.product-card:hover,
.quote-card:hover,
.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(20, 67, 43, 0.12);
}

.info-card .icon,
.product-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--green-100);
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.info-card h3,
.product-card h3 {
    margin: 0 0 8px;
}

.info-card p,
.product-card p,
.quote-card p {
    color: var(--muted);
    margin: 0;
    font-size: var(--base-font);
}

.product-card .price {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-700);
}

.tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--green-900);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    padding: 14px 0 36px;
}

.feature-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
}

.feature-list strong {
    display: block;
    margin-bottom: 2px;
}

.cta-banner {
    margin: 18px 0 40px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.cta-banner h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.cta-banner p {
    margin: 0;
    opacity: 0.92;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 0 44px;
    background: linear-gradient(180deg, #fcfffc 0%, #f6fbf7 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.site-footer h3 {
    margin-top: 0;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.footer-brand {
    margin-bottom: 10px;
}

.page-hero {
    padding: 44px 0 22px;
}

.page-hero .hero-grid {
    grid-template-columns: 1fr;
}

.page-hero.tech-search-page .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.page-card {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

@media (max-width: 900px) {

    .hero-grid,
    .trust-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-carousel {
        min-height: 320px;
    }

    .nav-row.top-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        grid-template-areas:
            "left center"
            "right right";
    }

    .left-col {
        grid-area: left;
    }

    .center-col {
        grid-area: center;
        justify-content: flex-end;
    }

    .right-col {
        grid-area: right;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .search-bar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding-bottom: 4px;
    }

    .nav-row.top-row {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "left center right";
        align-items: center;
    }

    .left-col,
    .center-col,
    .right-col {
        width: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .left-col {
        grid-area: left;
    }

    .center-col {
        grid-area: center;
        order: 0;
        flex: 1;
        min-width: 0;
    }

    .right-col {
        grid-area: right;
        gap: 8px;
    }

    .search-bar {
        max-width: none;
        width: 100%;
    }

    .icon-link {
        padding: 6px 8px;
    }

    .hero-grid {
        padding: 24px;
        gap: 20px;
    }

    .hero-carousel {
        min-height: 280px;
    }

    .announcement-content {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }

    .announcement-text {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .announcement-marquee {
        min-width: 0;
        overflow: hidden;
    }

    .announcement-track {
        display: inline-flex;
        width: auto;
        animation: announcement-scroll 16s linear infinite;
        flex-wrap: nowrap;
        gap: 2rem;
        white-space: nowrap;
    }

    .announcement-item {
        white-space: nowrap;
        line-height: 1.4;
    }

    .announcement-actions {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    body {
        font-size: 0.92rem;
    }

    .announcement-actions {
        gap: 8px;
    }

    .left-col {
        gap: 8px;
    }

    .center-col {
        gap: 8px;
    }

    .right-col {
        gap: 6px;
    }

    .header-actions {
        justify-content: stretch;
    }

    .nav-row {
        flex-wrap: nowrap;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .search-bar {
        width: 100%;
        max-width: none;
    }

    .icon-text {
        display: none;
    }

    .nav-carousel-btn {
        width: 30px;
        height: 30px;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-grid {
        padding: 24px;
    }

    .card-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        align-items: start;
    }
}

/* 
   Categories Section  */

.categories-section {

    max-width: 1300px;

    margin: 80px auto;

    padding: 70px 60px;

    background: #ffffff;

    border: 1px solid #e8efe5;

    border-radius: 28px;

    box-shadow: 0 18px 45px rgba(46, 125, 50, .08);

    background: linear-gradient(180deg, #fcfffc 0%, #f5fbf4 100%);
}

.center {

    text-align: center;

    margin-bottom: 50px;
}

.categories-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;

    margin-top: 20px;
}

.category-card {

    background: #ffffff;

    border: 1px solid #e8efe5;

    border-radius: 22px;

    padding: 35px 25px;

    text-align: center;

    text-decoration: none;

    color: #21362b;

    min-height: 260px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: all .35s ease;

    position: relative;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(46, 125, 50, .06);
}

.category-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg, #2E7D32, #5dbb63);

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;
}

.category-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(46, 125, 50, .18);

    border-color: #2E7D32;
}

.category-card:hover::before {

    transform: scaleX(1);
}


.category-icon {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: #eef8ee;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    margin-bottom: 22px;

    transition: .35s;
}

.category-card h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 14px;
}

.category-card span {

    color: #2E7D32;

    font-weight: 700;

    transition: .3s;
}

.category-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(46, 125, 50, .18);

    border-color: #2E7D32;
}

.category-card:hover span {

    letter-spacing: .6px;
}

.category-card:hover .category-icon {

    transform: scale(1.12) rotate(-10deg);

    background: #2E7D32;

    color: #fff;
}

/* 
   Categories Heading */

.categories-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;
}

.section-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #eef8ee;

    color: #2E7D32;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.categories-heading h2 {

    font-size: 42px;

    font-weight: 800;

    color: #1f3328;

    margin-bottom: 15px;
}

.categories-heading p {

    font-size: 18px;

    color: #66736a;

    line-height: 1.7;
}

/* 
   Featured Products */

.featured-products-section {

    width: min(1300px, 95%);

    margin: clamp(50px, 7vw, 90px) auto;

    padding: clamp(28px, 4vw, 50px);

    background: #fff;

    border: 1px solid #e8efe5;

    border-radius: 28px;

    box-shadow: 0 18px 45px rgba(46, 125, 50, .08);

}

.featured-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto clamp(35px, 5vw, 50px);

}

.featured-heading h2 {

    font-size: clamp(30px, 4vw, 42px);

    color: #203428;

    margin: 12px 0;

}

.featured-heading p {

    font-size: clamp(15px, 1.2vw, 17px);

    line-height: 1.7;

    color: #666;

}

.featured-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: clamp(18px, 2vw, 30px);
}

.product-card-new {

    background: #fff;
    border-radius: 22px;
    border: 1px solid #e8efe5;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    display: flex;
    flex-direction: column;

    height: 100%;
}

.product-card-new:hover {

    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(46, 125, 50, .16);

}

.product-image {

    width: 100%;
    aspect-ratio: 16/10;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef8ee;

    font-size: clamp(45px, 5vw, 60px);

    transition: .35s;

}

.product-card-new:hover .product-image {

    transform: scale(1.04);

}

.product-card-new h3 {

    padding: 18px 18px 10px;

    font-size: clamp(18px, 1.3vw, 22px);

    color: #1d3327;

    line-height: 1.35;

}

.product-card-new p {

    padding: 0 18px;

    color: #666;

    font-size: clamp(14px, 1vw, 16px);

    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.product-price {

    margin-top: auto;

    padding: 20px 18px 14px;

    font-size: clamp(20px, 2vw, 24px);

    font-weight: 700;

    color: #2E7D32;

}

.product-button {

    width: calc(100% - 36px);

    margin: 0 18px 18px;

    height: 48px;

    border: none;

    border-radius: 12px;

    background: #2E7D32;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

.product-button:hover {

    background: #205b25;

    transform: translateY(-2px);

}

/* ===============================
        Responsive
================================ */

@media (max-width:992px) {

    .featured-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

}

@media (max-width:600px) {

    .featured-products-section {

        width: 94%;
        padding: 28px 20px;

    }

    .featured-grid {

        grid-template-columns: 1fr;
        gap: 22px;

    }

    .product-card-new {

        border-radius: 18px;

    }

}

/*=================================================
            SPECIAL OFFERS SECTION
=================================================*/

.offers-section {
    padding: 90px 0;
    background: #f7faf5;
    overflow: hidden;
}

.offers-section .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/*=================================================
                    HEADER
=================================================*/

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    gap: 20px;
}

.offer-subtitle {
    display: inline-block;
    background: #e8f5e9;
    color: #2E7D32;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.offers-header h2 {
    font-size: 40px;
    color: #203428;
    margin-bottom: 10px;
}

.offers-header p {
    color: #666;
    font-size: 16px;
}

/*=================================================
                NAVIGATION
=================================================*/

.offer-navigation {
    display: flex;
    gap: 15px;
}

.offer-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    cursor: pointer;
    font-size: 20px;
    color: #2E7D32;
    transition: .3s;
}

.offer-btn:hover {
    background: #2E7D32;
    color: #fff;
    transform: translateY(-3px);
}

/*=================================================
                VIEWPORT
=================================================*/

.offers-viewport {
    overflow: hidden;
    position: relative;
}

/*=================================================
                TRACK
=================================================*/

.offers-track {
    display: flex;
    gap: 25px;
    transition: transform .5s ease;
}

/*=================================================
                CARD
=================================================*/

.offer-card {

    flex: 0 0 calc((100% - 50px)/3);

    background: #fff;

    border-radius: 22px;

    padding: 28px;

    position: relative;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .07);

    transition: .35s;

    text-align: center;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 430px;
}

.offer-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

/*=================================================
                BADGE
=================================================*/

.offer-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    background: #ff4d4d;

    color: #fff;

    padding: 6px 15px;

    border-radius: 25px;

    font-size: 12px;

    font-weight: 700;
}

/*=================================================
                IMAGE
=================================================*/

.offer-image {

    width: 110px;

    height: 110px;

    border-radius: 50%;

    background: #eef8ee;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 10px auto 20px;

    font-size: 55px;

    transition: .3s;
}

.offer-card:hover .offer-image {

    transform: scale(1.08) rotate(5deg);
}

/*=================================================
                TEXT
=================================================*/

.offer-card h3 {

    font-size: 23px;

    margin-bottom: 10px;

    color: #203428;
}

.offer-card p {

    color: #666;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 22px;
}

/*=================================================
                PRICE
=================================================*/

.offer-price {

    margin-bottom: 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}

.old-price {

    text-decoration: line-through;

    color: #999;

    font-size: 18px;
}

.new-price {

    font-size: 30px;

    color: #2E7D32;

    font-weight: 800;
}

/*=================================================
                BUTTON
=================================================*/

.offer-link {

    display: inline-block;

    padding: 13px 25px;

    background: #2E7D32;

    color: #fff;

    text-decoration: none;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;
}

.offer-link:hover {

    background: #1f5d25;
}

/*=================================================
                PAGINATION
=================================================*/

.offer-pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 35px;
}

.offer-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #c8d9c8;

    transition: .3s;

    cursor: pointer;
}

.offer-dot.active {

    width: 35px;

    border-radius: 20px;

    background: #2E7D32;
}

/*=================================================
                TABLET
=================================================*/

@media(max-width:992px) {

    .offer-card {

        flex: 0 0 calc((100% - 25px)/2);
    }

    .offers-header h2 {

        font-size: 34px;
    }

}

/*
                MOBILE */

@media(max-width:768px) {

    .offers-header {

        flex-direction: column;

        align-items: flex-start;
    }

    .offer-navigation {

        width: 100%;

        justify-content: flex-end;
    }

    .offer-card {

        flex: 0 0 100%;

        min-height: 390px;
    }

    .offers-header h2 {

        font-size: 28px;
    }

}
/* 
      Sidebar Overlay
 */
 .drawer-overlay{

    position:fixed;

    top:0;

    left:min(320px,88vw);

    right:0;

    bottom:0;

    background:rgba(0,0,0,.42);

    backdrop-filter:blur(2px);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.3s;

    z-index:9999;

}

.drawer-overlay.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}

@media(max-width:1200px){

    .drawer-overlay{

        left:300px;

    }

}

@media(max-width:992px){

    .drawer-overlay{

        left:280px;

    }

}

@media(max-width:768px){

    .drawer-overlay{

        left:88vw;

    }

}
body.drawer-open .site-header{
    z-index:1;
}

body.drawer-open .green-nav{
    z-index:1;
}