/**
 * =============================================================================
 * STOCKBOXX - GŁÓWNE STYLE CSS
 * =============================================================================
 * Konwersja z projektu Loveable (React + Tailwind) na natywny CSS
 * =============================================================================
 */

/* -----------------------------------------------------------------------------
   IMPORT FONTÓW
----------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

/* -----------------------------------------------------------------------------
   SCROLL BEHAVIOR - Offset dla sticky header
----------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* header height (70px) + margin (20px) */
}

/* -----------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES (ZMIENNE)
----------------------------------------------------------------------------- */
:root {
    /* Kolory główne */
    --sb-green-main: hsl(190, 50%, 17%);
    --sb-green-dark: hsl(192, 53%, 12%);
    --sb-green-light: hsl(190, 53%, 22%);

    /* Pomarańcz (akcent) */
    --sb-orange: hsl(23, 89%, 49%);
    --sb-orange-hover: hsl(24, 90%, 44%);
    --sb-orange-light: hsl(26, 100%, 95%);
    --sb-orange-pale: hsl(30, 82%, 97%);

    /* Szarości */
    --sb-gray: hsl(220, 9%, 46%);
    --sb-gray-light: hsl(218, 11%, 91%);
    --sb-gray-medium: hsl(218, 11%, 65%);

    /* Tła */
    --sb-background: hsl(40, 33%, 98%);
    --sb-off-white: hsl(25, 30%, 94%);
    --sb-kraft: hsl(33, 33%, 90%);
    --sb-footer-bg: hsl(192, 45%, 10%);

    /* Karty */
    --sb-card-bg: #FFFFFF;
    --sb-card-foreground: #1A1A1A;

    /* Sukces */
    --sb-success: hsl(145, 63%, 49%);

    /* Typografia */
    --sb-font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --sb-container-max: 1400px;
    --sb-container-padding: 24px;

    /* Border radius */
    --sb-radius: 12px;
    --sb-radius-sm: 8px;
    --sb-radius-lg: 20px;
    --sb-radius-full: 9999px;

    /* Shadows */
    --sb-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --sb-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --sb-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --sb-shadow-orange: 0 8px 30px rgba(240, 102, 10, 0.12);

    /* Transitions */
    --sb-transition: 0.3s ease;
}

/* -----------------------------------------------------------------------------
   RESET & BASE
----------------------------------------------------------------------------- */
.stockboxx-page {
    margin: 0;
    font-family: var(--sb-font-family);
    background-color: var(--sb-background);
    color: var(--sb-card-foreground);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stockboxx-page *,
.stockboxx-page *::before,
.stockboxx-page *::after {
    box-sizing: border-box;
}

/* Reset czcionki dla elementów formularzy */
.stockboxx-page button,
.stockboxx-page input,
.stockboxx-page select,
.stockboxx-page textarea {
    font-family: var(--sb-font-family);
}

/* GLOBAL: Usunięcie paddingu dla wszystkich stron StockBoxx */
.stockboxx-page .page-main,
.stockboxx-page .column.main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* GLOBAL: Full-width layout dla stron StockBoxx */
.stockboxx-page .page-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* -----------------------------------------------------------------------------
   TYPOGRAFIA
----------------------------------------------------------------------------- */
.stockboxx-page h1,
.stockboxx-page h2,
.stockboxx-page h3,
.stockboxx-page h4,
.stockboxx-page h5,
.stockboxx-page h6 {
    font-family: var(--sb-font-family);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sb-green-main);
    margin-top: 0;
}

.stockboxx-page h1 {
    margin-bottom: 24px;
}

.stockboxx-page h2 {
    margin-bottom: 12px;
}

.stockboxx-page h3,
.stockboxx-page h4,
.stockboxx-page h5,
.stockboxx-page h6 {
    margin-bottom: 8px;
}

.sb-heading {
    font-family: var(--sb-font-family);
    font-weight: 800;
}

.sb-section-label {
    font-family: var(--sb-font-family);
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sb-orange);
    margin-bottom: 12px;
}

/* -----------------------------------------------------------------------------
   CONTAINER
----------------------------------------------------------------------------- */
.sb-container {
    width: 100%;
    max-width: var(--sb-container-max);
    margin: 0 auto;
    padding: 0 var(--sb-container-padding);
}

/* -----------------------------------------------------------------------------
   PRZYCISKI
----------------------------------------------------------------------------- */
.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase !important;
    text-decoration: none !important;
    gap: 8px;
    white-space: nowrap;
    padding: 12px 32px; /* py-3 px-8 - default padding */
    border-radius: 10px; /* rounded-[10px] - updated from Loveable */
    font-family: var(--sb-font-family);
    font-size: 15px; /* text-[15px] - updated from Loveable */
    line-height: 1.7; /* gives ~49.5px height with py-3 */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em; /* tracking-[0.04em] - updated from Loveable */
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--sb-transition);
}

.sb-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px var(--sb-orange); /* ring-offset-2 + ring-2 */
}

/* Override Magento Blank link styles for buttons */
a.sb-btn,
a.sb-btn:visited,
a.sb-btn:hover,
a.sb-btn:focus,
a.sb-btn:active {
    text-decoration: none;
    text-transform: none;
}

/* Przyciski zachowują uppercase */
.sb-btn.sb-btn--primary,
.sb-btn.sb-btn--outline,
.sb-btn.sb-btn--green {
    text-transform: uppercase;
}

/* Rozmiary */
.sb-btn--default {
    padding: 10px 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

.sb-btn--lg {
    padding: 14px 32px; /* py-3.5 px-8 */
}

.sb-btn--xl {
    height: 56px;
    padding: 0 48px;
    font-size: 18px;
    line-height: 1.56; /* text-lg */
}

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

/* Warianty */
.sb-btn--primary {
    background-color: var(--sb-orange) !important;
    border: 2px solid var(--sb-orange) !important;
    color: #FFFFFF !important;
}

.sb-btn--primary:hover,
.sb-btn--primary:focus,
.sb-btn--primary:active {
    background-color: var(--sb-orange-hover) !important;
    border: 2px solid var(--sb-orange-hover) !important;
    box-shadow: var(--sb-shadow-lg);
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.sb-btn--outline {
    background-color: transparent !important;
    border: 2px solid var(--sb-green-main) !important;
    color: var(--sb-green-main) !important;
}

.sb-btn--outline:visited {
    color: var(--sb-green-main) !important;
}

.sb-btn--outline:hover,
.sb-btn--outline:focus,
.sb-btn--outline:active {
    background-color: var(--sb-green-main) !important;
    color: #FFFFFF !important;
}

/* Variant: Green (bg-foreground) - added from Loveable */
.sb-btn--green {
    background-color: var(--sb-green-main) !important;
    color: #FFFFFF !important;
}

.sb-btn--green:visited {
    color: #FFFFFF !important;
}

.sb-btn--green:hover,
.sb-btn--green:focus,
.sb-btn--green:active {
    background-color: var(--sb-green-dark) !important;
    color: #FFFFFF !important;
}

.sb-btn--outline-white {
    background-color: transparent !important;
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
}

.sb-btn--outline-white:visited {
    color: #FFFFFF !important;
}

.sb-btn--outline-white:hover,
.sb-btn--outline-white:focus,
.sb-btn--outline-white:active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
}

.sb-btn--round {
    border-radius: var(--sb-radius-full);
    text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   KARTY
----------------------------------------------------------------------------- */
.sb-card {
    background-color: var(--sb-card-bg);
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-lg);
    overflow: hidden;
    transition: all var(--sb-transition);
}

.sb-card:hover {
    border-color: var(--sb-orange);
    transform: translateY(-4px);
    box-shadow: var(--sb-shadow-orange);
}

.sb-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sb-card__body {
    padding: 28px;
}

/* -----------------------------------------------------------------------------
   BADGE / TAG
----------------------------------------------------------------------------- */
.sb-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    padding: 4px 12px;
    font-size: 11px;
    line-height: 1.33; /* text-xs */
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--sb-radius-full);
}

.sb-badge--orange {
    background-color: rgba(240, 102, 10, 0.1);
    color: var(--sb-orange);
}

.sb-badge--green {
    background-color: rgba(21, 61, 68, 0.1);
    color: var(--sb-green-main);
}

.sb-badge--white {
    background-color: var(--sb-card-bg);
    color: var(--sb-card-foreground);
}

.sb-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 11px;
    line-height: 1.33; /* text-xs */
    font-weight: 600;
    background-color: rgba(21, 61, 68, 0.05);
    color: var(--sb-green-main);
    border-radius: var(--sb-radius-full);
}

/* -----------------------------------------------------------------------------
   HEADER
----------------------------------------------------------------------------- */

/* Override Magento .page-header on mobile */
@media (max-width: 767px) {
    .page-header {
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }
}

.sb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--sb-off-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--sb-transition);
}

.sb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.sb-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sb-header__logo img {
    height: 48px;
    width: auto;
}

.sb-header__nav {
    display: none;
    align-items: center;
    gap: 28px;
}

@media (min-width: 1024px) {
    .sb-header__nav {
        display: flex;
    }
}

.sb-header__nav-link {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    font-weight: 500;
    color: var(--sb-green-main);
    text-decoration: none;
    transition: color var(--sb-transition);
}

.sb-header__nav-link:visited {
    color: var(--sb-green-main);
}

.sb-header__nav-link:hover {
    color: var(--sb-orange);
    text-decoration: none;
}

.sb-header__actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .sb-header__actions {
        display: flex;
    }
}

.sb-header__bcorp {
    height: 44px;
    width: auto;
    filter: brightness(0);
}

.sb-header__separator {
    font-size: 20px;
    color: var(--sb-gray-light);
    user-select: none;
    line-height: 1;
}

/* Przycisk w header - zachowaj oryginalny kolor i bez uppercase */
.sb-header__actions .sb-btn--primary,
.sb-header__actions .sb-btn--primary:visited {
    background-color: var(--sb-orange) !important;
    color: #FFFFFF !important;
}

.sb-header__actions .sb-btn--primary:hover,
.sb-header__actions .sb-btn--primary:focus,
.sb-header__actions .sb-btn--primary:active {
    background-color: var(--sb-orange-hover) !important;
    color: #FFFFFF !important;
}

.sb-header__lang-switcher {
    position: relative;
}

.sb-header__lang-trigger {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--sb-gray) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: color var(--sb-transition) !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: normal !important;
}

.sb-header__lang-trigger:hover,
.sb-header__lang-trigger:focus,
.sb-header__lang-trigger:active {
    color: var(--sb-green-main) !important;
    background: none !important;
    box-shadow: none !important;
}

.sb-header__lang-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.sb-header__lang-trigger.active svg {
    transform: rotate(180deg);
}

.sb-header__lang-flag {
    font-size: 16px;
    line-height: 1;
}

.sb-header__lang-code {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
}

.sb-header__lang-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #FFFFFF !important;
    border-radius: var(--sb-radius-sm);
    box-shadow: var(--sb-shadow-lg);
    z-index: 200;
    min-width: 140px;
    padding: 4px 0;
    animation: sbFadeIn 0.2s ease;
}

@keyframes sbFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sb-header__lang-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    line-height: 1.43 !important; /* text-sm */
    color: var(--sb-green-main) !important;
    text-decoration: none !important;
    transition: background-color var(--sb-transition) !important;
    background: none !important;
}

.sb-header__lang-option:hover,
.sb-header__lang-option:focus {
    background-color: var(--sb-off-white) !important;
    color: var(--sb-green-main) !important;
    text-decoration: none !important;
}

.sb-header__lang-option--active {
    color: var(--sb-orange) !important;
    font-weight: 600 !important;
}

.sb-header__lang-option--active:hover,
.sb-header__lang-option--active:focus {
    background-color: transparent !important;
    color: var(--sb-orange) !important;
    cursor: default;
}

/* Header scrolled state */
.sb-header--scrolled {
    box-shadow: var(--sb-shadow-md);
    background-color: rgba(243, 238, 229, 0.98);
}

/* Mobile menu button */
.sb-header__mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    color: var(--sb-green-main);
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.sb-header__mobile-btn:hover,
.sb-header__mobile-btn:focus,
.sb-header__mobile-btn:active {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.sb-header__mobile-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .sb-header__mobile-btn {
        display: none;
    }
}

/* Mobile menu */
.sb-header__mobile-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--sb-off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--sb-shadow-lg);
    z-index: 99;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.sb-header__mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5; /* text-base */
    font-weight: 500;
    color: var(--sb-green-main);
    cursor: pointer;
}

.sb-header__mobile-accordion-trigger svg {
    width: 20px;
    height: 20px;
    transition: transform var(--sb-transition);
}

.sb-header__mobile-accordion-trigger.active svg {
    transform: rotate(180deg);
}

.sb-header__mobile-accordion-content {
    padding-bottom: 16px;
}

/* Mega Menu Trigger (przycisk Oferta) */
.sb-header__mega-trigger {
    position: relative;
}

.sb-header__mega-trigger button.sb-header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--sb-green-main);
    cursor: pointer;
    transition: color var(--sb-transition);
}

.sb-header__mega-trigger button.sb-header__nav-link:hover,
.sb-header__mega-trigger.active button.sb-header__nav-link {
    color: var(--sb-orange);
    text-decoration: none;
}

.sb-header__mega-trigger button.sb-header__nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--sb-transition);
}

.sb-header__mega-trigger.active button.sb-header__nav-link svg {
    transform: rotate(180deg);
}

/* Mega Menu */
.sb-mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background-color: #FFFFFF;
    z-index: 101;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 16px 16px;
}

.sb-mega-menu--open {
    display: block;
    animation: sb-fade-in 0.2s ease;
}

@keyframes sb-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sb-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px 0;
}

.sb-mega-menu__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sb-mega-menu__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background-color: rgba(240, 102, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sb-orange);
}

.sb-mega-menu__icon svg {
    width: 20px;
    height: 20px;
}

.sb-mega-menu__categories-wrapper {
    background-color: var(--sb-off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0 0 16px 16px;
}

.sb-mega-menu__categories {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: var(--sb-container-max);
    margin: 0 auto;
    padding: 12px var(--sb-container-padding);
}

.sb-mega-menu__cat-label {
    font-size: 11px;
    line-height: 1.33; /* text-xs */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sb-gray);
}

.sb-mega-menu__cat-link {
    display: inline-flex;
    padding: 4px 14px;
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-green-main);
    background-color: #FFFFFF;
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-full);
    text-decoration: none;
    transition: all var(--sb-transition);
}

.sb-mega-menu__cat-link:hover,
.sb-mega-menu__cat-link:focus,
.sb-mega-menu__cat-link:active {
    border-color: var(--sb-orange);
    color: var(--sb-orange);
    text-decoration: none !important;
}

/* -----------------------------------------------------------------------------
   TICKER BAR
----------------------------------------------------------------------------- */
.sb-ticker {
    background-color: var(--sb-green-main);
    height: 36px;
    overflow: hidden;
}

.sb-ticker__content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: sb-marquee 40s linear infinite;
}

.sb-ticker__text {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sb-orange);
}

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

/* -----------------------------------------------------------------------------
   HERO SECTION
   Konwersja z Loveable HeroSection.tsx - 3 karty formatów
----------------------------------------------------------------------------- */
.sb-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--sb-green-main);
    padding: 80px 0; /* py-20 */
}

.sb-hero__circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.sb-hero__inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: #FFFFFF;
}

/* Centered header */
.sb-hero__header {
    text-align: center;
    margin-bottom: 48px; /* mb-12 */
}

.sb-hero__title {
    font-size: clamp(28px, 5vw, 72px);
    line-height: 0.95;
    color: #FFFFFF !important;
    margin-bottom: 16px; /* mb-4 */
    white-space: nowrap;
}

@media (max-width: 767px) {
    .sb-hero__title {
        font-size: clamp(40px, 6vw, 72px);
        white-space: normal;
    }

    .sb-hero__title .sb-text-orange {
        display: block;
    }

    .sb-hero__subtitle {
        font-size: 18px;
    }
}

.sb-hero__subtitle {
    font-size: 24px; /* text-2xl */
    line-height: 1.33;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (min-width: 768px) {
    .sb-hero__subtitle {
        font-size: 25px;
        line-height: 1.27;
    }
}

/* Three format cards grid */
.sb-hero__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px; /* gap-5 */
    max-width: 1024px; /* max-w-5xl */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sb-hero__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.sb-hero__card {
    background-color: var(--sb-card-bg);
    border: 1px solid var(--sb-gray-light);
    border-radius: 16px; /* rounded-2xl */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-hero__card:hover {
    border-color: var(--sb-orange);
    transform: translateY(-4px);
    box-shadow: var(--sb-shadow-orange); /* 0 8px 30px rgba(240, 102, 10, 0.12) */
}

/* Card image */
.sb-hero__card-image {
    position: relative;
    height: 200px; /* h-[200px] - updated from Loveable */
    overflow: hidden;
}

.sb-hero__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Size badge (S, M, XL) - circular badges from Loveable */
.sb-hero__card-size {
    position: absolute;
    top: 12px; /* top-3 */
    right: 12px; /* right-3 */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 900; /* font-black */
    color: #FFFFFF;
    background-color: var(--sb-orange); /* default, overridden by inline style */
    border-radius: 9999px; /* rounded-full */
}

/* Size badge colors per format - updated from Loveable */
.sb-hero__card-size--s { background-color: #E85A1E; }
.sb-hero__card-size--m { background-color: #1A6B8A; }
.sb-hero__card-size--xl { background-color: #6B4A1A; }

/* Card body */
.sb-hero__card-body {
    padding: 28px; /* p-7 */
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sb-hero__card-title {
    font-size: 36px; /* text-4xl */
    line-height: 1.22;
    color: var(--sb-green-main) !important;
    margin-bottom: 8px; /* mb-2 */
}

.sb-hero__card-desc {
    font-size: 14px; /* text-sm */
    line-height: 1.43;
    color: var(--sb-gray);
    margin-bottom: 16px; /* mb-4 */
    min-height: 80px; /* min-h-[80px] - for equal card heights */
}

/* Tags */
.sb-hero__card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* items-start - updated from Loveable */
    gap: 6px; /* gap-1.5 */
    margin-bottom: 20px; /* mb-5 */
    min-height: 60px; /* min-h-[60px] - for equal card heights */
}

.sb-hero__card-tag {
    font-size: 11px;
    line-height: 1.33;
    font-weight: 600;
    color: var(--sb-green-main);
    background-color: rgba(21, 61, 68, 0.05); /* bg-foreground/5 */
    padding: 4px 12px; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
}

/* Card button - full width, mt-auto pushes to bottom */
.sb-hero__card-body .sb-btn {
    margin-top: auto;
    width: 100%;
}

/* -----------------------------------------------------------------------------
   BRANDS SECTION
----------------------------------------------------------------------------- */
.sb-brands {
    background-color: var(--sb-off-white); /* #F7F0EA */
    border-top: 1px solid var(--sb-gray-light);
    border-bottom: 1px solid var(--sb-gray-light);
    padding: 64px 0;
    text-align: center;
}

.sb-brands__title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 8px;
}

.sb-brands__subtitle {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
    margin-bottom: 32px;
}

.sb-brands__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.sb-brands__item {
    padding: 8px 16px;
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--sb-green-main); /* text-foreground */
    background-color: hsl(37, 26%, 90%); /* bg-secondary #F7F4F0 */
    border: 1px solid var(--sb-gray-light);
    border-radius: 6px; /* rounded-md */
    transition: all var(--sb-transition);
    cursor: pointer;
}

.sb-brands__item:hover {
    border-color: var(--sb-orange);
    color: var(--sb-orange);
}

.sb-brands__cta {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
}

.sb-brands__cta a {
    color: var(--sb-orange);
    font-weight: 700;
    text-decoration: none;
}

.sb-brands__cta a:hover {
    text-decoration: underline;
}

/* -----------------------------------------------------------------------------
   PURCHASE FORMATS SECTION
----------------------------------------------------------------------------- */
.sb-formats {
    background-color: var(--sb-off-white);
    padding: 96px 0;
}

.sb-formats__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-formats__title {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 12px;
}

.sb-formats__subtitle {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
    max-width: 520px;
    margin: 0 auto;
}

.sb-formats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.sb-formats__card {
    background-color: var(--sb-card-bg);
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--sb-transition);
}

.sb-formats__card:hover {
    border-color: var(--sb-orange);
    transform: translateY(-4px);
    box-shadow: var(--sb-shadow-orange);
}

.sb-formats__image {
    position: relative;
    height: 200px; /* h-[200px] - updated from Loveable */
}

.sb-formats__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sb-formats__size-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 900; /* font-black */
    color: #FFFFFF;
    background-color: var(--sb-orange); /* default, overridden by inline style */
    border-radius: 9999px; /* rounded-full */
}

/* Size badge colors per format - updated from Loveable */
.sb-formats__size-badge--s { background-color: #E85A1E; }
.sb-formats__size-badge--m { background-color: #1A6B8A; }
.sb-formats__size-badge--xl { background-color: #6B4A1A; }

.sb-formats__body {
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sb-formats__name.sb-heading {
    font-size: 36px;
    line-height: 1;
    margin: 0;
    margin-bottom: 8px;
}

.sb-formats__desc {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
    margin: 0 0 16px 0;
    min-height: 80px; /* min-h-[80px] - for equal card heights */
}

.sb-formats__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* items-start - updated from Loveable */
    gap: 6px;
    margin-bottom: 20px;
    min-height: 60px; /* min-h-[60px] - for equal card heights */
}

.sb-formats__body .sb-btn {
    margin-top: auto;
}

/* -----------------------------------------------------------------------------
   PRODUCTS SECTION
----------------------------------------------------------------------------- */
.sb-products {
    background-color: #FFFFFF;
    padding: 96px 0;
}

.sb-products__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-products__title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 12px;
}

.sb-products__subtitle {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
}

.sb-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.sb-product-card {
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-lg);
    overflow: hidden;
    background-color: var(--sb-card-bg);
    transition: all var(--sb-transition);
}

.sb-product-card:hover {
    border-color: var(--sb-orange);
    transform: translateY(-4px);
    box-shadow: var(--sb-shadow-orange);
}

.sb-product-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sb-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sb-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 600;
    color: var(--sb-card-foreground);
    background-color: var(--sb-card-bg);
    border-radius: var(--sb-radius-sm);
}

.sb-product-card__body {
    padding: 20px;
}

.sb-product-card__name {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
    color: var(--sb-card-foreground);
    margin-bottom: 12px;
}

.sb-product-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.sb-product-card__meta-item label {
    display: block;
    font-size: 11px;
    line-height: 1.33; /* text-xs */
    text-transform: uppercase;
    color: var(--sb-gray);
}

.sb-product-card__meta-item span {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
}

.sb-product-card__price {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
    color: var(--sb-orange);
}

/* Flexbox layout for product cards - updated from Loveable */
.sb-product-card--flex {
    display: flex;
    flex-direction: column;
}

.sb-product-card__body--flex {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sb-product-card__price--bottom {
    margin-top: auto;
}

/* -----------------------------------------------------------------------------
   VIDEO SECTION
----------------------------------------------------------------------------- */
.sb-video {
    background-color: var(--sb-off-white);
    padding: 96px 0;
}

.sb-video__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-video__title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 12px;
}

.sb-video__subtitle {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
    max-width: 520px;
    margin: 0 auto;
}

.sb-video__player {
    position: relative;
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: var(--sb-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.sb-video__thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.sb-video__thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sb-video__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000000;
}

.sb-video__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.sb-video__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sb-video__play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--sb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(240, 102, 10, 0.4);
    transition: transform var(--sb-transition);
    margin-bottom: 16px;
}

.sb-video__play-btn:hover {
    transform: scale(1.1);
}

.sb-video__play-btn svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
    margin-left: 4px;
}

.sb-video__play-title {
    font-size: 20px;
    line-height: 1.4; /* text-xl */
    color: #FFFFFF;
    letter-spacing: 3px;
}

.sb-video__play-duration {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: rgba(255, 255, 255, 0.6);
}

.sb-video__badges {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-video__badge {
    font-size: 11px;
    line-height: 1.33; /* text-xs */
    font-weight: 700;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: var(--sb-radius-sm);
}

.sb-video__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sb-video__card {
    background-color: var(--sb-card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.sb-video__card-icon {
    color: var(--sb-orange);
    margin-bottom: 12px;
}

.sb-video__card-icon svg {
    margin: 0 auto;
}

.sb-video__card-title {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
    color: var(--sb-green-main);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.sb-video__card-desc {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
}

@media (max-width: 767px) {
    .sb-video__player {
        aspect-ratio: 16 / 15;
    }
}

/* -----------------------------------------------------------------------------
   COMPARISON SECTION
----------------------------------------------------------------------------- */
.sb-comparison {
    background-color: #FFFFFF;
    padding: 96px 0;
}

.sb-comparison__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-comparison__title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 12px;
}

.sb-comparison__subtitle {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
}

.sb-comparison__table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.sb-comparison__table table {
    width: 100%;
    border-collapse: collapse;
}

.sb-comparison__table th {
    padding: 16px;
    border-bottom: 2px solid;
    text-align: center;
}

.sb-comparison__table th:first-child {
    text-align: left;
    border-color: var(--sb-green-main);
}

.sb-comparison__table th:nth-child(2) {
    background-color: var(--sb-orange-pale);
    border-color: var(--sb-orange);
}

.sb-comparison__table th:nth-child(2) span {
    font-size: 20px;
    line-height: 1.4; /* text-xl */
    color: var(--sb-orange);
}

.sb-comparison__table th:nth-child(3) {
    border-color: var(--sb-gray-light);
}

.sb-comparison__table th:nth-child(3) span {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
    color: var(--sb-gray);
    text-transform: uppercase;
}

.sb-comparison__table td {
    padding: 16px;
    border-bottom: 1px solid var(--sb-gray-light);
}

.sb-comparison__table td:first-child {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-card-foreground);
}

.sb-comparison__table td:nth-child(2) {
    background-color: var(--sb-orange-pale);
    text-align: center;
}

.sb-comparison__table td:nth-child(3) {
    text-align: center;
}

.sb-comparison__check {
    width: 20px;
    height: 20px;
    color: var(--sb-orange);
}

.sb-comparison__check--dark {
    color: var(--sb-green-main);
}

.sb-comparison__x {
    width: 20px;
    height: 20px;
    color: var(--sb-green-main) !important;
    stroke: var(--sb-green-main) !important;
}

.sb-comparison__partial {
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    color: var(--sb-gray);
}

/* -----------------------------------------------------------------------------
   SOCIAL PROOF SECTION (STATS)
----------------------------------------------------------------------------- */
.sb-stats {
    background-color: var(--sb-green-main);
    padding: 70px 0;
}

.sb-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .sb-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sb-stats__value {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    color: var(--sb-orange);
    line-height: 1;
    margin: 0;
}

.sb-stats__label {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 0 0;
}

/* -----------------------------------------------------------------------------
   HOW TO START SECTION
----------------------------------------------------------------------------- */
.sb-howto {
    background-color: #FFFFFF;
    padding: 96px 0;
}

.sb-howto__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-howto__title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 12px;
}

.sb-howto__title span {
    color: var(--sb-orange);
}

.sb-howto__subtitle {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
}

.sb-howto__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.sb-howto__step {
    background-color: var(--sb-off-white);
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-lg);
    padding: 36px;
    text-align: center;
}

.sb-howto__step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--sb-orange);
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sb-howto__step-title {
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
    color: var(--sb-green-main);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.sb-howto__step-desc {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
}

.sb-howto__cta {
    text-align: center;
}

/* -----------------------------------------------------------------------------
   ZERO WASTE SECTION
----------------------------------------------------------------------------- */
.sb-zerowaste {
    position: relative;
    overflow: hidden;
    background-color: #F2EDE6;
    padding: 96px 0;
}

.sb-zerowaste__texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    pointer-events: none;
}

.sb-zerowaste__inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.sb-zerowaste__content {
    min-width: 320px;
    max-width: 500px;
}

.sb-zerowaste__label {
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(21, 61, 68, 0.6);
    margin-bottom: 12px;
}

.sb-zerowaste__title {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.sb-zerowaste__title span {
    color: var(--sb-orange);
}

.sb-zerowaste__desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(21, 61, 68, 0.75);
    max-width: 480px;
    margin-bottom: 24px;
}

.sb-zerowaste__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.sb-zerowaste__tag {
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 600;
    color: var(--sb-green-main);
    background-color: rgba(21, 61, 68, 0.1);
    padding: 6px 12px;
    border-radius: var(--sb-radius-full);
}

.sb-zerowaste__card {
    flex-shrink: 0;
    width: 100%;
    max-width: 340px;
    background-color: var(--sb-card-bg);
    border-radius: var(--sb-radius-lg);
    padding: 40px;
    box-shadow: var(--sb-shadow-lg);
    text-align: center;
}

.sb-zerowaste__card-value {
    font-size: 64px;
    font-weight: 800;
    color: var(--sb-orange);
    line-height: 1;
    margin: 0;
}

.sb-zerowaste__card-label {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 8px 0 24px 0;
}

.sb-zerowaste__card-divider {
    border-top: 1px solid var(--sb-gray-light);
    padding-top: 24px;
}

.sb-zerowaste__card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sb-zerowaste__card-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--sb-green-main);
    line-height: 1;
    margin: 0;
}

.sb-zerowaste__card-stat-label {
    font-size: 11px;
    line-height: 1.33; /* text-xs */
    color: var(--sb-gray);
    text-transform: uppercase;
    margin: 4px 0 0 0;
}

/* -----------------------------------------------------------------------------
   FAQ SECTION
----------------------------------------------------------------------------- */
.sb-faq {
    background-color: var(--sb-off-white);
    padding: 96px 0;
}

.sb-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-faq__title {
    font-size: clamp(32px, 4vw, 52px);
}

.sb-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.sb-faq__item {
    border-bottom: 1px solid var(--sb-gray-light);
}

.sb-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0; /* py-5 */
    background: none !important;
    border: none !important;
    cursor: pointer;
    text-align: left;
    font-family: var(--sb-font-family);
}

.sb-faq__question:hover,
.sb-faq__question:focus,
.sb-faq__question:active {
    background: none !important;
    color: inherit !important;
    box-shadow: none !important;
}

.sb-faq__question-text {
    font-family: var(--sb-font-family);
    font-size: 16px;
    line-height: 1.5; /* text-base */
    font-weight: 700;
    color: var(--sb-green-main);
    padding-right: 16px;
}

.sb-faq__icon {
    color: var(--sb-orange);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.sb-faq__item.active .sb-faq__icon {
    transform: rotate(45deg);
}

.sb-faq__icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.sb-faq__item.active .sb-faq__icon svg {
    transform: rotate(180deg);
}

.sb-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sb-faq__item.active .sb-faq__answer {
    max-height: 300px;
}

.sb-faq__answer-text {
    font-family: var(--sb-font-family);
    font-size: 15px;
    color: var(--sb-gray);
    line-height: 1.6;
    padding-bottom: 20px;
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS SECTION
----------------------------------------------------------------------------- */
.sb-testimonials {
    background-color: #FFFFFF;
    padding: 96px 0;
}

.sb-testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.sb-testimonials__title {
    font-size: clamp(32px, 4vw, 52px);
}

.sb-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.sb-testimonial {
    background-color: var(--sb-card-bg);
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.sb-testimonial__stars {
    font-size: 16px;
    line-height: 1.5; /* text-base */
    color: var(--sb-orange);
    letter-spacing: 0.1em;
    margin: 0 0 16px 0;
}

.sb-testimonial__text {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex: 1;
}

.sb-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.sb-testimonial__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--sb-green-main);
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-testimonial__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--sb-green-main);
    margin: 0;
}

.sb-testimonial__country {
    font-size: 12px;
    line-height: 1.3;
    color: var(--sb-gray);
    margin: 0;
}

.sb-testimonials__footer {
    text-align: center;
    font-size: 14px;
    color: var(--sb-gray);
}

.sb-testimonials__footer span {
    font-weight: 700;
    color: var(--sb-green-main);
}

/* -----------------------------------------------------------------------------
   CTA SECTION
----------------------------------------------------------------------------- */
.sb-cta {
    position: relative;
    overflow: hidden;
    background-color: var(--sb-green-main);
    padding: 96px 0;
}

.sb-cta__decor {
    position: absolute;
    border: 2px solid rgba(240, 102, 10, 0.1);
}

.sb-cta__decor--1 {
    width: 160px;
    height: 160px;
    top: 40px;
    right: 80px;
    transform: rotate(12deg);
}

.sb-cta__decor--2 {
    width: 224px;
    height: 224px;
    bottom: 40px;
    left: 80px;
    transform: rotate(-12deg);
}

.sb-cta__inner {
    position: relative;
    z-index: 10;
    text-align: center;
}

.sb-cta__title {
    font-size: clamp(36px, 5vw, 60px);
    color: #FFFFFF !important;
    line-height: 1;
    margin-bottom: 24px;
}

.sb-cta__title span {
    color: var(--sb-orange) !important;
}

.sb-cta__desc {
    font-size: 16px;
    line-height: 1.5; /* text-base */
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
}

.sb-cta__note {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

/* -----------------------------------------------------------------------------
   AWARDS BAR
----------------------------------------------------------------------------- */
.sb-awards {
    background-color: var(--sb-green-main);
    padding: 24px 0;
}

.sb-awards__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .sb-awards__list {
        gap: 64px;
    }
}

.sb-awards__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.sb-awards__item svg {
    width: 28px;
    height: 28px;
}

.sb-awards__item span {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* -----------------------------------------------------------------------------
   FOOTER
----------------------------------------------------------------------------- */
.sb-footer {
    background-color: var(--sb-footer-bg);
    color: #FFFFFF;
    padding: 64px 0 32px;
}

.sb-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .sb-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    }
}

.sb-footer__logo {
    margin-bottom: 16px;
}

.sb-footer__logo a {
    text-decoration: none !important;
}

.sb-footer__logo a:hover {
    text-decoration: none !important;
}

.sb-footer__logo img {
    height: 48px;
    width: auto;
}

.sb-footer__desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.sb-footer__social {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.sb-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 9999px; /* rounded-full */
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all var(--sb-transition);
    cursor: pointer;
}

.sb-footer__social-link:hover,
.sb-footer__social-link:focus,
.sb-footer__social-link:active {
    background-color: var(--sb-orange) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* Inactive social link (e.g. TikTok - coming soon) */
.sb-footer__social-link--inactive {
    cursor: default !important;
}

.sb-footer__social-link--inactive:hover,
.sb-footer__social-link--inactive:focus,
.sb-footer__social-link--inactive:active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.sb-footer__tagline {
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 500;
    color: var(--sb-orange);
    margin: 0;
}

.sb-footer__heading {
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF !important;
    margin: 0 0 16px 0 !important;
}

.sb-footer__links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sb-footer__links li {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}

.sb-footer__links li:last-child {
    margin-bottom: 0 !important;
}

.sb-footer__links a {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color var(--sb-transition);
}

.sb-footer__links a:hover,
.sb-footer__links a:focus,
.sb-footer__links a:active {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.sb-footer__company {
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 4px 0;
}

.sb-footer__address {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.sb-footer__newsletter-desc {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.sb-footer__newsletter-form {
    display: flex;
    gap: 8px;
    margin: 0 0 16px 0;
}

.sb-footer__newsletter-input {
    flex: 1;
    padding: 10px 16px !important;
    font-size: 14px !important;
    color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--sb-radius-sm) !important;
    height: auto !important;
    line-height: normal !important;
}

.sb-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.sb-footer__newsletter-input:focus {
    outline: none !important;
    border-color: var(--sb-orange) !important;
    box-shadow: none !important;
}

.sb-footer__newsletter-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
    background-color: var(--sb-orange) !important;
    border: none !important;
    border-radius: var(--sb-radius-sm) !important;
    cursor: pointer;
    transition: background-color var(--sb-transition);
    line-height: normal !important;
    height: auto !important;
}

.sb-footer__newsletter-btn:hover,
.sb-footer__newsletter-btn:focus,
.sb-footer__newsletter-btn:active {
    background-color: var(--sb-orange-hover) !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}

.sb-footer__warehouse {
    font-size: 12px;
    line-height: 1.33; /* text-xs */
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.sb-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .sb-footer__bottom {
        flex-direction: row;
    }
}

.sb-footer__copyright,
.sb-footer__slogan {
    font-size: 13px;
    line-height: 1.43; /* text-sm */
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* -----------------------------------------------------------------------------
   WHATSAPP FLOAT
----------------------------------------------------------------------------- */
.sb-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
}

.sb-whatsapp__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--sb-transition);
}

.sb-whatsapp__btn:hover {
    transform: scale(1.1);
}

.sb-whatsapp__btn svg {
    width: 28px;
    height: 28px;
    fill: #FFFFFF;
}

.sb-whatsapp__tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 500;
    color: var(--sb-card-foreground);
    background-color: #FFFFFF;
    border-radius: var(--sb-radius-sm);
    box-shadow: var(--sb-shadow-lg);
    white-space: nowrap;
    animation: sb-fade-in 0.2s ease;
}

/* -----------------------------------------------------------------------------
   ANIMATIONS
----------------------------------------------------------------------------- */
@keyframes sb-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sb-animate-fade-in {
    animation: sb-fade-in 0.5s ease forwards;
}

/* -----------------------------------------------------------------------------
   UTILITY CLASSES
----------------------------------------------------------------------------- */
.sb-text-orange { color: var(--sb-orange) !important; }

.sb-text-center { text-align: center; }
.sb-text-left { text-align: left; }
.sb-text-right { text-align: right; }
.sb-text-uppercase { text-transform: uppercase; }

.sb-mt-0 { margin-top: 0; }
.sb-mt-4 { margin-top: 16px; }
.sb-mt-8 { margin-top: 32px; }
.sb-mt-10 { margin-top: 40px; }
.sb-mt-12 { margin-top: 48px; }

.sb-mb-0 { margin-bottom: 0; }
.sb-mb-4 { margin-bottom: 16px; }
.sb-mb-8 { margin-bottom: 32px; }
.sb-mb-12 { margin-bottom: 48px; }

.sb-hidden { display: none; }

@media (min-width: 768px) {
    .sb-md-block { display: block; }
    .sb-md-flex { display: flex; }
}

@media (min-width: 1024px) {
    .sb-lg-block { display: block; }
    .sb-lg-flex { display: flex; }
}

/* -----------------------------------------------------------------------------
   FORMS - Customer Address
----------------------------------------------------------------------------- */
.sb-form {
    max-width: 600px;
    margin: 0 auto;
}

.sb-form .legend {
    font-family: var(--sb-font-family);
    font-size: 24px;
    line-height: 1.33; /* text-2xl */
    font-weight: 700;
    color: var(--sb-green-main);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sb-gray-light);
}

.sb-form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sb-form__label {
    font-family: var(--sb-font-family);
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 600;
    color: var(--sb-green-main);
}

.sb-form .field .control input.input-text,
.sb-form .field .control select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sb-font-family);
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-card-foreground);
    background-color: #FFFFFF;
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-sm);
    transition: border-color var(--sb-transition), box-shadow var(--sb-transition);
}

.sb-form .field .control input.input-text:focus,
.sb-form .field .control select:focus {
    outline: none;
    border-color: var(--sb-orange);
    box-shadow: 0 0 0 3px rgba(240, 102, 10, 0.1);
}

.sb-form .field.required > .label span::after {
    content: ' *';
    color: var(--sb-orange);
}

.sb-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--sb-gray-light);
}

/* -----------------------------------------------------------------------------
   RADIO GROUP - Customer Type Toggle
----------------------------------------------------------------------------- */
.sb-customer-type {
    margin-bottom: 8px;
}

.sb-radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sb-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background-color: #FFFFFF;
    border: 2px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-sm);
    cursor: pointer;
    transition: all var(--sb-transition);
    flex: 1;
    min-width: 140px;
}

.sb-radio:hover {
    border-color: var(--sb-orange);
}

.sb-radio--active {
    border-color: var(--sb-orange);
    background-color: var(--sb-orange-pale);
}

.sb-radio__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sb-radio__indicator {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--sb-gray-light);
    border-radius: 50%;
    position: relative;
    transition: all var(--sb-transition);
}

.sb-radio--active .sb-radio__indicator {
    border-color: var(--sb-orange);
}

.sb-radio--active .sb-radio__indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--sb-orange);
    border-radius: 50%;
}

.sb-radio__label {
    font-family: var(--sb-font-family);
    font-size: 14px;
    line-height: 1.43; /* text-sm */
    font-weight: 600;
    color: var(--sb-green-main);
}

/* -----------------------------------------------------------------------------
   MESSAGES
----------------------------------------------------------------------------- */
.sb-message {
    padding: 16px 20px;
    border-radius: var(--sb-radius-sm);
    font-family: var(--sb-font-family);
    font-size: 14px;
    line-height: 1.43; /* text-sm */
}

.sb-message--info {
    background-color: rgba(21, 61, 68, 0.08);
    color: var(--sb-green-main);
    border: 1px solid rgba(21, 61, 68, 0.15);
}

.sb-message--success {
    background-color: rgba(34, 197, 94, 0.08);
    color: var(--sb-success);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.sb-message--warning {
    background-color: var(--sb-orange-pale);
    color: var(--sb-orange);
    border: 1px solid rgba(240, 102, 10, 0.15);
}

/* -----------------------------------------------------------------------------
   PHONE PREFIX - Telephone with country prefix
----------------------------------------------------------------------------- */
.sb-phone-prefix {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.sb-phone-prefix__select-wrapper {
    flex-shrink: 0;
    min-width: 110px;
}

.sb-phone-prefix__select {
    width: 100%;
    height: 100%;
    padding: 12px 32px 12px 12px;
    font-family: var(--sb-font-family);
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-card-foreground);
    background-color: #FFFFFF;
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-sm);
    cursor: pointer;
    transition: border-color var(--sb-transition), box-shadow var(--sb-transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sb-phone-prefix__select:focus {
    outline: none;
    border-color: var(--sb-orange);
    box-shadow: 0 0 0 3px rgba(240, 102, 10, 0.1);
}

.sb-phone-prefix__input-wrapper {
    flex: 1;
}

.sb-phone-prefix__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sb-font-family);
    font-size: 15px;
    line-height: 1.43; /* text-sm */
    color: var(--sb-card-foreground);
    background-color: #FFFFFF;
    border: 1px solid var(--sb-gray-light);
    border-radius: var(--sb-radius-sm);
    transition: border-color var(--sb-transition), box-shadow var(--sb-transition);
}

.sb-phone-prefix__input:focus {
    outline: none;
    border-color: var(--sb-orange);
    box-shadow: 0 0 0 3px rgba(240, 102, 10, 0.1);
}

/* Responsive - stack on mobile */
@media (max-width: 480px) {
    .sb-phone-prefix {
        flex-direction: column;
        gap: 8px;
    }

    .sb-phone-prefix__select-wrapper {
        min-width: 100%;
    }
}

/* -----------------------------------------------------------------------------
   ACCORDION WIDGET (Amasty FAQ / CMS Widget)
----------------------------------------------------------------------------- */
.accordionWidgetContainer .accordionWidget .accordionWidget_sectionTitle {
    color: var(--sb-green-main);
}

/* -----------------------------------------------------------------------------
   404 NOT FOUND PAGE
----------------------------------------------------------------------------- */
.sb-notfound {
    background-color: var(--sb-green-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
}

.sb-notfound__content {
    max-width: 600px;
    margin: 0 auto;
}

.sb-notfound__code {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    margin: 0 0 -40px 0;
    font-family: var(--sb-font-family);
}

.sb-notfound__title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #FFFFFF !important;
    margin-bottom: 20px;
}

.sb-notfound__title .sb-text-orange {
    display: block;
    margin-top: 8px;
}

.sb-notfound__desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.sb-notfound__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.sb-notfound__buttons .sb-btn {
    border-radius: 9999px;
}

.sb-notfound__links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.sb-notfound__links-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.sb-notfound__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.sb-notfound__links-list li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.sb-notfound__links-list li a:hover {
    color: var(--sb-orange);
}

@media (max-width: 767px) {
    .sb-notfound {
        padding: 60px 0;
    }

    .sb-notfound__code {
        margin-bottom: -20px;
    }

    .sb-notfound__buttons {
        flex-direction: column;
        align-items: center;
    }

    .sb-notfound__buttons .sb-btn {
        width: 100%;
        max-width: 280px;
    }

    .sb-notfound__links-list {
        flex-direction: column;
        gap: 12px;
    }
}
