/* ===== CSS Variables ===== */
:root {
    --green: #6ACE13;
    --dark-green: #162804;
    --dark-green-tint: #42870B;
    --light-green: #EDF9E1;
    --white: #FFFFFF;
    --black: #000000;

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Bricolage Grotesque', sans-serif;

    --main-x-margin: 48px;
    --content-max-width: 1536px;
    --border-radius-sm: 16px;
    --border-radius-md: 32px;
    --border-radius-lg: 48px;
    --border-radius-full: 1000px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-green);
    background: var(--white);
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.42px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--dark-green);
}

.btn-primary:hover {
    background: var(--dark-green);
    color: var(--light-green);
}

.btn-secondary {
    background: rgba(22, 40, 4, 0.05);
    color: var(--dark-green);
}

.btn-secondary:hover {
    background: var(--dark-green);
    color: var(--light-green);
}

.btn-tertiary {
    background: rgba(237, 249, 225, 0.25);
    color: var(--light-green);
}

.btn-tertiary:hover {
    background: var(--green);
    color: var(--dark-green);
}

.btn-with-arrow {
    padding: 8px 8px 8px 24px;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background: rgba(237, 249, 225, 0.75);
}

.btn-large {
    padding: 18px 32px;
    font-size: 16px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px max(3.5%, calc((100% - var(--content-max-width)) / 2 + 48px));
    min-height: 68px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

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

.logo-small {
    display: block;
    height: 36px;
    transition: filter 0.4s ease;
}

.logo-large {
    display: none;
}

@media (min-width: 2560px) {
    .logo-small {
        display: none;
    }
    .logo-large {
        display: block;
    }
}

.main-nav {
    display: none;
    align-items: center;
    gap: 36px;
    margin-left: auto;
    margin-right: auto;
}

.main-nav a {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1px;
    transition: color 0.4s ease, opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.nav-b2b {
    color: var(--green) !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-b2b svg {
    transition: transform 0.25s ease;
}

.nav-b2b:hover svg {
    transform: translate(2px, -2px);
}

.header-light .nav-b2b {
    color: var(--green) !important;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--light-green);
    transition: color 0.4s ease;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
    .header-actions {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 88vh;
    background-size: cover;
    background-position: center top;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0;
    margin-bottom: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.05) 75%, transparent 100%);
    border-radius: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 150px max(3.5%, calc((100vw - var(--content-max-width)) / 2 + 48px)) 110px;
    max-width: calc(720px + (100vw - var(--content-max-width)));
}

.hero-title {
    font-size: 74px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 0.92;
    letter-spacing: -1px;
    color: #f4f6f1;
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: #e9efe4;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 116px;
    }

    .hero-content {
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 160px;
    }
}

.hero .btn-primary {
    background: #67c51e;
    color: #122705;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.hero .btn-primary:hover {
    background: #79d02f;
    color: #0b1a03;
}

.hero .btn-arrow {
    background: #e6f4d7;
    color: #21460a;
}

/* ===== Sections ===== */
.section {
    padding: 64px var(--main-x-margin);
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
}

.section-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: var(--dark-green);
    margin-top: 16px;
}

@media (min-width: 768px) {
    .section {
        padding: 128px var(--main-x-margin);
    }
    .section-title {
        font-size: 96px;
    }
}

/* ===== Offer Section ===== */
.offer-section {
    padding-top: 48px;
}

.season-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.season-tab {
    padding: 12px 18px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-green);
    background: rgba(22, 40, 4, 0.05);
    transition: all 0.3s ease;
}

.season-tab:hover,
.season-tab.active {
    background: var(--dark-green);
    color: var(--light-green);
}

/* ===== Carousel ===== */
.carousel-container {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    /* Break out of max-width container to reach full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.carousel {
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 20px;
}

.carousel-item {
    flex-shrink: 0;
    width: 455px;
    height: 455px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: #f5f5f4;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item img {
    transition: transform 0.4s ease;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-full);
    background: var(--light-green);
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

/* Hide arrows on auto-scrolling carousel */
.carousel-autoscroll .carousel-btn {
    display: none;
}

/* ===== Catalog Section ===== */
.catalog-section {
    text-align: center;
}

/* ===== Parallax Benefits Section ===== */
.parallax-benefits {
    position: relative;
    height: 400vh;
}

.parallax-benefits-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 var(--main-x-margin);
    max-width: var(--content-max-width);
    margin: 0 auto;
    gap: 64px;
    overflow: hidden;
}

.parallax-benefits-text {
    position: relative;
    height: 300px;
}

.parallax-slide {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -50px;
    opacity: 0;
    transform: translateY(100px);
    will-change: opacity, transform;
}

.parallax-slide h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.parallax-slide p {
    font-size: 22px;
    color: var(--dark-green);
    opacity: 0.7;
}

.parallax-benefits-image {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.parallax-benefits-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: opacity;
}

/* Mobile: no parallax, simple stack */
@media (max-width: 1023px) {
    .parallax-benefits {
        height: auto;
        padding: 64px var(--main-x-margin);
    }

    .parallax-benefits-sticky {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 48px;
        padding: 0;
    }

    .parallax-benefits-text {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .parallax-slide {
        position: relative;
        top: auto;
        margin-top: 0;
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .parallax-slide h2 {
        font-size: 32px;
    }

    .parallax-benefits-image {
        display: none;
    }

    .parallax-slide-image {
        display: block;
        width: 100%;
        border-radius: var(--border-radius-sm);
        margin-top: 32px;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    .parallax-slide p {
        margin-top: 8px;
    }
}

@media (min-width: 1024px) {
    .parallax-slide h2 {
        font-size: 72px;
    }
}

/* Hide mobile parallax images on desktop (cloned by JS) */
@media (min-width: 1024px) {
    .parallax-slide-image {
        display: none;
    }
}

/* Mobile menu X icon */
.mobile-menu-btn.active svg .menu-line {
    transition: all 0.3s ease;
}

/* ===== B2B Section ===== */
.b2b-section {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    margin: 0 auto 48px;
    padding: 48px 80px;
    overflow: hidden;
    max-width: var(--content-max-width);
}

.b2b-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .b2b-container {
        grid-template-columns: 1fr 1fr;
    }
}

.b2b-label {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.b2b-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 24px;
}

.b2b-description {
    font-size: 20px;
    line-height: 1.5;
    color: var(--dark-green);
    margin-bottom: 32px;
}

.b2b-image {
    align-self: end;
    margin-bottom: -48px;
}

.b2b-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Pico Deco Section ===== */
.pico-deco-section {
    margin: 48px auto;
    padding: 0;
    max-width: var(--content-max-width);
}

.pico-deco-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.pico-deco-image {
    background: var(--dark-green);
}

.pico-deco-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pico-deco-content {
    background: var(--dark-green);
    color: var(--light-green);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pico-deco-label {
    font-size: 20px;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 16px;
}

.pico-deco-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    margin-bottom: 32px;
}

@media (max-width: 1023px) {
    .pico-deco-container {
        grid-template-columns: 1fr;
    }

    .pico-deco-image {
        min-height: 300px;
    }
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 80px 0;
}

.partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 48px;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.partner-logo {
    height: 48px;
    padding: 0 36px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 120px var(--main-x-margin);
}

.testimonials-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--dark-green);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 48px;
    }
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
}

.author-position {
    font-size: 16px;
    color: var(--dark-green);
    opacity: 0.7;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-green);
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.nav-dot.active {
    opacity: 1;
}

/* ===== Catalog Order Section ===== */
.catalog-order-section {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    margin: 0 auto;
    padding: 80px;
    max-width: var(--content-max-width);
}

.catalog-order-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.catalog-order-label {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.catalog-order-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 32px;
}

.catalog-order-image {
    position: relative;
}

@media (max-width: 1023px) {
    .catalog-order-container {
        grid-template-columns: 1fr;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-green);
    color: var(--light-green);
    padding: 64px var(--main-x-margin) 32px;
    font-size: 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(200px, 40%) minmax(100px, 50%);
    gap: 96px;
    margin-bottom: 56px;
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    display: block;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 36px;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 28px;
    line-height: 1.6;
}

.newsletter-input-group {
    display: flex;
    background: rgba(237, 249, 225, 0.25);
    border-radius: var(--border-radius-full);
    padding: 4px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: var(--light-green);
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: rgba(237, 249, 225, 0.5);
}

.newsletter-input:focus {
    outline: none;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-box {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(237, 249, 225, 0.25);
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.checkbox-box::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid var(--dark-green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}

.checkbox input:checked + .checkbox-box {
    background: var(--green);
}

.checkbox input:checked + .checkbox-box::after {
    transform: rotate(45deg) scale(1) translate(-1px, -1px);
}

.checkbox-label {
    font-size: 14px;
}

.company-info {
    margin-bottom: 24px;
}

.company-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    margin-bottom: 20px;
}

.company-name,
.company-address,
.company-city {
    font-size: 16px;
    line-height: 1.6;
}

.company-directions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(237, 249, 225, 0.15);
}

.directions-label {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    font-size: 15px;
}

.btn-google-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(237, 249, 225, 0.12);
    color: var(--light-green);
    border-radius: var(--border-radius-full);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-google-maps:hover {
    background: rgba(237, 249, 225, 0.25);
}

.company-hours {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(237, 249, 225, 0.15);
}

.hours-label {
    display: block;
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 6px;
}

.hours-value {
    font-size: 16px;
    color: var(--light-green);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(237, 249, 225, 0.15);
}

.contact-label {
    display: block;
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 17px;
    font-weight: 500;
    color: var(--light-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(237, 249, 225, 0.15);
}

.footer-copyright {
    display: flex;
    gap: 24px;
    opacity: 0.75;
}

.footer-copyright a:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== Responsive Utilities ===== */
@media (max-width: 767px) {
    :root {
        --main-x-margin: 16px;
    }

    .section {
        padding: 48px var(--main-x-margin);
    }

    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: none;
    }

    .hero-content {
        padding: 104px var(--main-x-margin);
        max-width: none;
    }

    .season-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .carousel-container {
        margin-top: 32px;
    }

    .carousel-item {
        width: 280px;
        height: 280px;
    }

    .benefit-title {
        font-size: 32px;
    }

    .b2b-section,
    .pico-deco-section,
    .catalog-order-section {
        margin: 16px;
        padding: 48px 24px;
    }

    .b2b-title,
    .pico-deco-title,
    .catalog-order-title {
        font-size: 40px;
    }

    .newsletter-title,
    .company-title {
        font-size: 36px;
    }

    .pico-deco-content {
        padding: 48px 24px;
    }
}

/* ===== Header Light (for subpages) ===== */
.header-light {
    background: transparent;
}

.header-light .main-nav a {
    color: var(--dark-green);
}


.header-light .mobile-menu-btn {
    color: var(--dark-green);
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 140px var(--main-x-margin) 64px;
    text-align: center;
}

.page-hero-minimal {
    padding-bottom: 32px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
}

@media (min-width: 768px) {
    .page-title {
        font-size: 88px;
    }
}

/* ===== Category Tags ===== */
.category-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.category-tag {
    padding: 12px 18px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-green);
    background: rgba(22, 40, 4, 0.05);
    border: 1px solid rgba(22, 40, 4, 0.1);
    transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
    background: var(--dark-green);
    color: var(--light-green);
    border-color: var(--dark-green);
}

.category-tags-section {
    padding-top: 0;
    padding-bottom: 32px;
}

/* ===== About Page ===== */
.about-historia {
    padding-bottom: 48px;
}

.about-historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.section-title-left {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 24px;
}

.about-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-green);
}

.about-historia-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-historia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1023px) {
    .about-historia-content {
        grid-template-columns: 1fr;
    }
}

/* ===== Stats Section ===== */
.stats-map-section {
    padding: 48px var(--main-x-margin);
}

.stats-header {
    text-align: center;
    margin-bottom: 48px;
}

.stats-big-number {
    font-family: var(--font-heading);
    font-size: 88px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    display: block;
}

.stats-description {
    font-size: 18px;
    color: var(--dark-green);
    margin-top: 16px;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.europe-map {
    width: 100%;
    height: auto;
}

.stats-grid-section {
    padding: 64px var(--main-x-margin);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--dark-green);
}

@media (max-width: 1023px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stats-big-number {
        font-size: 56px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 48px var(--main-x-margin);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card {
    background: var(--dark-green);
    color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-content {
    text-align: center;
    padding: 32px;
}

.gallery-card-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.gallery-card-title {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 24px;
}

.gallery-card-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

@media (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 1;
    }
}

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

/* ===== Partner Form Section ===== */
.partner-form-section {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    margin: 48px auto;
    padding: 64px;
    max-width: var(--content-max-width);
}

.partner-form-page {
    margin-top: 0;
}

.partner-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.form-label {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 32px;
}

.form-benefits {
    margin-top: 32px;
}

.benefits-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 16px;
}

.benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    color: var(--dark-green);
}

.partner-form {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--dark-green);
    opacity: 0.6;
    margin-bottom: 4px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(22, 40, 4, 0.2);
    background: transparent;
    font-size: 16px;
    color: var(--dark-green);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--green);
}

.btn-dark {
    background: var(--dark-green);
    color: var(--light-green);
}

.btn-dark:hover {
    background: var(--green);
    color: var(--dark-green);
}

.btn-full-width {
    width: 100%;
}

.partner-form .checkbox {
    margin-top: 16px;
}

.partner-form .checkbox-box {
    background: rgba(22, 40, 4, 0.1);
}

.partner-form .checkbox-label {
    color: var(--dark-green);
}

.form-privacy {
    font-size: 12px;
    color: var(--dark-green);
    opacity: 0.6;
    margin-top: 16px;
    line-height: 1.5;
}

@media (max-width: 1023px) {
    .partner-form-container {
        grid-template-columns: 1fr;
    }

    .partner-form-section {
        margin: 24px var(--main-x-margin);
        padding: 32px;
    }

    .form-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .partner-form .btn-full-width {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}

/* ===== Products Carousel Section ===== */
.products-carousel-section {
    padding: 0 var(--main-x-margin) 64px;
}

/* ===== Pico Deco Hero ===== */
.pico-deco-hero .hero-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-center {
    text-align: center;
    max-width: 100% !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pico-deco-hero {
    justify-content: center;
}

.pico-deco-hero .hero-content {
    padding-left: var(--main-x-margin);
    padding-right: var(--main-x-margin);
}

.hero-title-pico {
    font-size: 96px;
    font-family: 'Georgia', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .hero-title-pico {
        font-size: 144px;
    }
}

@media (min-width: 1200px) {
    .hero-title-pico {
        font-size: 196px;
    }
}

/* ===== Contact Details Page ===== */
.contact-details-section {
    padding: 0 var(--main-x-margin) 48px;
}

.contact-details-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .contact-details-container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    font-stretch: 80%;
    line-height: 1.1;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.contact-section-title-italic {
    font-style: italic;
}

.company-detail-name,
.company-detail-address {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-directions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
}

.contact-directions-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
}

.btn-google-maps-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-google-maps-light:hover {
    background: var(--dark-green);
    color: var(--white);
}

.contact-detail-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 16px 0;
}

.contact-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-detail-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-detail-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.2s;
}

.contact-detail-link:hover {
    color: var(--green);
}

.bank-accounts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.bank-account-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.bank-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}


.bank-currency {
    font-weight: 700;
    min-width: 32px;
    color: var(--text-dark);
}

.bank-number {
    color: var(--text-dark);
    font-weight: 500;
}

/* Right column - departments */
.contact-department {
    margin-bottom: 40px;
}

.contact-department:last-child {
    margin-bottom: 0;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-person-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-person-role {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 2px;
}

.department-contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.department-contact-value {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.department-contact-value:hover {
    color: var(--green);
}

.department-hours {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.department-hours-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.department-hours-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA center button */
.contact-cta-center {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    border-radius: var(--border-radius-full);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-contact-email:hover {
    background: var(--dark-green);
    color: var(--white);
}

/* ===== Footer Contact ===== */
.footer-contact {
    margin-top: 0;
}

/* ===== Main Nav Active State ===== */
.main-nav a.active {
    position: relative;
}

.main-nav a.active::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* ===== Placeholders for Missing Images ===== */
.placeholder-founders {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-founders::after {
    content: "Zdjęcie założycieli";
    color: #999;
    font-size: 18px;
}

.placeholder-map {
    background: #dbe9f4;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-countries {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.map-country {
    background: var(--dark-green);
    border-radius: var(--border-radius-sm);
    padding: 20px 30px;
}

.country-label {
    background: var(--white);
    color: var(--dark-green);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
}

.placeholder-showroom {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-showroom::after {
    content: "Showroom";
    color: #999;
    font-size: 18px;
}

.placeholder-event {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-event::after {
    content: "Wydarzenie";
    color: #999;
    font-size: 14px;
}

/* ===== SEO Category Pages ===== */

/* Back Button */
.back-button-wrapper {
    padding: 0 var(--main-x-margin) 24px;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px 10px 18px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-back:hover {
    background: var(--dark-green);
    transform: translateX(-4px);
}

.btn-back svg {
    flex-shrink: 0;
}

/* Oferta Hero — uses homepage section-header pattern */
.oferta-hero-section {
    padding: 160px var(--main-x-margin) 0;
}

.oferta-hero-section .section-title {
    font-size: 64px;
}

/* Oferta Description Block — light-green bg, rounded */
.oferta-description-block {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    margin: 0 auto 64px;
    padding: 64px 80px;
    max-width: 900px;
    text-align: center;
}

.oferta-description-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-green-tint);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.oferta-description-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    font-stretch: 80%;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.oferta-description-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(22, 40, 4, 0.7);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.oferta-description-text p {
    margin-bottom: 16px;
}

.oferta-description-text p:last-child {
    margin-bottom: 0;
}

.oferta-description-text a {
    color: var(--dark-green-tint);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.oferta-description-text a:hover {
    color: var(--dark-green);
}

/* Section Titles (smaller variant for category pages) */
.section-title-sm {
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 700;
    font-stretch: 80%;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.section-subtitle-sm {
    font-size: 18px;
    color: rgba(22, 40, 4, 0.5);
}

/* Nav Module (categories/subcategories — same position on every page) */
.nav-module-section,
.subcategories-section {
    padding-top: 0;
    padding-bottom: 64px;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.subcategory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    min-height: 140px;
    border-radius: var(--border-radius-sm);
    background: #fff;
    border: 1px solid rgba(22, 40, 4, 0.08);
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.25s ease;
    text-decoration: none;
    gap: 16px;
}

.subcategory-card:hover {
    border-color: var(--cat-color, var(--green));
    box-shadow: 0 8px 32px color-mix(in srgb, var(--cat-color, var(--green)) 15%, transparent);
    transform: translateY(-4px);
}

.subcategory-card:hover .subcategory-name {
    color: var(--cat-color, var(--dark-green-tint));
}

.subcategory-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--cat-color, var(--green)) 10%, transparent);
    color: var(--cat-color, var(--green));
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.subcategory-card:hover .subcategory-icon {
    background: color-mix(in srgb, var(--cat-color, var(--green)) 18%, transparent);
}

.subcategory-name {
    line-height: 1.3;
    transition: color 0.25s ease;
}

.subcategory-card-back {
    border-style: dashed;
}

/* Products Gallery Section */
.products-gallery-section {
    padding-bottom: 64px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(22, 40, 4, 0.08);
    transition: all 0.25s ease;
    padding: 16px;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(22, 40, 4, 0.08);
    transform: translateY(-2px);
}

.product-image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f4;
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f4;
}

.product-info {
    padding: 0;
}

.product-sku {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
    font-family: var(--font-primary);
    margin-bottom: 2px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(22, 40, 4, 0.7);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-variants {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--dark-green-tint);
    font-weight: 500;
}

/* Skeleton Loader */
.product-card.skeleton {
    pointer-events: none;
}

.skeleton-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #f5f5f4 25%, #eeeeec 50%, #f5f5f4 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f5f5f4 25%, #eeeeec 50%, #f5f5f4 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* No Products */
.no-products {
    text-align: center;
    padding: 48px 24px;
    color: rgba(22, 40, 4, 0.5);
    font-size: 16px;
    grid-column: 1 / -1;
}

.no-products a {
    color: var(--dark-green-tint);
    text-decoration: underline;
}

/* Products Fallback */
.products-fallback {
    text-align: center;
    padding: 32px;
    color: rgba(22, 40, 4, 0.5);
}

.products-fallback a {
    color: var(--dark-green-tint);
    text-decoration: underline;
}

/* Oferta CTA Section */
.oferta-cta-section {
    padding-bottom: 64px;
}

.oferta-cta-block {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    margin: 0 auto;
    padding: 80px 48px;
    max-width: 900px;
}

.cta-container {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    font-stretch: 80%;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(22, 40, 4, 0.6);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Categories Grid (oferta page) — 6 cards with icons */
.main-categories-section {
    padding-bottom: 64px;
}

.main-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.main-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px;
    border-radius: var(--border-radius-sm);
    background: #fff;
    border: 1px solid rgba(22, 40, 4, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.main-category-card:hover {
    border-color: var(--cat-color, var(--green));
    box-shadow: 0 8px 32px color-mix(in srgb, var(--cat-color, var(--green)) 15%, transparent);
    transform: translateY(-4px);
}

.main-category-icon-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.main-category-body {
    flex: 1;
    min-width: 0;
}

.main-category-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    font-stretch: 80%;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.main-category-count {
    font-size: 14px;
    color: rgba(22, 40, 4, 0.5);
}

.main-category-arrow {
    color: var(--cat-color, var(--green));
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.main-category-card:hover .main-category-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive — SEO Category Pages ===== */

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

    .section-title-sm {
        font-size: 40px;
    }

    .main-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oferta-description-block {
        padding: 48px 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .back-button-wrapper {
        padding: 0 16px 16px;
    }

    .oferta-hero-section {
        padding: 100px 16px 0;
    }

    .oferta-hero-section .section-title {
        font-size: 36px;
    }

    .oferta-description-block {
        margin: 0 16px 48px;
        padding: 32px 24px;
        border-radius: var(--border-radius-sm);
    }

    .oferta-description-title {
        font-size: 24px;
    }

    .oferta-description-text {
        font-size: 15px;
    }

    .subcategories-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .subcategory-card {
        padding: 24px 16px;
    }

    .subcategory-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .subcategory-card .subcategory-name {
        font-size: 16px;
    }

    .products-gallery-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .product-card {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-sku {
        font-size: 12px;
    }

    .oferta-cta-section {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 48px;
    }

    .oferta-cta-block {
        padding: 48px 24px;
        border-radius: var(--border-radius-sm);
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .main-categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .main-category-card {
        flex-direction: row;
        text-align: left;
        padding: 20px 24px;
        gap: 16px;
    }

    .main-category-icon-img {
        width: 120px;
        height: 120px;
    }

    .main-category-name {
        font-size: 22px;
    }

    .section-title-sm {
        font-size: 28px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .oferta-hero-section .section-title {
        font-size: 80px;
    }

    .oferta-description-block {
        padding: 80px 96px;
    }

    .oferta-description-title {
        font-size: 40px;
    }
}
