:root {
    --brand-green: #000000;
    --brand-yellow: #ffe500;
    --brand-dark: #061b33;
    --surface-bg: #f8fafc;
    --surface-white: #ffffff;
    --surface-muted: #f1f5f9;
    --text-body: #0f172a;
    --text-muted: #475569;
    --border-soft: rgba(15, 23, 42, 0.12);
    --border-strong: rgba(6, 27, 51, 0.22);
    --shadow-xs: 0 8px 18px rgba(2, 12, 27, 0.04);
    --shadow-sm: 0 14px 34px rgba(2, 12, 27, 0.08);
    --shadow-md: 0 22px 50px rgba(2, 12, 27, 0.14);
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.6rem;
}

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

* {
    border-color: var(--border-soft);
}

html,
body {
    max-width: 100%;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

body {
    background: linear-gradient(180deg, #f8fafc 0%, #f8fafc 58%, #f4f8fc 100%);
    color: var(--text-body);
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

img,
video {
    height: auto;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: rgba(0, 166, 81, 0.18);
    color: var(--brand-dark);
}

.section-shell {
    margin-inline: auto;
    max-width: 80rem;
    padding-inline: 1rem;
    width: 100%;
}

.section-space {
    padding-block: 3.5rem;
}

.section-space-sm {
    padding-block: 2.6rem;
}

.section-space-lg {
    padding-block: 5rem;
}

.category-section {
    --category-section-bg: #f3f4f6;
    --category-card-bg: #ffffff;
    --category-card-border: rgba(15, 23, 42, 0.08);
    --category-card-hover-border: rgba(0, 166, 81, 0.25);
    --category-image-bg: #f8fafc;
    --category-text-main: #0f172a;
    --category-text-muted: #64748b;
    --category-action-bg: #00a651;
    --category-action-hover-bg: #009447;
    --category-action-text: #ffffff;
    --category-explore-bg: #000000;
    --category-explore-hover-bg: #111827;
    --category-explore-text: #ffffff;
    --category-card-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    --category-card-hover-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);

    background: var(--category-section-bg);
}

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

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-section__slider {
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 0.1rem;
    scroll-snap-type: x mandatory;
}

.category-section__slide {
    display: flex;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.category-section__slide .category-section__card {
    width: 100%;
}

.category-section__card {
    background: var(--category-card-bg);
    border-color: var(--category-card-border);
    box-shadow: var(--category-card-shadow);
}

.category-section__card:hover {
    border-color: var(--category-card-hover-border);
    box-shadow: var(--category-card-hover-shadow);
}

.category-section__image-box {
    background: var(--category-image-bg);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.category-section__title {
    color: var(--category-text-main);
}

.category-section__muted {
    color: var(--category-text-muted);
}

.category-section__arrow-button {
    background: var(--category-explore-bg);
    color: var(--category-explore-text);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.category-section__arrow-button:hover,
.category-section__card:hover .category-section__arrow-button {
    background: var(--category-explore-hover-bg);
    color: var(--category-explore-text);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.category-section__nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid var(--category-card-border);
    background: var(--category-card-bg);
    color: var(--category-text-main);
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.category-section__nav-button:hover {
    transform: translateY(-1px);
    border-color: var(--category-card-hover-border);
    color: var(--category-action-bg);
}

.category-section__nav-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
}

.category-section .category-section__catalog-button {
    background: var(--category-action-bg);
    border-color: var(--category-action-bg);
    color: var(--category-action-text);
    box-shadow: 0 12px 26px rgba(0, 166, 81, 0.18);
}

.category-section .category-section__catalog-button:hover,
.category-section .category-section__catalog-button:focus-visible {
    background: var(--category-action-hover-bg);
    border-color: var(--category-action-hover-bg);
    color: var(--category-action-text);
    box-shadow: 0 16px 34px rgba(0, 148, 71, 0.25);
}

.shadow-xs {
    box-shadow: var(--shadow-xs);
}

.break-anywhere {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.min-w-safe,
.premium-card,
.premium-card-subtle,
.product-card,
.empty-state,
.table-shell {
    min-width: 0;
}

@media (min-width: 640px) {
    .section-shell {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-shell {
        padding-inline: 2rem;
    }
}

.top-strip {
    background: linear-gradient(90deg, #000000b8, #000000b8);
    color: #ffffff;
    letter-spacing: 0.01em;
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: saturate(1.2) blur(14px);
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.93);
    border-bottom-color: var(--border-soft);
    box-shadow: 0 10px 24px rgba(2, 12, 27, 0.08);
}

.nav-link {
    position: relative;
    color: #0f172a;
    transition: color 0.24s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.38rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--brand-green), #2cd27d);
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--brand-green);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.mobile-nav-link {
    display: block;
    border-radius: 0.9rem;
    padding: 0.62rem 0.78rem;
    color: #1e293b;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background: #f1f5f9;
    color: var(--brand-dark);
    transform: translateX(2px);
}

.mobile-nav-link.is-active {
    background: rgba(0, 166, 81, 0.1);
    color: #04713c;
}

.mobile-menu-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.22s ease, transform 0.28s ease;
}

.mobile-menu-panel.open {
    max-height: 660px;
    opacity: 1;
    transform: translateY(0);
}

.mobile-bottom-nav {
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav-link {
    display: inline-flex;
    min-width: 0;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.05rem;
    color: #2563eb;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-bottom-nav-link svg {
    flex-shrink: 0;
}

.mobile-bottom-nav-link:hover,
.mobile-bottom-nav-link:focus-visible {
    background: #eff6ff;
    color: #2563eb;
}

.mobile-bottom-nav-link.is-active {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.mobile-bottom-nav-link:active {
    transform: scale(1.25);
}

.btn-premium {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    overflow: hidden;
    border-radius: 0.95rem;
    border: 1px solid transparent;
    padding: 0.68rem 1.05rem;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
    min-height: 2.75rem;
    text-align: center;
    white-space: normal;
    transition: transform 0.2s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
    will-change: transform;
}

.btn-ripple {
    position: absolute;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.38);
    transform: scale(0);
    animation: rippleBurst 0.42s ease-out forwards;
    pointer-events: none;
    z-index: -1;
}

.btn-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.34), transparent 56%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.btn-premium:hover {
    transform: translateY(-1px) scale(1.012);
}

.btn-premium:active {
    transform: translateY(0) scale(0.988);
}

.btn-premium:disabled,
.btn-premium[aria-disabled="true"] {
    opacity: 0.52;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-premium:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(125deg, #00a651, #009447);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 166, 81, 0.26);
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(0, 166, 81, 0.32);
}

.btn-dark {
    background: linear-gradient(120deg, #0f223d, #061b33);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(6, 27, 51, 0.26);
}

.btn-dark:hover {
    box-shadow: 0 14px 30px rgba(6, 27, 51, 0.32);
}

.btn-outline {
    border-color: rgba(15, 23, 42, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
}

.btn-outline:hover {
    border-color: rgba(15, 23, 42, 0.35);
    color: #0f172a;
}

.btn-soft {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(120deg, #1fbf5f, #0a9d49);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(10, 157, 73, 0.24);
}

.btn-call {
    background: rgba(6, 27, 51, 0.09);
    border-color: rgba(6, 27, 51, 0.12);
    color: var(--brand-dark);
}

.btn-warning {
    background: rgba(255, 229, 0, 0.8);
    color: #1f2937;
}

.btn-sm {
    padding: 0.54rem 0.84rem;
    font-size: 0.77rem;
}

.btn-md {
    padding: 0.76rem 1.22rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 0.92rem 1.4rem;
    font-size: 0.95rem;
}

.cart-pill {
    border-color: rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-xs);
}

.cart-count-badge {
    min-width: 1.2rem;
    text-align: center;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.88);
}

.premium-card {
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

.premium-card-subtle {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: #f8fafc;
}

.wholesale-access-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.98));
}

.wholesale-access-list {
    list-style: none;
    padding-left: 0;
    line-height: 1.55;
}

.wholesale-access-list li {
    position: relative;
    padding-left: 1.65rem;
}

.wholesale-access-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    background: #00a651;
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.12);
}

.interactive-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.interactive-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 166, 81, 0.28);
    box-shadow: var(--shadow-md);
}

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.98));
    border-color: rgba(15, 23, 42, 0.11);
}

.product-card.interactive-card:hover {
    border-color: rgba(255, 255, 255, 0.562);
    box-shadow: 0 24px 48px rgba(2, 12, 27, 0.16);
}

.showcase-card {
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(34, 197, 94, 0.25);
    background: linear-gradient(180deg, #14532d, #052e16);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 26px 56px rgba(34, 197, 94, 0.25);
}

.showcase-image {
    transition: transform 0.65s ease;
}

.showcase-card:hover .showcase-image {
    transform: scale(1.08);
}

.showcase-overlay {
    background: linear-gradient(
        to top,
        rgba(2, 12, 27, 0.62) 0%,
        rgba(2, 12, 27, 0.32) 38%,
        rgba(2, 12, 27, 0.1) 65%,
        rgba(2, 12, 27, 0.03) 100%
    );
}

.showcase-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    line-height: 0.92;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

@media (min-width: 640px) {
    .showcase-title {
        font-size: 2.35rem;
    }
}

@media (min-width: 1024px) {
    .showcase-title {
        font-size: 3rem;
    }
}

.showcase-title-light {
    color: #f8fafc;
    text-shadow: 0 8px 20px rgba(2, 12, 27, 0.35);
}

.showcase-title-dark {
    color: #020617;
    text-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.best-sellers-track {
    gap: 1rem;
    padding-bottom: 0.35rem;
}

.best-sellers-item {
    scroll-snap-align: start;
}

.best-sellers-controls {
    padding-right: 0.2rem;
}

.best-sellers-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: #0f172a;
    transition: transform 0.2s ease, color 0.2s ease;
}

.best-sellers-arrow:hover {
    transform: translateY(-1px);
    color: #061b33;
}

.best-sellers-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.premium-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    max-width: 100%;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.badge-emerald {
    background: rgba(0, 166, 81, 0.12);
    color: #08773f;
}

.badge-gold {
    background: rgba(255, 229, 0, 0.36);
    color: #615400;
}

.badge-slate {
    background: rgba(15, 23, 42, 0.08);
    color: #334155;
}

.badge-rose {
    background: rgba(244, 63, 94, 0.12);
    color: #be123c;
}

.form-input,
input.form-input,
select.form-input,
textarea.form-input,
input[type="number"],
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    border-radius: 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.17);
    background: #ffffff;
    padding: 0.76rem 0.95rem;
    font-size: 0.9rem;
    color: #0f172a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-input::placeholder,
input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

.form-input:hover,
input:hover,
select:hover,
textarea:hover {
    border-color: rgba(15, 23, 42, 0.28);
}

.form-input:focus,
.form-input:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
    outline: none;
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.15);
}

.form-error {
    border-color: rgba(225, 29, 72, 0.58) !important;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12) !important;
}

.form-help-error {
    font-size: 0.74rem;
    color: #be123c;
}

.hero-surface {
    position: relative;
    isolation: isolate;
}

.home-hero {
    background: linear-gradient(130deg, #ffffff 0%, #ffffff 48%, #ffffff 100%);
}

.hero-section {
    overflow: clip;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 16% 14%, rgb(255, 255, 255), transparent 36%),
        radial-gradient(circle at 85% 76%, rgb(255, 255, 255), transparent 44%),
        linear-gradient(95deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 46%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(0);
    opacity: 0.42;
    pointer-events: none;
}

.home-hero .hero-orb {
    opacity: 0.48;
    mix-blend-mode: screen;
}

.hero-orb--gold {
    width: min(44vw, 420px);
    height: min(44vw, 420px);
    left: -9%;
    top: -24%;
    background: radial-gradient(circle, rgba(255, 229, 0, 0.66) 0%, rgba(255, 229, 0, 0) 70%);
}

.hero-orb--green {
    width: min(46vw, 440px);
    height: min(46vw, 440px);
    right: -14%;
    top: -18%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.62) 0%, rgba(0, 166, 81, 0) 72%);
}

.hero-panel {
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(155deg, rgba(8, 14, 27, 0.74), rgba(8, 14, 27, 0.54));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 42px rgba(2, 12, 27, 0.28);
    backdrop-filter: blur(10px);
}

.home-hero .hero-content.hero-panel {
    background: linear-gradient(155deg, rgba(7, 13, 24, 0.82), rgba(7, 13, 24, 0.58));
}

.hero-image {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-image::before {
    display: none;
}

.hero-slider {
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.hero-slide {
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 10px 22px rgba(2, 12, 27, 0.44));
    transition: opacity 0.68s ease, transform 0.68s ease;
}

.hero-slide.is-active {
    transform: scale(1.008);
}

.hero-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.46rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(2, 8, 18, 0.42);
    padding: 0.34rem 0.56rem;
    backdrop-filter: blur(8px);
}

.hero-dot {
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    border: 0;
    background: rgba(226, 232, 240, 0.52);
    padding: 0;
    cursor: pointer;
    transition: width 0.28s ease, background-color 0.28s ease, opacity 0.28s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.86);
}

.hero-dot.is-active {
    width: 1.28rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(167, 243, 208, 0.96));
}

.hero-feature-item {
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.hero-feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 166, 81, 0.38);
    background: rgba(255, 255, 255, 0.18);
}

.stat-card {
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
}

.section-muted {
    background: linear-gradient(180deg, rgba(240, 244, 248, 0.86), rgba(248, 250, 252, 0.95));
}

.featured-products-section {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.trust-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 166, 81, 0.25);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.9rem;
    color: #04713c;
    background: linear-gradient(140deg, rgba(0, 166, 81, 0.2), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(0, 166, 81, 0.22);
}

.newsletter-panel {
    position: relative;
    isolation: isolate;
    background: linear-gradient(120deg, #0f223d 0%, #0a3a58 48%, #04713c 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 55px rgba(2, 12, 27, 0.28);
}

.newsletter-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 15% 25%, rgba(255, 229, 0, 0.26), transparent 42%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 30%);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 166, 81, 0.42);
    color: #04713c;
    background: rgba(0, 166, 81, 0.08);
}

.carousel-shell {
    position: relative;
}

.carousel-fade {
    position: relative;
}

.carousel-fade::before,
.carousel-fade::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0.5rem;
    z-index: 2;
    width: 48px;
    pointer-events: none;
}

.carousel-fade::before {
    left: -0.1rem;
    background: linear-gradient(to right, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.carousel-fade::after {
    right: -0.1rem;
    background: linear-gradient(to left, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.22rem 0.1rem 0.8rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.2rem;
    -webkit-overflow-scrolling: touch;
}

.carousel-track > * {
    scroll-snap-align: start;
}

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

.carousel-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-control {
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.93);
    color: #1e293b;
    padding: 0.44rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.carousel-control:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.3);
    color: #0f172a;
    box-shadow: var(--shadow-xs);
}

.carousel-control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.brand-logo-marquee {
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.brand-logo-marquee::-webkit-scrollbar {
    display: none;
}

.brand-logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: brandLogoMarquee 26s linear infinite;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .brand-logo-marquee:hover .brand-logo-track {
        animation-play-state: paused;
    }
}

.brand-logo-row {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1.8rem;
    padding-right: 1.8rem;
}

.brand-logo-item {
    list-style: none;
}

.brand-logo-image {
    width: auto;
    min-width: 4.6rem;
    max-width: 9.2rem;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    filter: none !important;
    transition: transform 0.25s ease;
}

.brand-logo-marquee:hover .brand-logo-image {
    opacity: 1;
    filter: none !important;
}

.brand-logo-item:hover .brand-logo-image {
    opacity: 1;
    filter: none !important;
    transform: none;
}

.brand-strip {
    position: relative;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
}

.brand-strip:hover {
    border-color: rgba(0, 166, 81, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.11);
}

.home-brand-row {
    margin-top: -1.1rem;
    position: relative;
    z-index: 25;
}

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

@media (max-width: 1023px) {
    .home-brand-row {
        margin-top: -0.8rem;
    }

    .brand-logo-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 639px) {
    .hero-panel {
        border-radius: 1.2rem;
    }

    .hero-dot.is-active {
        width: 1.06rem;
    }

    .home-brand-row {
        margin-top: -0.45rem;
    }

    .brand-logo-track {
        animation: brandLogoMarquee 22s linear infinite;
    }

    .brand-logo-row {
        gap: 1.2rem;
        padding-right: 1.2rem;
    }

    .brand-logo-row[aria-hidden="true"] {
        display: flex;
    }

    .brand-logo-image {
        min-width: 3.4rem;
        max-width: 7rem;
    }

    .brand-logo-marquee {
        overflow-x: hidden;
        overflow-y: hidden;
        scroll-padding-inline: 0.75rem;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        mask-image: none;
        scrollbar-width: none;
        -webkit-mask-image: none;
    }

    .brand-logo-item {
        scroll-snap-align: start;
    }
}

.brand-logo-image {
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.table-shell {
    overflow-x: auto;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xs);
}

.table-premium {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.86rem;
}

.table-premium thead th {
    border-bottom: 1px solid rgb(255, 255, 255);
    background: #f8fafc;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.table-premium td,
.table-premium th {
    padding: 0.88rem 1rem;
    text-align: left;
}

.table-premium tbody tr {
    transition: background-color 0.2s ease;
}

.table-premium tbody tr:hover {
    background: rgb(255, 255, 255);
}

.row-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.row-lift:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 999px rgb(255, 255, 255);
}

.table-premium tbody tr + tr td {
    border-top: 1px solid rgb(255, 255, 255);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-badge::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.85;
}

.status-pending,
.status-received {
    background: rgba(255, 229, 0, 0.3);
    color: #695d00;
}

.status-in_progress,
.status-diagnosing,
.status-waiting_parts,
.status-repairing {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.status-transferred {
    background: rgba(245, 158, 11, 0.18);
    color: #92400e;
}

.status-unassigned {
    background: rgba(15, 23, 42, 0.08);
    color: #334155;
}

.status-accepted {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.status-ready_pickup,
.status-completed {
    background: rgba(16, 185, 129, 0.16);
    color: #057a55;
}

.status-rejected,
.status-cancelled {
    background: rgba(244, 63, 94, 0.13);
    color: #be123c;
}

.tracker-timeline {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 0.35rem;
}

.tracker-step {
    flex: 1;
    height: 0.26rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.12);
}

.tracker-step.active {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.4), rgba(0, 166, 81, 0.95));
}

.contact-map-frame {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.14);
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.qty-shell {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #ffffff;
    padding: 0.26rem;
}

.qty-input {
    width: 3.6rem;
    text-align: center;
    border: 0;
    border-radius: 0.7rem;
    padding-inline: 0.35rem;
    padding-block: 0.34rem;
    background: #f8fafc;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input {
    -moz-appearance: textfield;
}

.qty-input:focus {
    box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.15);
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.stock-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
}

.stock-dot.is-in {
    background: #00a651;
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.14);
}

.stock-dot.is-out {
    background: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.14);
}

.empty-state {
    border-radius: var(--radius-2xl);
    border: 1px dashed rgba(15, 23, 42, 0.24);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: 2.4rem 1.25rem;
    text-align: center;
}

.sticky-summary {
    position: sticky;
    top: 6.4rem;
}

.whitespace-rich > * + * {
    margin-top: 1rem;
}

.admin-link {
    display: block;
    border-radius: 0.6rem;
    padding: 0.6rem 0.75rem;
    font-weight: 700;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateX(2px);
}

@media (max-width: 1023px) {
    .carousel-fade::before,
    .carousel-fade::after {
        display: none;
    }

    .sticky-summary {
        position: static;
    }
}

@media (max-width: 639px) {
    .section-space {
        padding-block: 2.9rem;
    }

    .section-space-lg {
        padding-block: 3.6rem;
    }

    .btn-lg {
        padding: 0.84rem 1.18rem;
    }

    .contact-map-frame {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 389px) {
    .mobile-action-optional {
        display: none !important;
    }

    .site-header .section-shell {
        gap: 0.35rem;
    }

    .top-strip {
        padding-inline: 0.75rem;
    }
}
.showcase-card h3,
.showcase-card p,
.showcase-card span {
    color: #ffffff;
}
