:root {
    --primary-red: #83B829;
    --brand-aqua: #83B829;
    --brand-aqua-dark: #65951f;
    --brand-aqua-soft: #f0f8e8;
    --dark-teal: #3E3E3E;
    --dark-bg: #242424;
    --light-gray: #f6f8f3;
    --border-color: #e2eadb;
    --text-dark: #111111;
    --text-muted: #6f7777;
    --white: #ffffff;
    --container-width: 1320px;
    --font-main: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 18px 42px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color 0.25s, background 0.25s, transform 0.25s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 18px; }

.header {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: min(95%, var(--container-width));
    max-width: var(--container-width);
    background: var(--white);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(6,28,29,0.12);
    transition: top 0.22s ease, box-shadow 0.22s ease, border-radius 0.22s ease;
    will-change: top, box-shadow;
}
.header.sticky {
    top: 12px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(6,28,29,0.16);
}
.logo {
    background: var(--white);
    color: var(--dark-bg);
    min-width: 238px;
    min-height: 78px;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo img { width: 210px; max-height: 54px; object-fit: contain; display: block; }
.logo-main { font-size: 24px; font-weight: 800; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.logo-main::before { content: '\f100'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.logo-main::after { content: '\f101'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.logo-sub { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.main-nav { flex: 1; padding-left: 34px; }
.main-nav ul { display: flex; gap: 18px; align-items: center; }
.main-nav li { position: relative; }
.main-nav a { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; color: #2f3737; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-red); }
.nav-has-dropdown > a { display: inline-flex; align-items: center; gap: 7px; }
.nav-has-dropdown > a i { font-size: 10px; transition: transform 0.22s ease; }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 28px);
    left: -24px;
    width: 560px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1001;
}
.accessory-nav-dropdown {
    left: auto;
    right: -180px;
    width: min(860px, calc(100vw - 48px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-has-dropdown:hover > a i,
.nav-has-dropdown:focus-within > a i { transform: rotate(180deg); }
.nav-dropdown a {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    padding: 14px;
    text-transform: none;
    border: 1px solid transparent;
    background: #fff;
}
.nav-dropdown a:hover { border-color: rgba(32,199,178,0.28); background: var(--brand-aqua-soft); color: var(--dark-teal); }
.nav-dropdown i {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(32,199,178,0.12);
    color: var(--primary-red);
    font-size: 16px;
}
.nav-dropdown span { color: var(--dark-teal); font-size: 14px; font-weight: 800; }
.nav-dropdown small { color: var(--text-muted); font-family: var(--font-main); font-size: 12px; font-weight: 500; }
.header-actions { display: flex; align-items: center; gap: 10px; padding-right: 22px; }
.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--dark-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.icon-btn:hover { color: var(--brand-aqua-dark); background: var(--brand-aqua-soft); }
.badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--primary-red);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.badge.bump { animation: bump 0.25s ease; }
.menu-toggle { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 28px;
    border: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 4px;
    transition: 0.25s;
}
.btn-primary { background: var(--primary-red); color: var(--dark-bg); }
.btn-primary:hover { background: var(--brand-aqua-dark); color: #fff; transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--dark-teal); }
.btn-light:hover { background: #edf2f2; }
.btn-outline { background: #fff; color: var(--dark-teal); border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--primary-red); color: var(--primary-red); }

.search-panel {
    position: fixed;
    top: 106px;
    left: 50%;
    width: min(95%, var(--container-width));
    max-width: var(--container-width);
    transform: translate(-50%, -12px);
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, top 0.2s ease;
}
.header.sticky + .search-panel { top: 86px; }
.search-panel.open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mobile-nav-search { display: none; }
.search-box { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; border-bottom: 1px solid var(--border-color); }
.search-box i { color: var(--primary-red); justify-self: center; }
.search-box input { height: 58px; border: 0; outline: 0; font-size: 18px; color: var(--dark-teal); }
.search-box button { border: 0; background: transparent; height: 58px; color: #667070; }
.search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; max-height: 430px; overflow: auto; }
.search-result { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; padding: 14px 18px; border-bottom: 1px solid #eef1f1; }
.search-result:nth-child(odd) { border-right: 1px solid #eef1f1; }
.search-result:hover { background: var(--brand-aqua-soft); }
.search-result img { width: 70px; height: 70px; object-fit: contain; background: #f8fafa; }
.search-result strong { display: block; color: var(--dark-teal); }
.search-result small { color: var(--text-muted); }
.search-result b { color: var(--primary-red); }
.search-empty { padding: 22px; color: var(--text-muted); }

.hero {
    min-height: 860px;
    background: linear-gradient(90deg, rgba(28,28,28,0.94), rgba(28,28,28,0.58), rgba(28,28,28,0.16)), url('images/generated-led/hero-lighting.jpg') center/cover;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero-content { width: min(680px, 100%); margin-left: max(18px, calc((100vw - var(--container-width)) / 2)); padding: 130px 18px 70px; animation: rise 0.7s ease both; }
.hero-title { font-size: 86px; font-weight: 900; line-height: 0.95; letter-spacing: 0; margin: 18px 0 22px; }
.hero-subtitle, .eyebrow { display: inline-block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-red); }
.hero-content p { max-width: 560px; color: rgba(255,255,255,0.86); line-height: 1.7; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-wrap { margin-top: -92px; position: relative; z-index: 2; }
.trust-bar { display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: var(--shadow-md); }
.trust-item { padding: 42px 34px; color: #fff; }
.trust-item i { font-size: 34px; margin-bottom: 18px; }
.trust-item h3 { font-size: 18px; margin-bottom: 8px; }
.trust-item p { color: rgba(255,255,255,0.78); line-height: 1.6; font-size: 14px; }
.trust-item.teal { background: var(--dark-teal); }
.trust-item.red { background: var(--primary-red); }
.trust-item.gray { background: #eef1f1; color: #263030; }
.trust-item.gray p { color: #667070; }

.section-block { padding: 92px 18px; }
.section-block.compact { padding-top: 20px; }
.section-title { text-align: center; margin-bottom: 42px; }
.section-title h2 { font-size: 34px; color: var(--dark-teal); margin-bottom: 8px; }
.section-title p { color: var(--text-muted); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; }
.product-card { background: #fff; border: 1px solid var(--border-color); transition: 0.25s; overflow: hidden; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-img-wrapper { height: 290px; position: relative; border-bottom: 1px solid #f2f4f4; background: #fff; }
.product-img-wrapper a { display: block; width: 100%; height: 100%; position: relative; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; padding: 24px; transition: 0.35s ease; }
.img-hover { opacity: 0; }
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.flag {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    background: var(--dark-teal);
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.flag.sale { left: auto; right: 14px; background: var(--primary-red); }
.product-info-box { padding: 20px; }
.meta-row { display: flex; justify-content: space-between; gap: 10px; color: #8a9494; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.product-card h3 { font-size: 17px; line-height: 1.35; min-height: 46px; color: var(--dark-teal); margin-bottom: 14px; }
.product-card h3 a:hover { color: var(--primary-red); }
.product-price { display: flex; gap: 10px; align-items: baseline; margin-bottom: 15px; }
.product-price span, .pdp-price span { font-size: 21px; font-weight: 900; color: var(--dark-teal); }
.product-price del, .pdp-price del { color: #9aa2a2; font-size: 14px; }
.btn-cart { width: 100%; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.cat-item { position: relative; min-height: 240px; overflow: hidden; background: #eef1f1; color: #fff; }
.cat-item img { width: 112%; max-width: none; height: 100%; object-fit: cover; object-position: center; position: absolute; inset: 0 auto 0 -8%; transition: transform 0.45s; }
.cat-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72)); }
.cat-item:hover img { transform: scale(1.08); }
.cat-title { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; font-weight: 800; line-height: 1.22; }

.ride-banner {
    min-height: 100svh;
    background: var(--dark-bg);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    --ride-progress: 0;
}
.ride-banner::before {
    content: '';
    position: absolute;
    inset: -10svh 0;
    background: url('images/generated-led/category-unutarnja.jpg') center/cover no-repeat;
    transform: translateY(calc(var(--ride-progress) * -9svh));
    transform-origin: top center;
    will-change: transform;
}
.ride-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,28,29,0.82), rgba(6,28,29,0.28));
}
.ride-banner .container {
    width: 100%;
    position: relative;
    z-index: 2;
    transform: translateY(calc(var(--ride-progress) * -28px));
    will-change: transform;
}
.ride-banner h2 { font-size: 72px; line-height: 1.02; margin: 18px 0 30px; }
.ride-banner h2,
.ride-banner .hero-subtitle { text-shadow: 0 3px 22px rgba(0,0,0,0.55); }
.news-section { background: #f8fafa; padding: 92px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--border-color); transition: 0.25s; display: flex; flex-direction: column; min-height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card img { height: 240px; width: 100%; object-fit: cover; }
.blog-card div { padding: 26px; display: flex; flex: 1; flex-direction: column; }
.blog-card span { color: var(--primary-red); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.blog-card h3 { margin: 12px 0; color: var(--dark-teal); }
.blog-card p { color: var(--text-muted); line-height: 1.7; font-size: 14px; margin-bottom: 18px; }
.blog-card a { color: var(--dark-teal); font-weight: 800; font-size: 13px; text-transform: uppercase; margin-top: auto; }
.blog-card a:hover { color: var(--primary-red); }
.section-cta { display: flex; justify-content: center; margin-top: 34px; }
.home-faq-section { padding: 92px 0; background: #fff; }
.home-faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.home-faq-copy { position: sticky; top: 120px; }
.home-faq-copy h2 {
    color: var(--dark-teal);
    font-size: 46px;
    line-height: 1.08;
    margin: 14px 0 18px;
}
.home-faq-copy p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 430px;
}
.faq-list {
    display: grid;
    gap: 12px;
}
.faq-list details {
    background: #f8fafa;
    border: 1px solid var(--border-color);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.faq-list details[open] {
    background: #fff;
    border-color: rgba(32,199,178,0.36);
    box-shadow: var(--shadow-sm);
}
.faq-list summary {
    list-style: none;
    cursor: pointer;
    color: var(--dark-teal);
    font-weight: 900;
    padding: 22px 58px 22px 24px;
    position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    font-size: 24px;
    line-height: 1;
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list p {
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 24px 24px;
}
.newsletter-section { padding: 0 0 96px; background: #fff; }
.newsletter-panel {
    background: var(--dark-teal);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 54px;
    align-items: center;
    padding: 58px;
    position: relative;
    overflow: hidden;
}
.newsletter-panel::after {
    content: '';
    position: absolute;
    right: 38px;
    bottom: -40px;
    color: rgba(255,255,255,0.06);
    font-size: 190px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}
.newsletter-panel .eyebrow { color: #a8fff5; }
.newsletter-panel h2 {
    font-size: 44px;
    line-height: 1.08;
    margin: 14px 0 16px;
    max-width: 720px;
}
.newsletter-panel p {
    color: #d4dfdf;
    line-height: 1.8;
    max-width: 620px;
}
.newsletter-form {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 24px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow-md);
}
.newsletter-form label {
    color: var(--dark-teal);
    font-weight: 900;
    font-size: 13px;
    display: grid;
    gap: 8px;
}
.newsletter-form input {
    min-height: 50px;
    border: 1px solid var(--border-color);
    padding: 0 14px;
    color: var(--dark-teal);
}
.newsletter-form p {
    color: #176b36;
    font-weight: 800;
    font-size: 13px;
    margin: 0;
}
.editorial-hero {
    background: #071315;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    min-height: 430px;
    height: 430px;
    margin-bottom: 42px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.editorial-hero > div {
    position: relative;
    z-index: 2;
    padding: 58px 54px;
    align-self: stretch;
    background: #071315;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.editorial-hero > div::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -44vw;
    width: 44vw;
    min-width: 520px;
    background: linear-gradient(90deg, #071315 0%, rgba(7,19,21,0.98) 20%, rgba(7,19,21,0.76) 48%, rgba(7,19,21,0.34) 74%, rgba(7,19,21,0) 100%);
    pointer-events: none;
}
.editorial-hero h1 { font-size: 54px; line-height: 1.05; max-width: 680px; margin: 14px 0 20px; }
.editorial-hero p { color: #d4dfdf; line-height: 1.75; max-width: 560px; }
.editorial-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.featured-post {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 34px;
    align-items: center;
    background: #f8fafa;
    border: 1px solid var(--border-color);
    margin-bottom: 34px;
}
.featured-post img { width: 100%; height: 430px; object-fit: cover; }
.featured-post div { padding: 34px 42px 34px 0; }
.featured-post span { color: var(--primary-red); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.featured-post h2 { color: var(--dark-teal); font-size: 38px; line-height: 1.15; margin: 12px 0 16px; }
.featured-post p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.news-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.post-layout { max-width: 980px; margin: 0 auto; }
.post-hero { text-align: center; }
.post-hero h1 { color: var(--dark-teal); font-size: 58px; line-height: 1.05; margin: 14px auto 18px; max-width: 850px; }
.post-hero p { color: var(--text-muted); line-height: 1.75; font-size: 18px; max-width: 780px; margin: 0 auto 34px; }
.post-hero img { width: 100%; height: 520px; object-fit: cover; }
.post-body { max-width: 760px; margin: 44px auto 0; color: #344; }
.post-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 22px; font-size: 16px; }
.post-body h2 { color: var(--dark-teal); font-size: 30px; margin: 36px 0 14px; }
.post-callout { border-left: 5px solid var(--primary-red); background: #f8fafa; padding: 24px 28px; color: var(--dark-teal); font-weight: 800; line-height: 1.65; margin: 34px 0; }
.post-footer-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.about-shell { margin-top: 132px; }
.about-shell > .editorial-hero { max-width: var(--container-width); margin-left: auto; margin-right: auto; }
.about-hero {
    height: 520px;
    min-height: 520px;
    padding: 0;
}
.about-hero h1 { font-size: 54px; line-height: 1.04; max-width: 780px; margin: 16px 0 22px; }
.about-hero p { color: #d7e1e1; max-width: 680px; line-height: 1.8; font-size: 18px; }
.about-intro {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    padding: 84px 18px;
    align-items: start;
}
.about-intro h2, .about-split h2, .about-cta h2 { color: var(--dark-teal); font-size: 42px; line-height: 1.12; margin-top: 12px; }
.about-intro p, .about-split p { color: var(--text-muted); line-height: 1.9; font-size: 16px; }
.about-split { display: grid; grid-template-columns: 1fr 0.9fr; gap: 54px; align-items: center; padding-bottom: 84px; }
.about-split img { width: 100%; min-height: 480px; object-fit: cover; }
.about-split p { margin-top: 18px; }
.about-values { background: #f8fafa; padding: 84px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.value-grid article { background: #fff; border: 1px solid var(--border-color); padding: 30px; min-height: 250px; }
.value-grid i { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(32,199,178,0.12); color: var(--primary-red); margin-bottom: 22px; }
.value-grid h3 { color: var(--dark-teal); margin-bottom: 12px; font-size: 22px; }
.value-grid p { color: var(--text-muted); line-height: 1.75; }
.about-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 78px 18px; }
.about-cta h2 { max-width: 680px; }

.page-shell { margin-top: 132px; margin-bottom: 90px; }
.page-heading { background: #f5f7f7; padding: 46px; margin-bottom: 34px; border-left: 5px solid var(--primary-red); }
.page-heading h1 { font-size: 44px; color: var(--dark-teal); margin: 8px 0; }
.page-heading p { color: var(--text-muted); max-width: 680px; line-height: 1.7; }
.catalog-hero {
    background: #071315;
    color: #fff;
    min-height: 380px;
    height: 380px;
    padding: 0;
    margin-bottom: 42px;
    border-left: 0;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.category-hero-copy {
    position: relative;
    z-index: 2;
    align-self: stretch;
    padding: 58px 54px;
    background: #071315;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.category-hero-copy::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -44vw;
    width: 44vw;
    min-width: 520px;
    background: linear-gradient(90deg, #071315 0%, rgba(7,19,21,0.98) 20%, rgba(7,19,21,0.76) 48%, rgba(7,19,21,0.34) 74%, rgba(7,19,21,0) 100%);
    pointer-events: none;
}
.catalog-hero h1 { font-size: 52px; color: #fff; line-height: 1.06; margin: 10px 0 18px; }
.catalog-hero p { color: #d4dfdf; line-height: 1.75; max-width: 610px; }
.category-hero-media { position: relative; min-height: 0; height: 100%; background: #071315; }
.category-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; display: block; }
.plp-container { display: grid; grid-template-columns: 290px 1fr; gap: 34px; align-items: start; }
.plp-sidebar { position: static; border: 1px solid var(--border-color); padding: 24px; background: #fff; }
.sidebar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sidebar-head h2 { font-size: 20px; color: var(--dark-teal); }
.sidebar-head button { border: 0; background: transparent; color: var(--primary-red); font-weight: 800; }
.filter-field { display: grid; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 800; color: #344; text-transform: uppercase; }
.filter-field span { color: var(--primary-red); float: right; }
.filter-field input, .filter-field select, .listing-toolbar select {
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 44px;
    padding: 0 12px;
    color: #263030;
    background: #fff;
}
.filter-field input[type="range"] { padding: 0; accent-color: var(--primary-red); }
.check-field { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #344; }
.check-field input { accent-color: var(--primary-red); }
.listing-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 18px; }
.listing-toolbar h2 { color: var(--dark-teal); font-size: 28px; }
.listing-toolbar p { color: var(--text-muted); }
.listing-toolbar label { min-width: 220px; display: grid; gap: 7px; color: #344; font-weight: 800; font-size: 12px; text-transform: uppercase; }
.filter-drawer-toggle { display: none; }
.catalog-grid { grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); }
.empty-state { padding: 36px; background: #f8fafa; color: var(--text-muted); margin-bottom: 20px; text-align: center; }

.breadcrumb { color: var(--text-muted); margin-bottom: 28px; font-size: 14px; }
.breadcrumb a { color: var(--dark-teal); font-weight: 700; }
.pdp-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); gap: 54px; align-items: start; }
.pdp-main-img { border: 1px solid var(--border-color); background: #fff; min-height: 560px; display: grid; place-items: center; }
.pdp-main-img img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; padding: 40px; }
.pdp-thumbs { display: flex; gap: 14px; margin-top: 16px; }
.pdp-thumbs button { width: 104px; height: 104px; border: 1px solid var(--border-color); background: #fff; padding: 10px; }
.pdp-thumbs button.active { border-color: var(--primary-red); box-shadow: 0 0 0 2px rgba(32,199,178,0.16); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pdp-info h1 { font-size: 38px; line-height: 1.15; color: var(--dark-teal); margin: 10px 0 16px; }
.pdp-copy { color: var(--text-muted); line-height: 1.75; margin: 22px 0; }
.option-group { margin-bottom: 22px; }
.option-label { display: block; font-weight: 800; margin-bottom: 10px; color: #344; }
.swatches, .size-row { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; background: var(--swatch); box-shadow: 0 0 0 1px #ccd2d2; }
.swatch.active { box-shadow: 0 0 0 2px var(--primary-red); }
.size-box { min-width: 46px; height: 42px; border: 1px solid var(--border-color); background: #fff; font-weight: 800; }
.size-box:hover, .size-box.active { background: var(--dark-teal); color: #fff; border-color: var(--dark-teal); }
.pdp-price { display: flex; gap: 14px; align-items: baseline; margin: 22px 0 8px; }
.pdp-price span { font-size: 38px; }
.stock-line { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.buy-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.qty-input { display: flex; border: 1px solid var(--border-color); height: 48px; }
.qty-btn { border: 0; background: #f6f7f7; width: 44px; color: #263030; font-size: 18px; }
.qty-input input { width: 52px; border: 0; border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); text-align: center; font-weight: 800; }
.tabs-container { margin-top: 78px; border-top: 1px solid var(--border-color); }
.pdp-tabs-under-image { margin-top: 26px; }
.pdp-tabs-under-image .tabs-nav { gap: 30px; }
.pdp-tabs-under-image .tab-content { padding: 28px 0 0; }
.pdp-tabs-under-image .spec-list { grid-template-columns: 1fr; }
.shipping-payment strong { color: var(--dark-teal); }
.tabs-nav { display: flex; gap: 48px; border-bottom: 1px solid var(--border-color); }
.tab-link { padding: 22px 0; border: 0; background: transparent; font-weight: 800; color: #8a9494; text-transform: uppercase; position: relative; }
.tab-link.active { color: var(--dark-teal); }
.tab-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--primary-red); }
.tab-content { display: none; padding: 34px 0; color: var(--text-muted); line-height: 1.8; }
.tab-content.active { display: block; }
.pdp-description {
    display: grid;
    gap: 18px;
    max-width: 980px;
}
.spec-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.spec-list div { display: grid; grid-template-columns: 130px 1fr; gap: 14px; border-bottom: 1px solid #eef1f1; padding-bottom: 10px; }
.spec-list dt { color: var(--dark-teal); font-weight: 800; text-transform: capitalize; }
.related-section { margin-top: 72px; }

.plp-sidebar {
    padding-right: 20px;
}
.sidebar-block {
    margin-bottom: 28px;
}
.sidebar-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 25px;
    border: none;
    padding: 0;
    text-transform: none;
}
.filter-section-toggle {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    color: var(--dark-teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    text-align: left;
}
.filter-section-toggle i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 12px;
    transition: transform 0.22s ease;
}
.filter-section.is-collapsed .filter-section-toggle i {
    transform: rotate(-90deg);
}
.filter-section-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    will-change: max-height;
}
.filter-section:not(.is-collapsed) .filter-section-body {
    opacity: 1;
}
.filter-section-body > *:first-child {
    margin-top: 18px;
}

/* Category List */
.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #4a5568;
    cursor: pointer;
    transition: 0.2s;
}
.filter-list li:hover { color: var(--primary-red); }
.filter-list button {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
    font-weight: 600;
    line-height: 1.35;
    min-height: 40px;
    padding: 8px 10px;
    text-align: left;
}
.accessory-filter {
    display: none;
    border-top: 1px solid var(--border-color);
    padding-top: 22px;
    margin-top: -10px;
}
.accessory-filter.is-active {
    display: block;
}
.accessory-filter[hidden] { display: none !important; }
.accessory-filter-list { gap: 6px; }
.accessory-filter-list button {
    min-height: 36px;
    padding-left: 14px;
}
.filter-list button.active {
    color: var(--primary-red);
    background: rgba(32,199,178,0.1);
}
.filter-count {
    min-width: 28px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2f2;
    color: #6f7777;
    font-size: 12px;
    font-weight: 800;
}
.filter-list button.active .filter-count {
    background: var(--primary-red);
    color: #fff;
}

/* Size Checkboxes */
.size-filter li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.size-filter label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #4a5568;
}
.size-filter input[type="checkbox"],
.size-filter input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e0;
    cursor: pointer;
    accent-color: var(--primary-red);
}
.count { color: #2d3748; font-weight: 500; }

/* Color Filter */
.color-filter li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}
.color-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4a5568;
    cursor: pointer;
}
.color-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(13,42,45,0.18);
}
.color-dot-all {
    background: linear-gradient(135deg, #83B829 0 25%, #3E3E3E 25% 50%, #dfe9d5 50% 75%, #65951f 75%);
}

/* Price Slider */
.price-range-display {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
}
.price-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.price-input-grid label {
    display: grid;
    gap: 7px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.price-input-grid input {
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 40px;
    padding: 0 10px;
    color: var(--dark-teal);
}
.price-range-sliders {
    position: relative;
    min-height: 34px;
    margin-top: 10px;
}
.price-range-input {
    width: 100%;
    height: 34px;
    margin: 0;
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    z-index: 2;
}
.price-range-input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    background: var(--primary-red);
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}
.price-range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    background: var(--primary-red);
    cursor: pointer;
    pointer-events: auto;
}
.price-range-input::-webkit-slider-runnable-track { background: transparent; }
.price-range-input::-moz-range-track { background: transparent; }
.price-slider-track {
    height: 4px;
    background: linear-gradient(to right, #edf2f7 0 var(--price-min, 0%), var(--primary-red) var(--price-min, 0%) var(--price-max, 100%), #edf2f7 var(--price-max, 100%) 100%);
    position: absolute;
    left: 9px;
    right: 9px;
    top: 15px;
    z-index: 1;
}
.price-slider-handle {
    display: none;
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.handle-left { left: 0%; }
.handle-right { left: 100%; }
.clear-filter-btn { width: 100%; }

/* Global Header Consistency Fix (Redundant Check) */
.header-container { display: flex; align-items: center; width: 100%; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 100vw);
    height: 100vh;
    background: #f7f9f9;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -22px 0 50px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px; background: var(--dark-teal); color: #fff; }
.cart-head h2 { color: #fff; font-size: 24px; }
.cart-head button { border: 0; background: rgba(255,255,255,0.1); width: 38px; height: 38px; color: #fff; font-size: 18px; }
.cart-head button:hover { background: var(--primary-red); }
.cart-items { padding: 18px; overflow: auto; flex: 1; }
.cart-line { display: grid; grid-template-columns: 86px 1fr; gap: 16px; padding: 16px; margin-bottom: 12px; background: #fff; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.cart-line img { width: 86px; height: 86px; object-fit: contain; background: #f8fafa; border: 1px solid #eef1f1; }
.cart-line strong { display: block; color: var(--dark-teal); font-size: 14px; margin-bottom: 4px; }
.cart-line span { color: var(--text-muted); font-size: 13px; }
.cart-variant { display: block; color: var(--primary-red) !important; font-weight: 700; margin-bottom: 3px; }
.cart-line-actions { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.cart-line-actions button { border: 1px solid var(--border-color); background: #fff; min-width: 28px; height: 28px; padding: 4px 8px; color: #344; font-size: 12px; font-weight: 700; }
.cart-line-actions button:hover { border-color: var(--primary-red); color: var(--primary-red); }
.empty-cart { color: var(--text-muted); text-align: center; margin-top: 30px; }
.cart-total { display: flex; justify-content: space-between; padding: 22px 28px; background: #fff; border-top: 1px solid var(--border-color); font-size: 18px; }
.cart-total strong { color: var(--dark-teal); font-size: 24px; }
.cart-drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 28px 28px; background: #fff; }
.cart-drawer-actions .btn { padding-left: 12px; padding-right: 12px; }

.cart-page-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; align-items: start; }
.cart-page-items { display: grid; gap: 14px; }
.cart-page-line { display: grid; grid-template-columns: 110px 1fr auto auto auto; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--border-color); background: #fff; }
.cart-page-line img { width: 110px; height: 110px; object-fit: contain; background: #f8fafa; border: 1px solid #eef1f1; }
.cart-page-line h3 { color: var(--dark-teal); font-size: 18px; }
.cart-page-line p { color: var(--text-muted); margin: 4px 0; }
.cart-page-qty { display: flex; align-items: center; border: 1px solid var(--border-color); height: 42px; }
.cart-page-qty button { width: 38px; height: 40px; border: 0; background: #f7f9f9; font-weight: 800; }
.cart-page-qty span { width: 38px; text-align: center; font-weight: 800; }
.remove-line { border: 1px solid var(--border-color); background: #fff; padding: 10px 12px; color: var(--text-muted); font-weight: 700; }
.remove-line:hover { color: var(--primary-red); border-color: var(--primary-red); }
.order-summary { position: sticky; top: 110px; border: 1px solid var(--border-color); background: #fff; padding: 24px; display: grid; gap: 16px; box-shadow: var(--shadow-sm); }
.order-summary h2 { color: var(--dark-teal); }
.order-summary div { display: flex; justify-content: space-between; gap: 18px; color: var(--text-muted); }
.order-summary strong { color: var(--dark-teal); }
.order-summary .summary-total { padding-top: 16px; border-top: 1px solid var(--border-color); font-size: 20px; }
.checkout-form { display: grid; gap: 24px; }
.checkout-form section { border: 1px solid var(--border-color); background: #fff; padding: 24px; }
.checkout-form h2 { color: var(--dark-teal); margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.checkout-form label { display: grid; gap: 8px; color: #344; font-weight: 700; font-size: 13px; }
.checkout-form input, .checkout-form select, .checkout-form textarea, .search-page-form input { width: 100%; border: 1px solid var(--border-color); min-height: 46px; padding: 0 12px; color: var(--dark-teal); background: #fff; }
.checkout-form textarea { padding: 12px; resize: vertical; }
.wide { grid-column: 1 / -1; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.payment-options label { border: 1px solid var(--border-color); padding: 14px; display: flex; align-items: center; gap: 10px; }
.checkout-success { background: #e9f8ef; color: #176b36; border: 1px solid #b9e6c8; padding: 14px; font-weight: 700; }
body.checkout-focus { background: #f4f7f7; }
.checkout-topbar {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.checkout-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--dark-teal);
}
.checkout-brand .logo-main { color: var(--primary-red); }
.checkout-brand small { color: var(--text-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.checkout-support { display: flex; align-items: center; gap: 10px; color: var(--dark-teal); font-weight: 800; font-size: 13px; }
.checkout-support i { color: #176b36; }
.checkout-support span { color: var(--text-muted); font-weight: 700; }
.checkout-shell {
    max-width: 1240px;
    margin: 0 auto 64px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: start;
}
.checkout-main { display: grid; gap: 22px; }
.checkout-intro {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 34px;
    box-shadow: var(--shadow-sm);
}
.checkout-intro h1 { color: var(--dark-teal); font-size: 44px; line-height: 1.08; margin: 8px 0 12px; }
.checkout-intro p { color: var(--text-muted); line-height: 1.75; max-width: 650px; }
.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border-color);
    background: #fff;
}
.checkout-steps span {
    padding: 15px 18px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border-right: 1px solid var(--border-color);
}
.checkout-steps span:last-child { border-right: 0; }
.checkout-steps .active { color: var(--dark-teal); background: #f9fbfb; }
.checkout-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.checkout-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    color: var(--dark-teal);
    font-weight: 800;
    font-size: 13px;
}
.checkout-benefits i { color: var(--primary-red); }
.checkout-full-form section { box-shadow: var(--shadow-sm); }
.checkout-section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.checkout-section-title span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--dark-teal);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}
.checkout-section-title h2 { margin: 0; }
.woo-payment-options {
    grid-template-columns: 1fr;
    gap: 10px;
}
.payment-method {
    justify-content: flex-start;
    align-items: flex-start !important;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.payment-method.selected {
    border-color: var(--primary-red);
    background: #f0fffc;
    box-shadow: 0 0 0 2px rgba(32,199,178,0.12);
}
.payment-method input { margin-top: 4px; accent-color: var(--primary-red); }
.payment-method span { display: grid; gap: 4px; }
.payment-method strong { color: var(--dark-teal); }
.payment-method small { color: var(--text-muted); font-weight: 600; line-height: 1.5; }
.fake-stripe-box {
    border: 1px solid var(--border-color);
    background: #fbfcfc;
    padding: 20px;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}
.stripe-head { display: flex; justify-content: space-between; align-items: center; color: var(--dark-teal); }
.stripe-head span { color: #176b36; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.checkout-terms { margin: 8px 0 18px; }
.checkout-submit { width: 100%; min-height: 56px; font-size: 15px; }
.checkout-summary {
    top: 24px;
    padding: 28px;
}
.checkout-summary .summary-reassurance {
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.checkout-summary .summary-reassurance i { color: #176b36; margin-right: 6px; }
.checkout-summary .summary-product {
    display: grid !important;
    grid-template-columns: 64px 1fr auto;
    align-items: center !important;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f1;
}
.checkout-summary .summary-product img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #f8fafa;
    border: 1px solid #eef1f1;
}
.checkout-summary .summary-product span { color: var(--dark-teal); font-weight: 800; line-height: 1.35; }
.checkout-summary .summary-product small { color: var(--text-muted); font-weight: 600; font-size: 12px; margin-top: 4px; }
.checkout-summary .summary-product strong { white-space: nowrap; }
.summary-guarantees {
    display: grid !important;
    gap: 8px !important;
    justify-content: stretch !important;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}
.summary-guarantees span { color: var(--dark-teal); font-size: 13px; font-weight: 800; }
.summary-guarantees i { color: #176b36; margin-right: 6px; }
.account-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; align-items: start; }
.account-form { border: 1px solid var(--border-color); background: #fff; padding: 30px; display: grid; gap: 18px; box-shadow: var(--shadow-sm); }
.account-form-head { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border-color); }
.account-form-head i { width: 46px; height: 46px; display: grid; place-items: center; background: #f3f7f7; color: var(--primary-red); font-size: 18px; }
.account-form-head h2 { color: var(--dark-teal); font-size: 26px; }
.account-form-head p, .account-note { color: var(--text-muted); line-height: 1.6; }
.account-form label { display: grid; gap: 8px; color: #344; font-weight: 700; font-size: 13px; }
.account-form input { width: 100%; border: 1px solid var(--border-color); min-height: 48px; padding: 0 12px; color: var(--dark-teal); background: #fff; }
.account-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.account-row a { color: var(--primary-red); font-size: 13px; font-weight: 800; }
.account-form .check-field { display: flex; align-items: center; gap: 9px; }
.account-form .check-field input { width: auto; min-height: auto; }
.summary-product { align-items: start !important; }
.summary-product span { display: grid; color: var(--dark-teal); }
.summary-product small { color: var(--text-muted); font-size: 12px; margin-top: 3px; }
.search-page-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 30px; }
.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: var(--primary-red);
    color: #fff;
    padding: 14px 22px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    z-index: 3000;
    opacity: 0;
    transform: translateY(14px);
    transition: 0.25s;
}
.toast.show { opacity: 1; transform: translateY(0); }

.footer { background: var(--dark-teal); color: #cbd5d5; }
.footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.05fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 62px;
}
.footer-brand-panel p { color: #cbd5d5; line-height: 1.75; margin: 18px 0 22px; max-width: 390px; }
.footer-brand { color: #fff; display: inline-grid; gap: 3px; }
.footer-brand img { width: 180px; max-height: 58px; object-fit: contain; }
.footer-brand-mark { font-size: 30px; font-weight: 900; letter-spacing: 1px; line-height: 1; }
.footer-brand span:last-child { font-size: 10px; letter-spacing: 2px; font-weight: 800; }
.footer-newsletter {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}
.footer h3 { color: #fff; margin-bottom: 22px; font-size: 14px; letter-spacing: 1px; }
.footer-links li { margin-bottom: 12px; color: #cbd5d5; line-height: 1.35; }
.footer-links a { color: #cbd5d5; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 6px; }
.footer-contact span { color: #8fa2a2; font-size: 12px; text-transform: uppercase; font-weight: 800; margin-top: 10px; }
.footer-contact a { color: #fff; font-weight: 800; }
.footer-bottom { background: #061e20; padding: 22px 0; color: #aab4b4; }
.footer-bottom .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-bottom img { height: 25px; }
.footer-bottom span:last-child { justify-self: end; }
.footer-bottom a { color: #fff; font-weight: 800; }
.footer-bottom a:hover { color: var(--primary-red); }

.info-page-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.info-page-content article {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 26px;
}
.info-page-content h2 { color: var(--dark-teal); font-size: 20px; margin-bottom: 12px; }
.info-page-content p { color: var(--text-muted); line-height: 1.75; }

.contact-heading { margin-bottom: 28px; }
.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 34px;
    align-items: start;
}
.contact-info-panel {
    background: var(--dark-teal);
    color: #fff;
    padding: 38px;
    min-height: 100%;
}
.contact-info-panel h2 {
    font-size: 34px;
    line-height: 1.16;
    margin: 14px 0 28px;
    max-width: 520px;
}
.contact-info-list {
    display: grid;
    gap: 14px;
}
.contact-info-list article {
    border-top: 1px solid rgba(255,255,255,0.16);
    padding-top: 16px;
}
.contact-info-list span {
    display: block;
    color: #a8fff5;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.contact-info-list p {
    color: #e4eeee;
    line-height: 1.65;
    font-weight: 700;
}
.contact-form-panel {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 34px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}
.contact-form-panel h2 {
    color: var(--dark-teal);
    font-size: 30px;
    margin-top: 10px;
}
.contact-form-panel label {
    display: grid;
    gap: 8px;
    color: #344;
    font-size: 13px;
    font-weight: 800;
}
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 48px;
    padding: 0 13px;
    color: var(--dark-teal);
    background: #fff;
    outline: 0;
}
.contact-form-panel textarea {
    padding: 13px;
    resize: vertical;
}
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(32,199,178,0.12);
}
.form-success {
    background: var(--brand-aqua-soft);
    color: var(--dark-teal);
    border: 1px solid rgba(32,199,178,0.28);
    padding: 13px 14px;
    line-height: 1.55;
    font-weight: 700;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bump {
    50% { transform: scale(1.18); }
}

@media (max-width: 1100px) {
    .main-nav { padding-left: 24px; }
    .main-nav ul { gap: 16px; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .pdp-grid { grid-template-columns: 1fr; }
    .pdp-main-img { min-height: 440px; }
}

@media (max-width: 860px) {
    .header { top: 0; width: 100%; transform: none; left: 0; }
    .header.sticky { top: 0; left: 0; width: 100%; max-width: none; transform: none; border-radius: 0; }
    .logo { min-width: 172px; padding: 13px 18px; }
    .logo img { width: 162px; }
    .logo-main { font-size: 20px; }
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-140%);
        transition: transform 0.25s ease;
        z-index: 999;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { display: grid; gap: 0; }
    .main-nav li { border-bottom: 1px solid var(--border-color); }
    .main-nav a { display: block; padding: 17px 22px; }
    .nav-has-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
    .nav-has-dropdown > a i {
        min-width: 44px;
        min-height: 44px;
        margin: -12px -10px -12px 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-red);
        border-left: 1px solid var(--border-color);
    }
    .nav-dropdown {
        position: static;
        width: 100%;
        padding: 0 14px 14px;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-has-dropdown.is-open .nav-dropdown { display: grid; }
    .nav-has-dropdown.is-open > a i { transform: rotate(180deg); }
    .nav-has-dropdown:not(.is-open) > a i { transform: none; }
    .nav-dropdown a { padding: 12px; border-color: var(--border-color); }
    .mobile-nav-search {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 8px;
        padding: 14px;
        border-bottom: 1px solid var(--border-color);
    }
    .mobile-nav-search label {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        min-height: 44px;
        border: 1px solid var(--border-color);
        padding: 0 12px;
        color: var(--primary-red);
        background: #fff;
    }
    .mobile-nav-search input {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        color: var(--dark-teal);
        font: inherit;
        font-size: 14px;
    }
    .mobile-nav-search button {
        min-height: 44px;
        border: 0;
        background: var(--primary-red);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .header-actions .icon-btn[data-search-toggle] { display: none; }
    .header-actions { margin-left: auto; padding-right: 8px; gap: 2px; }
    .icon-btn { width: 38px; height: 38px; }
    .hero { min-height: 720px; }
    .hero-content { margin-left: 0; padding-top: 120px; }
    .hero-title { font-size: 54px; }
    .trust-wrap { margin-top: 0; padding: 0; }
    .trust-bar { grid-template-columns: 1fr; box-shadow: none; }
    .section-block, .news-section { padding: 64px 18px; }
    .product-grid, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .product-img-wrapper { height: 230px; }
    .cat-grid, .blog-grid { grid-template-columns: 1fr; }
    .editorial-hero, .featured-post, .news-list, .home-faq-layout, .newsletter-panel, .about-intro, .about-split, .value-grid { grid-template-columns: 1fr; }
    .editorial-hero { height: auto; min-height: 0; }
    .editorial-hero > div::after { display: none; }
    .editorial-hero img { height: 300px; }
    .home-faq-copy { position: static; }
    .home-faq-copy h2, .newsletter-panel h2 { font-size: 36px; }
    .newsletter-panel { padding: 38px 28px; gap: 32px; }
    .newsletter-panel::after { font-size: 120px; right: 18px; }
    .editorial-hero > div { padding: 36px 28px; }
    .editorial-hero h1, .post-hero h1, .about-hero h1 { font-size: 42px; }
    .featured-post div { padding: 30px; }
    .featured-post img, .post-hero img, .about-split img { height: 340px; min-height: 0; }
    .about-hero { min-height: 0; padding: 0; }
    .about-intro, .about-split, .about-values, .about-cta { padding-top: 58px; padding-bottom: 58px; }
    .about-intro h2, .about-split h2, .about-cta h2 { font-size: 34px; }
    .about-cta { align-items: flex-start; flex-direction: column; }
    .ride-banner { min-height: 100svh; }
    .ride-banner h2 { font-size: 48px; }
    .page-shell { margin-top: 96px; }
    .catalog-hero { grid-template-columns: 1fr; min-height: 0; height: auto; }
    .category-hero-copy { padding: 36px 28px; }
    .category-hero-copy::after { display: none; }
    .category-hero-media { min-height: 260px; height: 260px; }
    .page-heading { padding: 30px 24px; }
    .catalog-hero h1 { font-size: 36px; }
    .page-heading h1 { font-size: 36px; }
    .plp-container { grid-template-columns: 1fr; }
    .plp-sidebar {
        position: fixed;
        top: 68px;
        bottom: 0;
        left: 0;
        width: min(350px, 90vw);
        z-index: 1701;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        box-shadow: var(--shadow-md);
    }
    body.filters-open .plp-sidebar { transform: translateX(0); }
    body.filters-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(4, 24, 25, 0.42);
        z-index: 1700;
    }
    .listing-toolbar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: end;
        gap: 14px;
    }
    .listing-toolbar > div { grid-column: 1 / -1; }
    .listing-toolbar label { min-width: 0; }
    .filter-drawer-toggle {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid var(--border-color);
        background: #fff;
        color: var(--dark-teal);
        font-weight: 900;
        text-transform: uppercase;
        padding: 0 14px;
    }
    .filter-drawer-toggle i { color: var(--primary-red); }
    .search-panel { top: 68px; width: 100%; }
    .header.sticky + .search-panel { top: 68px; }
    .search-results { grid-template-columns: 1fr; }
    .search-result:nth-child(odd) { border-right: 0; }
    .cart-page-layout, .checkout-layout, .checkout-shell, .account-layout, .contact-page-layout { grid-template-columns: 1fr; }
    .checkout-benefits, .checkout-steps { grid-template-columns: 1fr; }
    .checkout-steps span { border-right: 0; border-bottom: 1px solid var(--border-color); }
    .checkout-steps span:last-child { border-bottom: 0; }
    .checkout-topbar { align-items: flex-start; flex-direction: column; }
    .checkout-summary { position: static; }
    .cart-page-line { grid-template-columns: 86px 1fr; }
    .cart-page-line img { width: 86px; height: 86px; }
    .cart-page-line > strong, .cart-page-qty, .remove-line { grid-column: 2; justify-self: start; }
    .order-summary { position: static; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .info-page-content { grid-template-columns: 1fr; }
    .contact-info-panel, .contact-form-panel { padding: 28px; }
}

@media (max-width: 560px) {
    .logo { min-width: auto; }
    .logo img { width: 148px; }
    .logo-sub { display: none; }
    .hero-title { font-size: 44px; }
    .editorial-hero h1, .post-hero h1, .about-hero h1 { font-size: 34px; }
    .home-faq-section { padding: 64px 0; }
    .home-faq-copy h2, .newsletter-panel h2 { font-size: 30px; }
    .newsletter-section { padding-bottom: 64px; }
    .newsletter-panel { padding: 30px 22px; }
    .newsletter-form { padding: 18px; }
    .editorial-hero img { min-height: 260px; }
    .post-hero p { font-size: 16px; }
    .post-body h2 { font-size: 25px; }
    .post-footer-nav .btn { width: 100%; }
    .about-intro h2, .about-split h2, .about-cta h2 { font-size: 29px; }
    .value-grid article { min-height: auto; }
    .hero-content p { font-size: 15px; }
    .hero-actions .btn { width: 100%; }
    .section-title h2 { font-size: 28px; }
    .product-grid, .catalog-grid { grid-template-columns: 1fr; }
    .product-card h3 { min-height: auto; }
    .cat-grid { grid-template-columns: 1fr; }
    .buy-row { grid-template-columns: auto minmax(0, 1fr); gap: 10px; }
    .form-grid, .payment-options, .search-page-form { grid-template-columns: 1fr; }
    .checkout-shell { padding: 0 14px; margin-bottom: 36px; }
    .checkout-topbar { padding: 18px 14px; }
    .checkout-intro { padding: 24px; }
    .checkout-intro h1 { font-size: 34px; }
    .checkout-support { align-items: flex-start; flex-direction: column; gap: 4px; }
    .checkout-summary .summary-product { grid-template-columns: 54px 1fr; }
    .checkout-summary .summary-product strong { grid-column: 2; }
    .checkout-summary .summary-product img { width: 54px; height: 54px; }
    .account-form { padding: 22px; }
    .account-row { align-items: flex-start; flex-direction: column; }
    .cart-drawer-actions { grid-template-columns: 1fr; }
    .search-result { grid-template-columns: 58px 1fr; }
    .search-result b { grid-column: 2; }
    .search-result img { width: 58px; height: 58px; }
    .qty-input { width: auto; justify-content: center; }
    .qty-btn { width: 38px; }
    .qty-input input { width: 44px; }
    .tabs-nav { gap: 18px; overflow-x: auto; }
    .tab-link { white-space: nowrap; }
    .spec-list, .spec-list div { grid-template-columns: 1fr; }
    .pdp-info h1 { font-size: 30px; }
    .pdp-price span { font-size: 31px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom .container { grid-template-columns: 1fr; justify-items: start; }
    .footer-bottom span:last-child { justify-self: start; }
}

.led-hero {
    background-position: center;
}

.logo {
    background: #fff;
}

.footer-brand img {
    width: 210px;
    max-height: 64px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 8px;
}

.trust-item.red {
    color: #1f1f1f;
}

.btn-primary {
    color: #1f1f1f;
}

.btn-primary:hover {
    background: #3E3E3E;
}

.catalog-layout-led {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 34px;
}

.catalog-side {
    align-self: start;
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 22px;
}

.catalog-side h2 {
    color: var(--dark-teal);
    font-size: 18px;
    margin-bottom: 14px;
}

.catalog-side a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #eef2ea;
    color: var(--text-muted);
    font-weight: 700;
}

.catalog-side a.active,
.catalog-side a:hover {
    color: var(--primary-red);
}

.post-hero-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin-bottom: 34px;
}

.led-nav-dropdown {
    width: min(760px, calc(100vw - 48px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 860px) {
    .catalog-layout-led {
        grid-template-columns: 1fr;
    }

    .catalog-side {
        position: static;
    }

    .led-nav-dropdown {
        width: auto;
        grid-template-columns: 1fr;
    }
}
