@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;700&family=Manrope:wght@300;400;500;600;700&family=Orbitron:wght@500;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f6f6f6;
    --ink: #111111;
    --muted: #666666;
    --brand: #000000;
    --accent: #111111;
    --card: #ffffff;
    --border: #dddddd;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: #fff;
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    background:
        linear-gradient(120deg, rgba(8, 8, 9, 0.96) 0%, rgba(16, 16, 17, 0.96) 44%, rgba(8, 8, 9, 0.96) 100%);
    backdrop-filter: blur(18px);
    z-index: 30;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 34px rgba(2, 8, 17, 0.46);
}

.site-header .site-header-container,
.site-footer .site-footer-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.topbar {
    padding: 12px 0;
}

.nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    min-height: 66px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 202px;
    max-height: 52px;
}

.logo img {
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    justify-self: start;
    flex-wrap: wrap;
    align-self: center;
    margin-top: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 2px;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    max-width: min(900px, 92vw);
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(30, 32, 34, 0.12);
    padding: 12px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 25;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown--brands {
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: min(1120px, 92vw);
}

.nav-dropdown--brands .dropdown-item {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding-inline: 4px;
}

.nav-dropdown--brands .dropdown-title {
    font-size: 12px;
    line-height: 1.25;
}

.dropdown-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
    padding: 8px 6px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-align: center;
    width: 120px;
}

.dropdown-item:hover {
    border-color: #d9d9d9;
    background: #f5f5f5;
}

.dropdown-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #f5f5f5;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 0 auto;
}

.dropdown-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    padding: 4px;
}

.brand-logo-focus {
    padding: 6px;
}

.brand-logo-kimbo {
    background: #151515;
    border-radius: 8px;
    padding: 8px;
}

.dropdown-placeholder {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: #e3e3e3;
}

.dropdown-title {
    font-weight: 600;
    font-size: 13px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    padding: 9px 14px;
    position: relative;
    border: 1px solid transparent;
    border-radius: 999px;
}

.nav-link.active {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active,
.nav-link:hover {
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    justify-self: end;
    align-self: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search {
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: visible;
    padding: 3px 6px 3px 14px;
    min-width: 246px;
    box-shadow: 0 10px 30px rgba(2, 8, 17, 0.36);
    height: 42px;
}

.search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    flex: 1;
    color: #fff;
}

.search input::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.search button {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.84);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.search button:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.search-suggest {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 34px rgba(30, 32, 34, 0.16);
    padding: 8px;
    max-height: 360px;
    overflow: auto;
    z-index: 60;
}

.search-suggest-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    color: var(--ink);
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
    background: #f3f3f3;
}

.search-suggest-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
    display: grid;
    place-items: center;
}

.search-suggest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggest-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.search-suggest-empty {
    padding: 10px 12px;
    font-size: 13px;
    color: var(--muted);
}

.icon-link,
.cart-link {
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    white-space: nowrap;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

.cart-link {
    position: relative;
}

.icon-link:hover,
.cart-link:hover {
    color: #ffd64a;
    border-color: #ffd64a;
    background: rgba(255, 214, 74, 0.08);
}

.cart-count-badge {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.mobile-header-tools {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-cart-button {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-cart-button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.cart-count-badge--mobile {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 18, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: #fff;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 40;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
}

.mobile-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.mobile-link.active,
.mobile-link:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

.mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.mobile-search {
    min-width: auto;
    box-shadow: none;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open .mobile-drawer {
    transform: translateX(0);
}

.notice {
    background: #f5f5f5;
    color: #111111;
    border-bottom: 1px solid #dddddd;
    padding: 12px 0;
    font-size: 14px;
}

.hero {
    padding: 64px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(760px, 920px);
    gap: 22px;
    align-items: center;
}

.home-hero-section .home-hero-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.home-hero-content {
    max-width: 760px;
    justify-self: start;
    text-align: left;
}

.home-hero-content h1 {
    max-width: 16ch;
    margin-inline: 0;
}

.home-hero-content .lead {
    max-width: 44ch;
    margin-inline: 0;
}

.home-hero-content .hero-actions {
    justify-content: flex-start;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4vw, 52px);
    margin: 12px 0 18px;
}

.lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.tech-hero {
    position: relative;
    padding: clamp(48px, 7.2vw, 92px) 0 clamp(34px, 5vw, 66px);
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(66, 227, 255, 0.28) 0%, rgba(66, 227, 255, 0) 42%),
        radial-gradient(circle at 82% 74%, rgba(120, 137, 255, 0.22) 0%, rgba(120, 137, 255, 0) 36%),
        linear-gradient(140deg, #060f1a 0%, #0a1a2c 45%, #112c48 100%);
    border-bottom: 1px solid rgba(146, 214, 255, 0.2);
}

.tech-hero::before,
.tech-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}

.tech-hero::before {
    width: 280px;
    height: 280px;
    top: -96px;
    right: 6%;
    background: radial-gradient(circle, rgba(103, 223, 255, 0.22) 0%, rgba(103, 223, 255, 0) 70%);
}

.tech-hero::after {
    width: 380px;
    height: 380px;
    bottom: -210px;
    left: -120px;
    background: radial-gradient(circle, rgba(128, 146, 255, 0.2) 0%, rgba(128, 146, 255, 0) 72%);
}

.tech-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(22px, 4.2vw, 54px);
    align-items: center;
}

.tech-hero-kicker {
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(156, 228, 255, 0.86);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.tech-hero-title {
    margin: 0;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(34px, 5.1vw, 68px);
    line-height: 1;
    letter-spacing: 0.01em;
    max-width: 11.5ch;
    text-wrap: balance;
}

.tech-hero-lead {
    margin: 20px 0 0;
    max-width: 52ch;
    font-size: clamp(16px, 1.7vw, 21px);
    color: rgba(224, 240, 252, 0.86);
    line-height: 1.55;
}

.tech-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tech-hero-btn {
    min-height: 46px;
    min-width: 176px;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.tech-hero-actions .btn.primary {
    background: linear-gradient(120deg, #6be9ff 0%, #9dd0ff 100%);
    color: #05101e;
    border: 1px solid rgba(201, 246, 255, 0.92);
    box-shadow: 0 14px 30px rgba(48, 150, 197, 0.34);
}

.tech-hero-actions .btn.primary:hover {
    color: #041221;
    border-color: rgba(209, 250, 255, 1);
    box-shadow: 0 16px 34px rgba(48, 150, 197, 0.42);
    transform: translateY(-2px);
}

.tech-hero-actions .btn.ghost {
    color: #d9f7ff;
    border-color: rgba(141, 219, 255, 0.54);
    background: rgba(10, 22, 35, 0.42);
}

.tech-hero-actions .btn.ghost:hover {
    color: #e8fdff;
    border-color: rgba(141, 219, 255, 0.78);
    background: rgba(17, 39, 58, 0.75);
}

.tech-hero-metrics {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-hero-metric {
    min-width: 142px;
    border-radius: 14px;
    padding: 10px 14px 11px;
    border: 1px solid rgba(147, 214, 255, 0.26);
    background: rgba(7, 18, 30, 0.52);
    backdrop-filter: blur(6px);
}

.tech-hero-metric strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
    color: #e3f8ff;
}

.tech-hero-metric span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(212, 235, 248, 0.76);
}

.tech-hero-visual {
    display: flex;
    justify-content: center;
}

.tech-hero-stage {
    position: relative;
    width: min(100%, 520px);
    padding-top: 10px;
}

.tech-hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.tech-hero-orb--one {
    width: 190px;
    height: 190px;
    top: -42px;
    right: -40px;
    background: radial-gradient(circle, rgba(101, 225, 255, 0.34) 0%, rgba(101, 225, 255, 0) 70%);
}

.tech-hero-orb--two {
    width: 210px;
    height: 210px;
    bottom: -66px;
    left: -40px;
    background: radial-gradient(circle, rgba(132, 149, 255, 0.28) 0%, rgba(132, 149, 255, 0) 70%);
}

.tech-hero-frame {
    position: relative;
    width: min(100%, 500px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(148, 220, 255, 0.36);
    box-shadow: 0 34px 80px rgba(2, 8, 17, 0.45);
    background:
        linear-gradient(145deg, rgba(18, 36, 56, 0.95) 0%, rgba(11, 22, 37, 0.94) 65%, rgba(8, 16, 28, 0.94) 100%);
}

.tech-hero-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(103, 223, 255, 0.18) 0%, rgba(103, 223, 255, 0) 38%),
        radial-gradient(circle at 75% 20%, rgba(138, 155, 255, 0.24) 0%, rgba(138, 155, 255, 0) 44%);
    pointer-events: none;
}

.tech-hero-frame img {
    width: 100%;
    height: clamp(280px, 34vw, 396px);
    object-fit: contain;
    padding: clamp(18px, 3vw, 26px);
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35));
}

.tech-hero-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(7, 19, 31, 0.9);
    border: 1px solid rgba(173, 229, 255, 0.64);
    color: #dcf6ff;
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
}

.tech-hero-product-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -26px;
    border-radius: 16px;
    border: 1px solid rgba(148, 220, 255, 0.3);
    background: rgba(7, 17, 30, 0.82);
    backdrop-filter: blur(10px);
    padding: 12px 14px 13px;
    box-shadow: 0 18px 34px rgba(2, 8, 17, 0.44);
    display: grid;
    gap: 4px;
}

.tech-hero-product-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(171, 229, 255, 0.76);
}

.tech-hero-product-card strong {
    font-size: 14px;
    line-height: 1.3;
    color: #e9f8ff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tech-hero-product-price {
    color: #80e6ff;
    font-weight: 700;
    font-size: 14px;
}

.landing-hero {
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(10, 10, 12, 0.88) 0%, rgba(10, 10, 12, 0.72) 38%, rgba(10, 10, 12, 0.9) 100%),
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 24%),
        linear-gradient(135deg, #1f232b 0%, #090b0f 52%, #11151d 100%);
    color: #fff;
}

.landing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.landing-hero-media,
.landing-hero-container {
    position: relative;
    z-index: 1;
}

.landing-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.landing-hero-glow,
.landing-hero-reflection {
    position: absolute;
    border-radius: 999px;
    transform: rotate(-18deg);
    pointer-events: none;
}

.landing-hero-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 68%);
    filter: blur(8px);
}

.landing-hero-glow--left {
    width: 420px;
    height: 420px;
    top: 6%;
    left: -6%;
}

.landing-hero-glow--right {
    width: 520px;
    height: 520px;
    right: -10%;
    bottom: -12%;
}

.landing-hero-reflection {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0.7;
    filter: blur(1px);
}

.landing-hero-reflection--one {
    width: 28px;
    height: 72%;
    left: 16%;
    top: -4%;
}

.landing-hero-reflection--two {
    width: 16px;
    height: 58%;
    left: 44%;
    top: 8%;
}

.landing-hero-container {
    width: min(1380px, 94%);
}

.landing-hero-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 86px 0 72px;
    text-align: center;
}

.landing-hero-kicker {
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.landing-hero-title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.24em;
    margin: 0;
    font-family: 'Space Grotesk', 'Manrope', 'Nunito Sans', sans-serif;
    font-size: clamp(42px, 6.4vw, 88px);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.landing-hero-title-static {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92em;
    font-weight: 600;
    letter-spacing: 0.015em;
}

.landing-hero-title-dynamic {
    display: inline-block;
    flex: 0 0 auto;
    min-width: 7.6ch;
    color: #fff;
    font-family: inherit;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.landing-hero-title-dynamic.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.landing-hero-lead {
    max-width: none;
    margin: 28px auto 0;
    font-size: clamp(18px, 1.85vw, 28px);
    line-height: 1.45;
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.landing-hero-lead strong {
    font-style: normal;
    font-weight: 800;
    color: #fff;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
}

.landing-hero-btn {
    min-width: 230px;
    min-height: 58px;
    font-size: 15px;
    letter-spacing: 0.04em;
}

.landing-hero-actions .btn.primary {
    background: #7a4a22;
    color: #fff;
    border-color: #7a4a22;
}

.landing-hero-actions .btn.primary:hover {
    background: #5f3718;
    color: #fff;
    border-color: #5f3718;
}

.landing-hero-actions .btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
}

.landing-hero-actions .btn.ghost:hover {
    background: #ffd64a;
    color: #000;
    border-color: #ffd64a;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn.primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.btn.primary:hover {
    color: #ffd64a;
    border-color: #ffd64a;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn.ghost {
    background: transparent;
    border-color: var(--brand);
    color: var(--brand);
}

.btn.ghost:hover {
    color: #ffd64a;
    border-color: #ffd64a;
}

.btn.light {
    background: #fff;
    color: var(--brand);
    border-color: var(--brand);
}

.btn.light:hover {
    color: #ffd64a;
    border-color: #ffd64a;
}

.hero-card {
    background: linear-gradient(160deg, #000000 0%, #2a2a2a 100%);
    color: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    margin-top: 12px;
}

.hero-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-brand-slider {
    position: relative;
    min-height: 390px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #000000 0%, #2d2d2d 100%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-brand-track {
    position: relative;
    min-height: 390px;
    height: 100%;
}

.hero-brand-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 16px;
    padding: 28px 28px 74px;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-brand-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-brand-media {
    min-height: 136px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    padding: 16px;
}

.hero-brand-media img {
    max-width: 100%;
    max-height: 108px;
    object-fit: contain;
}

.hero-brand-placeholder {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 1;
}

.hero-brand-info h3 {
    margin: 0 0 8px;
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 2.2vw, 38px);
    line-height: 1.1;
}

.hero-product-title {
    font-size: clamp(24px, 2vw, 32px) !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-brand-info p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-brand-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-brand-cta {
    pointer-events: none;
}

.hero-brand-index {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-brand-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-brand-nav {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(29, 16, 11, 0.25);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-brand-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.hero-brand-dots {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.hero-brand-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-brand-dot.is-active {
    width: 26px;
    background: #050505;
    color: #fff;
}

.hero-product-slider {
    background: linear-gradient(160deg, #ffffff 0%, #f8f1e8 100%);
    border: 1px solid #dcc7b3;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    min-height: 560px;
    border-radius: 26px;
    padding: 16px;
    width: 100%;
    max-width: 790px;
    justify-self: end;
    overflow: hidden;
}

.hero-product-slider .hero-brand-track {
    min-height: 528px;
}

.hero-product-slider .hero-brand-slide {
    color: var(--ink);
    padding: 8px 8px 80px;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 12px;
    border-radius: 20px;
    background: transparent;
    border: none;
}

.hero-product-slider .hero-badge {
    background: linear-gradient(90deg, #f0dcc3 0%, #ead0b0 100%);
    color: #6f4328;
    font-weight: 700;
    letter-spacing: 1.2px;
    width: fit-content;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
}

.hero-product-card-large {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    align-content: start;
}

.hero-product-slider .hero-brand-media {
    height: clamp(220px, 24vw, 290px);
    min-height: 220px;
    background:
        radial-gradient(circle at 20% 20%, #ffffff 0%, #f7f7f8 58%, #efedf0 100%);
    border: none;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px #ebdde0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.hero-product-slider .hero-brand-media img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center;
    transition: transform 0.2s ease;
}

.hero-product-slider .hero-product-image {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center;
    margin: 0 auto;
}

.hero-product-slider .hero-brand-slide:hover .hero-brand-media img {
    transform: scale(1.015);
}

.hero-product-slider .hero-brand-info h3 {
    font-size: clamp(26px, 2vw, 36px);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.2px;
    max-width: 26ch;
}

.hero-product-meta {
    margin-top: 0;
}

.hero-product-price {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: #fff;
    font-weight: 800;
    font-size: 28px;
    color: #4f2a1e;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.hero-product-stock {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-product-stock.is-in-stock {
    color: #1b6f44;
    background: #e8f5ee;
}

.hero-product-stock.is-out-of-stock {
    color: #8f2f2a;
    background: #fee9e3;
}

.hero-product-slider .hero-brand-index {
    color: #6a5442;
    font-weight: 700;
}

.hero-product-actions {
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 2px;
}

.hero-product-actions .hero-brand-index {
    margin-left: auto;
}

.hero-add-cart-form {
    margin: 0;
}

.hero-add-btn {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.hero-product-slider .hero-brand-cta {
    padding: 10px 18px;
    border: none;
    color: #553220;
    background: #f2e4d5;
    box-shadow: none;
    font-size: 16px;
    border-radius: 999px;
    font-weight: 700;
    pointer-events: auto;
}

.hero-product-slider .hero-brand-footer {
    margin-top: auto;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-product-slider .hero-brand-nav {
    border: none;
    background: #f2f2f2;
    color: #111111;
    width: 38px;
    height: 38px;
}

.hero-product-slider .hero-brand-nav:hover {
    background: #e3e3e3;
}

.hero-product-slider .hero-brand-dot {
    background: #cfcfcf;
}

.hero-product-slider .hero-brand-dot.is-active {
    background: #6b3d26;
}

.hero-espresso-slider {
    position: relative;
    width: min(100%, 920px);
    justify-self: end;
    padding-bottom: 74px;
}

.hero-espresso-slider-desktop {
    display: block;
}

.hero-espresso-slider-mobile {
    display: none;
}

.hero-espresso-track {
    position: relative;
    min-height: 360px;
}

.hero-espresso-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
    opacity: 0;
    transform: translateX(12px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-espresso-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-espresso-pair {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-espresso-slider-mobile .hero-espresso-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-espresso-card {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 12px;
    gap: 8px;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.hero-espresso-placeholder {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e2d6c7;
    color: #593726;
    font-family: 'Fraunces', serif;
    font-size: 32px;
}

.hero-espresso-card .product-title {
    font-size: 14px;
    line-height: 1.32;
    min-height: calc(1.32em * 2);
    max-height: calc(1.32em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-espresso-card .product-price {
    font-size: 16px;
}

.hero-espresso-thumb {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
}

.hero-espresso-thumb img {
    object-fit: contain;
}

.hero-espresso-card .stock-pill {
    margin-top: auto;
}

.hero-espresso-index {
    font-size: 12px;
    font-weight: 700;
    color: #7a6b62;
    letter-spacing: 0.8px;
}

.hero-espresso-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-espresso-controls .hero-brand-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 1px solid #d9c8b7;
    background: #fff;
    color: #5a3728;
    pointer-events: auto;
}

.hero-espresso-controls .hero-brand-nav:first-of-type {
    left: -18px;
}

.hero-espresso-controls .hero-brand-nav:last-of-type {
    right: -18px;
}

.hero-espresso-controls .hero-brand-nav:hover {
    background: #f8f0e7;
}

.hero-espresso-controls .hero-brand-dots {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.hero-espresso-controls .hero-brand-dot {
    background: #cfcfcf;
}

.hero-espresso-controls .hero-brand-dot.is-active {
    background: #111111;
}

.section.home-brand-marquee-section {
    padding: 10px 0 24px;
}

.home-brand-marquee-section .home-brand-marquee-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.home-brand-marquee {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 8px 0;
}

.home-brand-marquee::before,
.home-brand-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.home-brand-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-brand-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-brand-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: home-brand-marquee-move var(--brand-marquee-duration, 28s) linear infinite;
    will-change: transform;
}

.home-brand-marquee:hover .home-brand-marquee-track {
    animation-play-state: paused;
}

.home-brand-marquee-group {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    padding-inline: clamp(4px, 1.4vw, 14px);
}

.home-brand-marquee-item {
    width: clamp(108px, 11vw, 170px);
    height: 58px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
    padding: 0;
}

.home-brand-marquee-item:hover {
    transform: translateY(-1px);
}

.home-brand-marquee-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 46px;
    object-fit: contain;
    filter: none;
    opacity: 0.96;
}

.home-brand-marquee-item:hover img {
    opacity: 1;
}

.home-brand-marquee-item .brand-logo-image,
.home-brand-marquee-item .brand-logo-focus {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 46px;
    object-fit: contain !important;
    padding: 0 !important;
}

.home-brand-marquee-item .brand-logo-kimbo {
    background: transparent !important;
    border-radius: 0;
    padding: 0 !important;
}

.home-brand-marquee-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #70503a;
    line-height: 1.2;
}

@keyframes home-brand-marquee-move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-brand-marquee {
        overflow-x: auto;
    }

    .home-brand-marquee::before,
    .home-brand-marquee::after {
        display: none;
    }

    .home-brand-marquee-track {
        animation: none;
    }
}

.section {
    padding: 48px 0;
}

.search-page-form {
    margin: 8px 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.search-page-form input[type='search'] {
    min-width: min(520px, 100%);
    flex: 1;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0 14px;
    font-size: 15px;
    background: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.page-heading {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.page-lead {
    max-width: 760px;
    margin-bottom: 28px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.info-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.info-card-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card-link:hover {
    transform: translateY(-2px);
    border-color: #111;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
}

.info-card-cta {
    display: inline-flex;
    margin-top: 16px;
    font-weight: 700;
}

.events-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0 40px;
}

.events-intro-card {
    background: #fff;
    border: 1px solid #e8dccb;
    border-radius: 8px;
    padding: 24px;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 42px rgba(80, 56, 34, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.events-intro-card:hover {
    transform: translateY(-2px);
    border-color: #c89b57;
    box-shadow: 0 22px 46px rgba(80, 56, 34, 0.1);
}

.events-service-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: #9a632c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.events-intro-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
}

.events-intro-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.events-service-button {
    width: 100%;
    height: 46px;
    border: 1px solid #c89b57;
    border-radius: 6px;
    background: #fff;
    color: #7a4a22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.events-service-button:hover,
.events-service-button:focus-visible {
    background: #7a4a22;
    border-color: #7a4a22;
    color: #fff;
    outline: none;
}

.events-gallery-head {
    margin-top: 6px;
}

.events-gallery-head .section-title {
    margin-bottom: 8px;
}

.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.events-gallery-item {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

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

.events-gallery-empty {
    min-height: 260px;
    border: 1px dashed #c9b38e;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    text-align: center;
    color: var(--muted);
    margin-top: 18px;
}

.events-gallery-empty span {
    color: #7a4a22;
    font-weight: 800;
    font-size: 20px;
}

.events-gallery-empty p {
    margin: 0;
}

.event-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.event-contact-modal[hidden] {
    display: none;
}

.event-contact-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.42);
    backdrop-filter: blur(3px);
}

.event-contact-dialog {
    position: relative;
    width: min(560px, 100%);
    max-height: min(760px, calc(100vh - 44px));
    overflow: auto;
    background: #fff;
    border: 1px solid #e8dccb;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(25, 20, 16, 0.28);
}

.event-contact-dialog h2 {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.2;
}

.event-contact-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: #3a3028;
    cursor: pointer;
}

.event-contact-close:hover,
.event-contact-close:focus-visible {
    border-color: #7a4a22;
    color: #7a4a22;
    outline: none;
}

.event-contact-form {
    display: grid;
    gap: 14px;
}

.event-contact-form label {
    display: grid;
    gap: 7px;
    color: #3a3028;
    font-size: 13px;
    font-weight: 800;
}

.event-contact-form input,
.event-contact-form textarea {
    width: 100%;
    border: 1px solid #ddd2c4;
    border-radius: 6px;
    background: #fff;
    color: #111;
    padding: 12px 13px;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
}

.event-contact-form input:focus,
.event-contact-form textarea:focus {
    border-color: #b97f3c;
    outline: 3px solid rgba(185, 127, 60, 0.16);
}

.event-contact-form input[readonly] {
    background: #faf7f2;
    color: #7a4a22;
    font-weight: 800;
}

.event-contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.event-contact-submit {
    min-height: 48px;
    border: 1px solid #7a4a22;
    border-radius: 6px;
    background: #7a4a22;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.event-contact-submit:hover,
.event-contact-submit:focus-visible {
    background: #5e3719;
    border-color: #5e3719;
    outline: none;
}

body.has-event-modal {
    overflow: hidden;
}

.features-section {
    position: relative;
}

.features-head {
    text-align: center;
    margin-bottom: 34px;
}

.features-heading {
    letter-spacing: 0.08em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.feature-card {
    text-align: center;
    padding: 20px 16px 10px;
    animation: feature-card-rise 0.65s ease both;
}

.feature-card:nth-child(2) {
    animation-delay: 0.08s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.16s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.24s;
}

.feature-icon {
    width: 142px;
    height: 142px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-6px) scale(1.03);
    background: #ffd64a;
    color: #111;
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.16);
}

.feature-icon svg {
    width: 72px;
    height: 72px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.feature-card p {
    margin: 0 auto;
    max-width: 340px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 15px;
    text-wrap: pretty;
}

@keyframes feature-card-rise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.systems-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #f4eee6;
    position: relative;
    overflow: hidden;
    margin-bottom: 36px;
}

.systems-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 1px, rgba(255, 255, 255, 0) 1px 6px);
    opacity: 0.35;
    pointer-events: none;
}

.systems-section > * {
    position: relative;
}

.systems-text h2 {
    font-family: 'Fraunces', serif;
    margin: 6px 0 12px;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.system-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 14px;
    display: grid;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.system-card.active {
    border-color: var(--accent);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.system-head {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.system-thumb {
    border-radius: 12px;
    background: #f5f5f5;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.system-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.system-placeholder {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: #e8dfd4;
}

.system-title {
    font-weight: 600;
    font-size: 14px;
}

.system-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.system-product {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff6ec;
    border: 1px solid #ead8c6;
    font-size: 12px;
    color: var(--brand);
}

.filter-label {
    font-weight: 600;
    color: var(--muted);
    font-size: 14px;
    margin-left: 6px;
}

.small {
    font-size: 12px;
}

.other-section {
    margin-bottom: 32px;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 180px));
    gap: 16px;
    justify-content: start;
}

.home-systems-section {
    padding-top: 58px;
}

.home-systems-section .home-systems-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.home-systems-section .other-section {
    margin-bottom: 0;
}

.home-systems-section .section-title {
    font-size: clamp(30px, 2.8vw, 40px);
    margin-bottom: 8px;
}

.home-systems-intro {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.45;
}

.home-systems-section .other-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    justify-content: stretch;
}

.home-systems-section .other-card {
    min-height: 258px;
    padding: 18px 14px;
    gap: 14px;
    border-radius: 18px;
}

.home-systems-section .other-thumb {
    max-width: 172px;
    border-radius: 14px;
}

.home-systems-section .other-title {
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.25;
}

.brands-page-section .brands-page-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.brands-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    overflow: visible;
    gap: 16px;
    justify-content: stretch;
}

.brands-row-grid .other-card {
    width: 100%;
}

@media (max-width: 620px) {
    .brands-row-grid .other-card {
        width: 100%;
    }
}

.other-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 14px;
    text-align: center;
    display: grid;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(30, 32, 34, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
    width: 100%;
}

.other-card:hover {
    transform: translateY(-2px);
    border-color: #d9c9b8;
}

.other-card.active {
    border-color: var(--accent);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.other-thumb {
    border-radius: 12px;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
}

.other-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-title {
    font-weight: 600;
    font-size: 14px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.home-categories-section .home-categories-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.home-categories-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    background: var(--card);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.home-categories-cards .home-category-card {
    --cat-ink: #5f3925;
    --cat-surface: linear-gradient(160deg, #fff9f2 0%, #f7ecdf 100%);
    --cat-visual: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 45%, rgba(255, 255, 255, 0) 100%);
    --cat-chip-bg: rgba(255, 255, 255, 0.72);
    --cat-chip-border: rgba(110, 71, 46, 0.2);
    --cat-chip-ink: #5b3a29;
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 288px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(131, 95, 67, 0.2);
    background: var(--cat-surface);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-categories-cards .home-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.home-categories-cards .home-category-card::before,
.home-categories-cards .home-category-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-categories-cards .home-category-card::before {
    right: -28px;
    top: -34px;
    width: 132px;
    height: 132px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
}

.home-categories-cards .home-category-card::after {
    left: -34px;
    bottom: -44px;
    width: 148px;
    height: 148px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 72%);
}

.home-category-visual {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    height: 132px;
    border-radius: 18px;
    border: 1px solid rgba(126, 86, 58, 0.12);
    background: var(--cat-visual);
    overflow: hidden;
}

.home-category-visual::before,
.home-category-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-category-visual::before {
    width: 180px;
    height: 180px;
    top: -86px;
    right: -74px;
    background: rgba(255, 255, 255, 0.45);
}

.home-category-visual::after {
    width: 132px;
    height: 132px;
    bottom: -70px;
    left: -48px;
    background: rgba(255, 255, 255, 0.38);
}

.home-category-illustration {
    width: 102px;
    height: 102px;
    border-radius: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--cat-ink);
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08),
        0 10px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
}

.home-category-illustration svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-categories-cards .home-category-card .card-title {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-size: 22px;
    letter-spacing: -0.2px;
}

.home-categories-cards .home-category-card p {
    margin: 0;
    position: relative;
    z-index: 1;
    color: #665a50;
    font-size: 15px;
}

.home-category-chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.home-category-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--cat-chip-border);
    background: var(--cat-chip-bg);
    color: var(--cat-chip-ink);
    font-size: 12px;
    font-weight: 700;
}

.home-categories-cards .home-category-card.is-coffee {
    --cat-ink: #6a4028;
    --cat-surface: linear-gradient(165deg, #fff9f1 0%, #f6e7d7 100%);
    --cat-visual: radial-gradient(circle at 18% 22%, #fffaf3 0%, #f6eadf 62%, #f3e0ce 100%);
    --cat-chip-border: rgba(121, 80, 52, 0.22);
}

.home-categories-cards .home-category-card.is-espresso {
    --cat-ink: #2e5f53;
    --cat-surface: linear-gradient(165deg, #f4fbf8 0%, #deeee8 100%);
    --cat-visual: radial-gradient(circle at 22% 18%, #f7fdfb 0%, #e3f0eb 62%, #d8e9e2 100%);
    --cat-chip-border: rgba(47, 96, 84, 0.24);
    --cat-chip-ink: #2f6156;
}

.home-categories-cards .home-category-card.is-other {
    --cat-ink: #6a4b2f;
    --cat-surface: linear-gradient(165deg, #fffaf2 0%, #f3e5cf 100%);
    --cat-visual: radial-gradient(circle at 24% 20%, #fffdf8 0%, #f7ecdc 62%, #f2e1c5 100%);
    --cat-chip-border: rgba(123, 92, 58, 0.25);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 18px;
}

.brand-card {
    background: var(--card);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 8px;
}

.brand-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto;
}

.brand-card div {
    font-size: 13px;
    font-weight: 600;
}

.brand-selected {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.brand-badge {
    position: sticky;
    top: 120px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    width: min(220px, 100%);
    display: grid;
    gap: 12px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.brand-badge img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.brand-placeholder {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    background: #efefef;
}

.brand-name {
    font-weight: 700;
    font-size: 16px;
}

.brand-products {
    min-width: 0;
}

@media (max-width: 960px) {
    .brand-selected {
        grid-template-columns: 1fr;
    }

    .brand-badge {
        position: static;
        width: 100%;
        max-width: 320px;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--card);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

.latest-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    justify-content: start;
    gap: 16px;
    align-items: stretch;
}

.latest-product-card {
    min-height: 0;
    padding: 12px;
    gap: 8px;
    height: 100%;
}

.latest-product-thumb {
    border-radius: 12px;
}

.latest-product-card .product-title {
    font-size: 14px;
    line-height: 1.35;
}

.latest-product-card .product-price {
    font-size: 15px;
}

.latest-products-slider {
    display: grid;
    gap: 16px;
    background: linear-gradient(180deg, #fbfaf7 0%, #f3eee6 100%);
    border-top: 1px solid #e8dfd0;
    border-bottom: 1px solid #e8dfd0;
    padding: clamp(26px, 4vw, 52px) clamp(12px, 3vw, 34px);
    margin-inline: calc(clamp(12px, 3vw, 34px) * -1);
}

.home-latest-section .home-latest-container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(12px, 3vw, 34px);
}

.home-latest-section .section-title {
    max-width: 1500px;
    margin-inline: auto;
    margin-bottom: 0;
    font-size: clamp(25px, 2.4vw, 34px);
    letter-spacing: 0;
}

.latest-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.latest-slider-nav {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d9c8b7;
    background: #fff;
    color: #5a3728;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.latest-slider-nav:hover {
    background: #f7eee5;
    transform: translateY(-1px);
}

.latest-slider-nav:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}

.latest-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.latest-products-slider--edge-fade .latest-slider-viewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}

.latest-slider-viewport::-webkit-scrollbar {
    display: none;
}

.latest-products-slider .latest-products-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    width: max-content;
}

.latest-products-slider .latest-product-card {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
}

.catalog-add-cart-form--qty.latest-add-cart-form {
    margin-top: auto;
}

.catalog-qty-control.latest-qty-control {
    width: 132px;
    grid-template-columns: 36px 60px 36px;
    overflow: hidden;
}

.catalog-qty-control.latest-qty-control .qty-btn,
.catalog-qty-control.latest-qty-control .product-qty-input {
    height: 34px;
}

.catalog-qty-control.latest-qty-control .qty-btn {
    font-size: 18px;
}

.catalog-qty-control.latest-qty-control .product-qty-input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-inline: 1px solid #ead8ba;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
}

.catalog-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    justify-content: start;
    gap: 16px;
    align-items: stretch;
}

.catalog-add-cart-form--qty {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: 12px;
}

.catalog-qty-control {
    width: 150px;
    grid-template-columns: 38px 54px 38px;
    justify-content: center;
    border-color: #d79a27;
    margin-inline: auto;
}

.catalog-qty-control .qty-btn {
    height: 40px;
    font-size: 21px;
    color: #7a4a22;
}

.catalog-qty-control .product-qty-input {
    height: 40px;
    font-size: 18px;
    border-inline: 1px solid #ead8ba;
    background: #fffdf8;
}

.catalog-add-cart-form--qty .catalog-product-cta,
.catalog-product-card > .catalog-product-cta {
    width: 100%;
    min-height: 42px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 108px;
}

.catalog-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    display: grid;
    gap: 12px;
}

.catalog-sidebar-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.catalog-sidebar-nav {
    display: grid;
    gap: 8px;
}

.catalog-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #222;
    transition: background 0.2s ease, color 0.2s ease;
}

.catalog-sidebar-link:hover,
.catalog-sidebar-link.is-active {
    background: #111;
    color: #fff;
}

.catalog-sidebar-link small {
    color: inherit;
    opacity: 0.74;
}

.catalog-category-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.catalog-category-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-category-logo span {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.catalog-category-section + .catalog-category-section {
    margin-top: 34px;
}

.catalog-category-head {
    margin-bottom: 14px;
}

.catalog-category-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-category-heading .section-title {
    margin-bottom: 6px;
}

.catalog-page .container {
    width: min(1540px, 96vw);
}

.catalog-page .page-lead {
    max-width: 980px;
}

.catalog-product-card {
    min-height: 0;
    padding: 12px;
    gap: 8px;
    height: 100%;
}

.catalog-product-card .product-thumb {
    border-radius: 12px;
}

.catalog-product-link {
    display: block;
}

@media (min-width: 1360px) {
    .catalog-products-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--muted);
}

.page-breadcrumb a:hover {
    color: #111;
}

.page-breadcrumb-separator {
    opacity: 0.56;
}

.product-thumb-wrap {
    position: relative;
}

.favorite-form {
    margin: 0;
}

.favorite-toggle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e1d3c4;
    background: rgba(255, 255, 255, 0.96);
    color: #8a7a6f;
    padding: 0;
    font: inherit;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.favorite-toggle:hover {
    color: #c43b53;
    border-color: #efbcc7;
    background: #fff;
    transform: translateY(-1px);
}

.favorite-toggle.is-active {
    color: #c43b53;
    border-color: #efbcc7;
    background: #ffeef2;
}

.favorite-toggle:focus-visible {
    outline: 2px solid #c43b53;
    outline-offset: 2px;
}

.favorite-toggle .favorite-icon {
    font-size: 16px;
    line-height: 1;
}

.favorite-toggle--thumb {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
}

.latest-products-grid .latest-product-card .product-title,
.catalog-product-name {
    font-size: 14px;
    line-height: 1.35;
    min-height: calc(1.35em * 3);
    max-height: calc(1.35em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.catalog-product-card .product-price {
    font-size: 15px;
}

.catalog-add-cart-form {
    width: 100%;
}

.catalog-product-cta {
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 14px;
    margin-top: 8px;
}

.latest-products-grid .latest-product-card .stock-pill,
.catalog-product-card .stock-pill {
    margin-top: auto;
}

.product-thumb {
    background: #ffffff;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.film-card-poster {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(88px, 0.9fr);
    background: linear-gradient(145deg, #f1f1f1 0%, #e3e3e3 100%);
}

.film-card-poster-body,
.film-card-poster-band {
    position: relative;
}

.film-card-poster-body {
    padding: 16px 14px;
    display: grid;
    align-content: end;
    background:
        linear-gradient(145deg, transparent 0%, transparent 55%, #17181c 55%, #060606 100%);
}

.film-card-poster-mark {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #111;
    opacity: 0.7;
}

.film-card-poster-series {
    font-size: 20px;
    line-height: 0.95;
    font-weight: 800;
    color: #fff;
}

.film-card-poster-caption {
    font-size: 9px;
    letter-spacing: 0.14em;
    color: #f4cf54;
    text-transform: uppercase;
}

.film-card-poster-band {
    background: rgba(5, 8, 12, 0.92);
    color: #fff;
    padding: 14px 10px;
    display: grid;
    align-content: end;
}

.film-card-poster-family {
    font-size: 17px;
    line-height: 1.02;
    font-weight: 700;
}

.catalog-product-card .product-thumb img,
.latest-product-card .product-thumb img,
.account-favorite-card .product-thumb img {
    object-fit: contain !important;
    object-position: center center !important;
}

.product-title {
    font-weight: 600;
}

.product-price {
    font-weight: 700;
    color: var(--accent);
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.stock-pill.is-in-stock {
    color: #1b6f44;
    background: #e8f5ee;
}

.stock-pill.is-out-of-stock {
    color: #8f2f2a;
    background: #fee9e3;
}

.product-detail {
    --product-media-width: 52%;
    --product-col-gap: 46px;
    display: flow-root;
}

.product-media-column {
    float: left;
    width: var(--product-media-width);
    margin: 0 var(--product-col-gap) 18px 0;
    display: grid;
    gap: 18px;
    min-width: 0;
}

.product-buy-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    position: static;
}

.product-side-column {
    margin-left: calc(var(--product-media-width) + var(--product-col-gap));
    margin-bottom: 18px;
}

.product-side-column > .product-buy-box {
    max-width: 560px;
}

.product-detail-title {
    margin: 0;
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.08;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 20ch;
    text-wrap: balance;
}

.product-buy-box .product-price {
    font-size: clamp(30px, 2vw, 40px);
    line-height: 1;
    color: #111;
}

.product-price-meta {
    font-size: 16px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-price-meta--stacked {
    display: grid;
    gap: 6px;
    justify-items: start;
}

.product-price-meta span {
    font-weight: 600;
}

.product-divider {
    height: 1px;
    background: var(--border);
}

.product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-stock {
    font-size: 16px;
    font-weight: 700;
}

.product-stock.is-in-stock {
    color: #1b6f44;
}

.product-stock.is-out-of-stock {
    color: #9c2f26;
}

.product-code {
    font-weight: 700;
    font-size: 16px;
    color: #374151;
}

.product-variant-panel {
    display: grid;
    gap: 18px;
}

.product-variant-group {
    display: grid;
    gap: 10px;
}

.product-variant-label {
    font-size: 14px;
    color: var(--muted);
}

.product-variant-label strong {
    color: #111;
    font-size: 15px;
}

.product-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-variant-option {
    border: 1px solid var(--border);
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 10px 15px;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-variant-option:hover {
    background: #ffd64a;
    border-color: #ffd64a;
    color: #111;
    transform: translateY(-1px);
}

.product-variant-option.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
}

.product-variant-note,
.product-variant-range,
.product-variant-disclaimer {
    margin: 0;
    color: var(--muted);
}

.product-variant-note,
.product-variant-range {
    font-size: 14px;
}

.product-variant-disclaimer {
    margin-top: 14px;
    font-size: 15px;
}

.product-purchase-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    flex-wrap: wrap;
}

.product-purchase-price {
    display: grid;
    gap: 8px;
}

.product-cart-form,
.product-login-cta {
    margin-top: 4px;
}

.product-cart-form {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.product-qty-field {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.product-qty-input {
    width: 92px;
    height: 48px;
}

.product-login-cta {
    display: grid;
    gap: 12px;
}

.product-login-cta p {
    margin: 0;
    color: var(--muted);
}

.product-color-switch {
    display: grid;
    gap: 10px;
}

.product-color-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.product-color-header strong {
    color: #2b1e18;
    font-size: 15px;
}

.product-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-color-dot {
    --swatch-color: #8d8d8d;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.28);
    background: #f2f2f2;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.product-color-dot:hover {
    transform: translateY(-1px);
}

.product-color-dot.is-in-stock {
    background: var(--swatch-color);
    border-color: rgba(0, 0, 0, 0.36);
}

.product-color-dot.is-out-of-stock {
    background: #fff;
    border-color: var(--swatch-color);
    opacity: 0.68;
}

.product-color-dot.is-out-of-stock::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 18px;
    background: #7d6e64;
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.product-color-dot.is-current {
    box-shadow:
        0 0 0 2px #ffffff,
        0 0 0 4px #111111;
}

.cart-form {
    display: grid;
    gap: 10px;
    max-width: 200px;
}

.cart-form input {
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.gallery {
    display: grid;
    gap: 14px;
}

.gallery-main {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.gallery-main img[data-product-lightbox] {
    cursor: zoom-in;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(30, 18, 10, 0.84);
    display: grid;
    place-items: center;
    padding: 26px;
}

.product-lightbox img {
    max-width: min(1080px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.product-lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: #7a4a22;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

body.product-lightbox-open {
    overflow: hidden;
}

.film-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.film-visual-media {
    width: 100%;
    height: 100%;
    background: #ececec;
}

.film-visual-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.film-visual-band {
    position: absolute;
    top: 0;
    right: 0;
    width: min(34%, 220px);
    height: 100%;
    background: rgba(5, 8, 12, 0.84);
    color: #fff;
    display: grid;
    align-items: end;
    padding: 22px 18px;
}

.film-visual-band-copy {
    display: grid;
    gap: 10px;
}

.film-visual-variant {
    font-size: clamp(24px, 2.5vw, 42px);
    line-height: 1;
    font-weight: 700;
}

.film-visual-size {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.film-visual-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ececec;
    overflow: hidden;
}

.film-visual-roll {
    position: absolute;
    width: 42%;
    height: 12%;
    border-radius: 999px;
    background: linear-gradient(180deg, #32353b 0%, #08090b 100%);
    transform: rotate(-10deg);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.film-visual-roll::after {
    content: '';
    position: absolute;
    left: 4%;
    top: 12%;
    width: 92%;
    height: 28%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.film-visual-roll--back {
    top: 30%;
    left: 12%;
}

.film-visual-roll--front {
    top: 46%;
    left: 9%;
}

.film-visual-box {
    position: absolute;
    left: 24%;
    right: 8%;
    bottom: 18%;
    height: 34%;
    transform: skewX(-18deg);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.2));
}

.film-visual-box-top {
    position: absolute;
    left: 12%;
    right: 0;
    top: -18%;
    height: 22%;
    background: linear-gradient(180deg, #f2d069 0%, #d1a430 100%);
    color: #111;
    display: grid;
    place-items: center;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.film-visual-box-face {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1b1d22 0%, #060606 100%);
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px 28px;
}

.film-visual-box-brand {
    font-size: clamp(26px, 2.8vw, 42px);
    line-height: 0.95;
    font-weight: 800;
    color: #fff;
}

.film-visual-box-subtitle {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: #f4cf54;
    text-transform: uppercase;
}

.favorite-toggle--detail-image {
    top: 14px;
    right: 14px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 14px;
}

.gallery-thumb-btn {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-thumb-btn.is-active {
    border-color: #2f6d7b;
    box-shadow: 0 0 0 1px rgba(47, 109, 123, 0.28);
}

.gallery-thumb-btn:hover {
    border-color: #d6bea7;
}

.product-description {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
    max-width: none;
    margin-top: 4px;
}

.product-description h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.product-description p {
    margin: 0;
    line-height: 1.6;
    white-space: normal;
    font-size: 17px;
}

.product-nutrition-link {
    justify-self: start;
    border-radius: 999px;
    padding-inline: 18px;
}

.btn.primary.product-nutrition-link--prominent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    margin-top: 22px;
    padding: 13px 24px;
    background: #f3ba16;
    color: #111;
    border: 2px solid #d79a27;
    box-shadow: 0 12px 26px rgba(122, 74, 34, 0.18);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

.btn.primary.product-nutrition-link--prominent,
.btn.primary.product-nutrition-link--prominent:visited {
    background: #f3ba16;
    color: #111;
    border-color: #d79a27;
}

.btn.primary.product-nutrition-link--prominent:hover,
.btn.primary.product-nutrition-link--prominent:focus-visible {
    background: #ffd45a;
    color: #111;
    border-color: #b97816;
    transform: translateY(-1px);
}

.product-sheet-page .container {
    width: min(1220px, 96vw);
}

.product-sheet-page-actions {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.product-sheet {
    clear: both;
    border: 1px solid #d8c4aa;
    border-radius: 14px;
    background: #fffdf8;
    color: #24170f;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(67, 42, 22, 0.08);
}

.product-sheet-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    border-bottom: 1px solid #d8c4aa;
}

.product-sheet-cell {
    min-height: 38px;
    padding: 9px 12px;
    border-right: 1px solid #d8c4aa;
    border-bottom: 1px solid #ead8c5;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
}

.product-sheet-cell:nth-child(3n) {
    border-right: 0;
}

.product-sheet-cell:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.product-sheet-brand,
.product-sheet-title,
.product-sheet-section-title,
.product-sheet-table thead th {
    background: #ead6bc;
}

.product-sheet-title {
    justify-content: center;
    text-transform: uppercase;
}

.product-sheet-span {
    grid-column: span 2;
}

.product-sheet-section-title {
    padding: 10px 12px;
    border-bottom: 1px solid #d8c4aa;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
}

.product-sheet-ingredients {
    min-height: 92px;
    padding: 14px 12px;
    border-bottom: 1px solid #d8c4aa;
    font-weight: 700;
    line-height: 1.5;
}

.product-sheet-scroll {
    overflow-x: auto;
}

.product-sheet-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 13px;
}

.product-sheet-table th,
.product-sheet-table td {
    border: 1px solid #bfa98f;
    text-align: center;
    vertical-align: middle;
    padding: 7px 5px;
}

.product-sheet-table thead th {
    font-weight: 900;
}

.product-sheet-side {
    width: 86px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
}

.product-sheet-vertical {
    height: 178px;
    width: 48px;
    padding: 0;
}

.product-sheet-vertical span {
    display: inline-block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    line-height: 1.1;
    max-height: 164px;
}

.product-sheet-vertical--nutrition {
    background: #e0c49d;
}

.product-sheet-table tbody th {
    width: 86px;
    background: #f5eadc;
    font-weight: 900;
}

.product-sheet-table tbody td {
    height: 44px;
    background: #fff;
    font-weight: 900;
}

.product-sheet-mobile {
    display: none;
}

@media print {
    .site-header,
    .site-footer,
    .product-sheet-page-actions {
        display: none !important;
    }

    .section.product-sheet-page {
        padding: 0;
    }

    .product-sheet-page .container {
        width: 100%;
    }

    .product-sheet {
        border-radius: 0;
        box-shadow: none;
    }
}

.product-buy-form {
    max-width: none;
    gap: 12px;
}

.qty-and-buy {
    display: flex;
    gap: 14px;
    align-items: stretch;
    flex-wrap: wrap;
}

.product-qty-control {
    display: inline-grid;
    grid-template-columns: 46px 64px 46px;
    align-items: center;
    border: 2px solid #f2bf3e;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #232323;
    height: 50px;
}

.product-qty-input {
    border: none;
    outline: none;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    width: 100%;
    height: 50px;
    background: transparent;
}

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

.product-qty-input[type=number] {
    -moz-appearance: textfield;
}

.product-add-btn {
    height: 54px;
    min-width: 200px;
    border-radius: 999px;
    border: none;
    background: #f3ba16;
    color: #222;
    font-size: 17px;
    font-weight: 700;
    padding: 0 22px;
}

.product-add-btn:hover {
    filter: brightness(0.98);
}

.product-add-btn:disabled,
.product-qty-input:disabled,
.qty-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.form {
    display: grid;
    gap: 12px;
    max-width: 420px;
}

.form input,
.form textarea,
.form select {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 15px;
}

.muted {
    color: var(--muted);
}

.empty-state {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 24px;
    display: grid;
    gap: 12px;
    max-width: 520px;
}

.auth-card {
    max-width: 620px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    display: grid;
    gap: 18px;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.auth-form-full {
    grid-column: 1 / -1;
}

.auth-submit {
    min-height: 48px;
}

.auth-switch {
    margin: 0;
    color: var(--muted);
}

.auth-switch a {
    font-weight: 700;
}

.auth-switch a:hover {
    color: #ffd64a;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: start;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.cart-table th,
.cart-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
}

.cart-product {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-name {
    font-weight: 600;
}

.qty-input {
    width: 70px;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.link-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
}

.cart-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 16px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.checkout-form {
    display: block;
}

.checkout-panel {
    min-width: 0;
}

.checkout-top-stack {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.checkout-wide-section {
    grid-column: 1 / -1;
    display: grid;
    gap: 16px;
}

.checkout-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.checkout-option-group {
    display: grid;
    gap: 12px;
}

.checkout-option-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
}

.checkout-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}

.checkout-choice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-choice:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.checkout-choice--disabled {
    opacity: 0.62;
    cursor: not-allowed;
    background: #f7f3ed;
}

.checkout-choice--disabled .checkout-choice-content {
    cursor: not-allowed;
}

.checkout-choice input {
    margin-top: 2px;
}

.checkout-choice-content {
    display: grid;
    gap: 4px;
    line-height: 1.35;
}

.checkout-choice-content strong {
    font-size: 15px;
}

.checkout-choice-content em {
    display: inline-flex;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #efe3d3;
    color: #7a4a22;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    vertical-align: middle;
}

.checkout-choice-content small {
    font-size: 12px;
    color: var(--muted);
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-top: 10px;
}

.checkout-field {
    display: grid;
    gap: 6px;
}

.checkout-field-full {
    grid-column: 1 / -1;
}

.checkout-field label {
    font-size: 13px;
    font-weight: 600;
    color: #4a4038;
}

.checkout-input {
    width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    border: 1px solid #d8cbba;
    background: #fffdfb;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.checkout-field.is-disabled {
    opacity: 0.58;
}

.checkout-field.is-disabled .checkout-input {
    background: #f5f1eb;
}

.checkout-note {
    font-size: 12px;
}

.checkout-inline-note {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.checkout-submit {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
}

.checkout-summary {
    grid-column: 2;
    align-self: start;
    position: static;
    top: auto;
    gap: 14px;
}

.checkout-summary-title {
    font-size: 18px;
    font-weight: 700;
}

.checkout-summary-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    font-size: 13px;
}

.checkout-summary-items li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: #4b4137;
}

.checkout-success {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 24px;
    display: grid;
    gap: 12px;
    max-width: 520px;
}

.checkout-auth {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 24px;
    display: grid;
    gap: 12px;
    max-width: 520px;
}

.proforma-page {
    display: grid;
    gap: 14px;
}

.proforma-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.proforma-sheet {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    gap: 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.proforma-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}

.proforma-title {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    line-height: 1.1;
}

.proforma-meta {
    color: var(--muted);
    font-size: 14px;
    margin-top: 4px;
}

.proforma-seller {
    text-align: right;
    color: #453b33;
}

.proforma-parties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.proforma-parties section {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.proforma-parties h4 {
    margin: 0 0 8px;
    font-size: 15px;
}

.proforma-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.proforma-table th,
.proforma-table td {
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding: 10px 12px;
    font-size: 14px;
}

.proforma-table th {
    background: #f8efe3;
}

.proforma-table th:nth-child(2),
.proforma-table td:nth-child(2),
.proforma-table th:nth-child(3),
.proforma-table td:nth-child(3),
.proforma-table th:nth-child(4),
.proforma-table td:nth-child(4) {
    text-align: right;
    white-space: nowrap;
}

.proforma-totals {
    margin-left: auto;
    width: min(360px, 100%);
    display: grid;
    gap: 8px;
}

.proforma-totals > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.proforma-totals .grand-total {
    font-size: 18px;
    border-top: 1px solid var(--border);
    padding-top: 8px;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: start;
}

.account-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 20px;
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.order-list {
    display: grid;
    gap: 14px;
}

.order-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 10px;
    background: #fffdf9;
}

.order-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.order-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.order-status.status-new {
    background: #efe7dd;
    color: #5a4b3a;
}

.order-status.status-processing {
    background: #efefef;
    color: #111111;
}

.order-status.status-shipped {
    background: #e2f1ff;
    color: #2a5a7a;
}

.order-status.status-completed {
    background: #e5f2ea;
    color: #2d6b4f;
}

.order-status.status-cancelled {
    background: #ffe3db;
    color: #8a3b2c;
}

.order-total {
    font-weight: 700;
}

.account-favorites-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
}

.account-favorite-card {
    margin-bottom: 0;
}

.order-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.order-actions .btn {
    padding: 8px 14px;
}

.order-products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.order-products li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.form-error {
    background: #ffe3db;
    color: #8a3b2c;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.form-success {
    background: #e5f2ea;
    color: #2d6b4f;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.site-footer {
    padding: 34px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: #000;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.3fr) minmax(160px, 0.7fr) minmax(220px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.footer-brand-block {
    display: grid;
    gap: 10px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: 118px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 8px;
    line-height: 1.3;
}

.footer-line {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 6px;
    line-height: 1.35;
}

.footer-brand-block p {
    margin: 0 0 6px;
    line-height: 1.35;
    max-width: 560px;
}

.footer-contact-link {
    margin-left: 6px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-contact-link:hover {
    color: #ffd64a;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 214, 74, 0.12);
    color: #ffd64a;
    border-color: #ffd64a;
    transform: translateY(-1px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social a[aria-label="TikTok"] svg {
    width: 16px;
    height: 16px;
}

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

    .footer-brand-block p {
        max-width: none;
    }
}

.footer-link {
    display: inline-flex;
    margin-top: 8px;
    color: #ffffff;
    font-weight: 600;
}

.wa-help {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    justify-items: end;
    gap: 10px;
}

.wa-help-toggle {
    border: none;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    align-items: center;
    background: #25d366;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.36);
}

.wa-help-toggle:hover {
    background: #ffd64a;
    color: #111111;
    box-shadow: 0 12px 26px rgba(255, 214, 74, 0.3);
    transform: translateY(-1px);
}

.wa-help-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
}

.wa-help-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.wa-help-toggle:hover .wa-help-icon svg {
    fill: #111111;
}

.wa-help-panel {
    width: min(360px, calc(100vw - 24px));
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 18px 40px rgba(30, 32, 34, 0.18);
    padding: 16px;
    display: grid;
    gap: 10px;
}

.wa-help-panel[hidden] {
    display: none !important;
}

.wa-help-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wa-help-close {
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: var(--ink);
}

.wa-help-panel p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.wa-help-form {
    display: grid;
    gap: 8px;
}

.wa-help-form label {
    font-size: 13px;
    font-weight: 600;
    color: #4a4038;
}

.wa-help-form input,
.wa-help-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d7cabb;
    background: #fffdfb;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
}

.wa-help-form textarea {
    resize: vertical;
    min-height: 88px;
}

.wa-help-form input:focus,
.wa-help-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.wa-help-submit {
    margin-top: 4px;
    border: none;
    border-radius: 10px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 14px;
    cursor: pointer;
}

.wa-help-submit:hover {
    background: #ffd64a;
    color: #111111;
    filter: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: start;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    gap: 14px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    margin: 0;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-line {
    color: var(--muted);
}

.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social a {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fffdf9;
    color: var(--brand);
    font-size: 13px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-social a:hover {
    color: #ffd64a;
    border-color: #ffd64a;
    background: rgba(255, 214, 74, 0.08);
}

.contact-item {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
}

.contact-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--ink);
}

.contact-action-link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-action-link:hover {
    color: #ffd64a;
    opacity: 1;
}

.map-fallback {
    display: grid;
    gap: 12px;
}

.map-embed {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f5f5f5;
}

.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

@media (max-width: 1100px) {
    .tech-hero-container {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tech-hero-copy {
        text-align: center;
    }

    .tech-hero-title,
    .tech-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-hero-actions {
        justify-content: center;
    }

    .tech-hero-metrics {
        justify-content: center;
    }

    .tech-hero-stage {
        width: min(100%, 560px);
    }

    .landing-hero-lead {
        white-space: normal;
    }

    .landing-hero-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100%, calc(100% - 28px));
    }

    .tech-hero {
        padding: 34px 0 20px;
    }

    .tech-hero-kicker {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .tech-hero-title {
        font-size: clamp(30px, 10vw, 44px);
        max-width: 13.5ch;
    }

    .tech-hero-lead {
        font-size: 15px;
        line-height: 1.5;
        max-width: 34ch;
    }

    .tech-hero-actions {
        margin-top: 20px;
        gap: 10px;
    }

    .tech-hero-btn {
        min-width: 146px;
        min-height: 42px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .tech-hero-frame img {
        height: 264px;
        padding: 16px;
    }

    .tech-hero-product-card {
        position: static;
        margin-top: 12px;
    }

    .tech-hero-metric {
        min-width: 126px;
    }

    .site-header .site-header-container,
    .site-footer .site-footer-container {
        padding-inline: 14px;
    }

    .topbar {
        padding: 10px 0;
    }

    .logo {
        width: 150px;
    }

    .landing-hero {
        min-height: auto;
    }

    .landing-hero-content {
        padding: 56px 0 44px;
    }

    .landing-hero-kicker {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .landing-hero-title {
        flex-direction: column;
        align-items: center;
        gap: 0.04em;
        font-size: clamp(34px, 10.2vw, 54px);
        line-height: 0.96;
        letter-spacing: 0;
    }

    .landing-hero-title-static {
        white-space: nowrap;
        font-size: 0.88em;
        letter-spacing: 0.015em;
    }

    .landing-hero-title-dynamic {
        min-width: auto;
        text-align: center;
    }

    .landing-hero-lead {
        margin-top: 16px;
        max-width: 34ch;
        font-size: 15px;
        line-height: 1.5;
        white-space: normal;
    }

    .landing-hero-actions {
        margin-top: 24px;
        gap: 10px;
        justify-content: center;
    }

    .landing-hero-btn {
        width: auto;
        min-width: 150px;
        min-height: 44px;
        padding: 9px 16px;
        font-size: 12px;
        letter-spacing: 0.03em;
        text-align: center;
    }

    .section {
        padding: 34px 0;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .page-heading {
        font-size: clamp(26px, 9vw, 36px);
        margin-bottom: 10px;
    }

    .page-lead {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .features-head {
        margin-bottom: 24px;
    }

    .features-heading {
        letter-spacing: 0.06em;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-icon {
        width: 98px;
        height: 98px;
        margin-bottom: 14px;
    }

    .feature-icon svg {
        width: 48px;
        height: 48px;
    }

    .feature-card {
        padding: 10px 8px 6px;
    }

    .feature-card h3 {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .other-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .hero-brand-track,
    .hero-brand-slider {
        min-height: 350px;
    }

    .hero-brand-slide {
        padding: 22px 18px 74px;
    }

    .hero-brand-info h3 {
        font-size: 30px;
    }

    .hero-product-slider,
    .hero-product-slider .hero-brand-track {
        min-height: 500px;
    }

    .hero-product-slider .hero-brand-slide {
        grid-template-rows: auto auto auto;
        padding: 8px 6px 72px;
        gap: 12px;
    }

    .hero-product-slider .hero-brand-media {
        height: clamp(190px, 58vw, 250px);
        min-height: 190px;
        padding: 12px;
    }

    .hero-product-slider .hero-brand-info h3 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .hero-product-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .hero-add-cart-form {
        width: 100%;
    }

    .hero-add-btn,
    .hero-product-slider .hero-brand-cta {
        width: 100%;
        font-size: 15px;
        min-height: 42px;
    }

    .hero-product-actions .hero-brand-index {
        grid-column: 1 / -1;
        justify-self: end;
        margin-left: 0;
    }

    .latest-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .hero-product-meta {
        gap: 8px;
    }

    .hero-product-price {
        font-size: 22px;
    }

    .hero-espresso-slider {
        width: min(100%, 920px);
        justify-self: center;
    }

    .hero-espresso-pair {
        gap: 12px;
    }

    .hero-espresso-track {
        min-height: 340px;
    }

    .hero-espresso-controls .hero-brand-nav:first-of-type {
        left: -10px;
    }

    .hero-espresso-controls .hero-brand-nav:last-of-type {
        right: -10px;
    }
}

@media (max-width: 420px) {
    .latest-products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-products-grid {
        grid-template-columns: 1fr;
    }

    .product-sheet-mobile-nutrition {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .latest-products-slider .latest-product-card {
        flex-basis: min(82vw, 220px);
        width: min(82vw, 220px);
    }

    .home-hero-content {
        text-align: left;
    }

    .home-hero-content .hero-actions {
        justify-content: flex-start;
    }

    .hero-espresso-slider {
        width: 100%;
        justify-self: center;
    }

    .hero-espresso-track {
        min-height: 520px;
    }

    .hero-espresso-controls .hero-brand-nav {
        top: 42%;
    }

    .hero-espresso-controls .hero-brand-nav:first-of-type {
        left: 2px;
    }

    .hero-espresso-controls .hero-brand-nav:last-of-type {
        right: 2px;
    }

    .hero-espresso-controls .hero-brand-dots {
        bottom: -4px;
    }

    .home-brand-marquee::before,
    .home-brand-marquee::after {
        width: 26px;
    }

    .home-brand-marquee-group {
        gap: 10px;
    }

    .home-brand-marquee-item {
        width: clamp(88px, 30vw, 118px);
        height: 52px;
    }

    .home-brand-marquee-item img,
    .home-brand-marquee-item .brand-logo-image,
    .home-brand-marquee-item .brand-logo-focus {
        max-height: 36px;
    }
}

@media (max-width: 960px) {
    .events-page {
        padding-top: 34px;
    }

    .events-hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 24px 0 34px;
    }

    .events-intro-card {
        min-height: 0;
    }

    .events-service-button {
        width: min(220px, 100%);
    }

    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog-sidebar {
        position: static;
        top: auto;
    }

    .home-categories-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-categories-cards .home-category-card {
        min-height: 270px;
    }

    .home-category-visual {
        height: 120px;
    }

    .home-category-illustration {
        width: 90px;
        height: 90px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .events-page .container {
        padding-inline: 16px;
    }

    .events-page .eyebrow {
        margin-bottom: 8px;
    }

    .events-page .page-heading {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .events-page .page-lead {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .events-intro-card {
        padding: 20px;
        gap: 20px;
    }

    .events-service-label {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .events-intro-card h2 {
        font-size: 20px;
    }

    .events-intro-card p {
        font-size: 15px;
        line-height: 1.58;
    }

    .events-service-button {
        width: 100%;
        height: 44px;
    }

    .events-gallery {
        grid-template-columns: 1fr;
    }

    .events-gallery-item,
    .events-gallery-empty {
        border-radius: 8px;
    }

    .event-contact-modal {
        align-items: end;
        padding: 12px;
    }

    .event-contact-dialog {
        width: 100%;
        max-height: calc(100dvh - 24px);
        padding: 24px 18px 18px;
    }

    .event-contact-dialog h2 {
        font-size: 24px;
        padding-right: 42px;
    }

    .event-contact-row {
        grid-template-columns: 1fr;
    }

    .event-contact-form input,
    .event-contact-form textarea {
        font-size: 16px;
    }

    .home-categories-cards {
        grid-template-columns: 1fr;
    }

    .home-categories-cards .home-category-card {
        min-height: 0;
    }

    .home-category-visual {
        height: 112px;
    }

    .home-category-illustration {
        width: 84px;
        height: 84px;
    }

    .home-category-illustration svg {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 1240px) {
    .logo {
        width: 170px;
    }

    .main-nav {
        gap: 18px;
    }

    .nav-link {
        font-size: 15px;
    }

    .search {
        min-width: 232px;
    }

    .icon-link,
    .cart-link {
        font-size: 15px;
        height: 42px;
        padding: 8px 14px;
    }
}

@media (max-width: 960px) {
    .hero-espresso-slider-desktop {
        display: none;
    }

    .hero-espresso-slider-mobile {
        display: block;
        width: min(100%, 620px);
        justify-self: center;
    }

    .nav-row {
        grid-template-columns: 1fr auto 1fr;
    }

    .main-nav {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-header-tools {
        display: inline-flex;
    }

    .mobile-cart-button {
        display: inline-flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .logo {
        width: 168px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-brand-slider,
    .hero-brand-track {
        min-height: 360px;
    }

    .hero-product-slider,
    .hero-product-slider .hero-brand-track {
        min-height: 520px;
    }

    .hero-product-slider {
        max-width: 720px;
        justify-self: center;
    }

    .hero-product-slider .hero-brand-media {
        height: clamp(210px, 42vw, 270px);
        min-height: 210px;
    }

    .hero-espresso-slider {
        justify-self: center;
        width: min(100%, 620px);
    }

    .product-detail {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-buy-box {
        position: static;
        top: auto;
    }

    .product-media-column {
        float: none;
        width: auto;
        margin: 0;
        max-width: none;
    }

    .product-side-column {
        margin-left: 0;
        margin-bottom: 0;
    }

    .gallery-main {
        max-width: none;
    }

    .product-detail {
        gap: 26px;
    }

    .product-detail-title {
        font-size: clamp(24px, 8vw, 34px);
    }

    .product-buy-box .product-price {
        font-size: clamp(28px, 7vw, 36px);
    }

    .product-price-meta {
        gap: 10px;
    }

    .film-visual-band {
        width: min(38%, 180px);
        padding: 18px 16px;
    }

    .film-visual-roll {
        width: 48%;
    }

    .film-visual-box {
        left: 20%;
        right: 6%;
        bottom: 18%;
        height: 32%;
    }

    .product-purchase-row {
        align-items: stretch;
    }

    .product-variant-options {
        gap: 8px;
    }

    .product-variant-option {
        padding: 9px 13px;
        font-size: 13px;
    }

    .qty-and-buy {
        flex-direction: column;
        align-items: stretch;
    }

    .product-qty-control {
        width: 100%;
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .product-add-btn {
        width: 100%;
        min-width: 0;
    }

    .product-cart-form {
        width: 100%;
    }

    .product-description p {
        font-size: 16px;
    }

    .product-sheet-head {
        grid-template-columns: 1fr;
    }

    .product-sheet-cell,
    .product-sheet-cell:nth-child(3n),
    .product-sheet-cell:nth-last-child(-n + 3) {
        border-right: 0;
        border-bottom: 1px solid #ead8c5;
    }

    .product-sheet-span {
        grid-column: auto;
    }

    .product-sheet-table {
        min-width: 920px;
    }

    .product-sheet-scroll {
        display: none;
    }

    .product-sheet-mobile {
        display: grid;
        gap: 14px;
        padding: 14px;
        background: #fffaf2;
    }

    .product-sheet-mobile-block {
        display: grid;
        gap: 12px;
        border: 1px solid #d8c4aa;
        border-radius: 12px;
        background: #fff;
        padding: 14px;
    }

    .product-sheet-mobile-block h3 {
        margin: 0;
        color: #3b2419;
        font-size: 16px;
        line-height: 1.25;
    }

    .product-sheet-mobile-allergens {
        display: grid;
        gap: 8px;
    }

    .product-sheet-mobile-subtitle {
        font-size: 13px;
        font-weight: 900;
        color: #7a4a22;
        text-transform: uppercase;
    }

    .product-sheet-mobile-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-height: 30px;
    }

    .product-sheet-mobile-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 5px 10px;
        border-radius: 999px;
        border: 1px solid #d79a27;
        background: #fff2ca;
        color: #24170f;
        font-size: 13px;
        font-weight: 800;
    }

    .product-sheet-mobile-tags em {
        color: #7b7066;
        font-style: normal;
        font-size: 14px;
    }

    .product-sheet-mobile-nutrition {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .product-sheet-mobile-nutrition div {
        min-height: 64px;
        border: 1px solid #ead8c5;
        border-radius: 10px;
        background: #fffdf8;
        padding: 9px 10px;
        display: grid;
        align-content: space-between;
        gap: 8px;
    }

    .product-sheet-mobile-nutrition span {
        color: #6b5a4b;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .product-sheet-mobile-nutrition strong {
        color: #111;
        font-size: 18px;
        line-height: 1;
    }

    .auth-card {
        padding: 22px;
    }

    .auth-form--two {
        grid-template-columns: 1fr;
    }

    .systems-section {
        grid-template-columns: 1fr;
    }

    .cart-layout,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-fields {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        grid-column: auto;
        position: static;
        top: auto;
    }

    .checkout-choice-grid {
        grid-template-columns: 1fr;
    }

    .proforma-seller {
        text-align: left;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }

    .latest-products-grid {
        justify-content: stretch;
    }
}

@media (max-width: 960px) {
    .home-systems-section .other-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-systems-section .other-card {
        min-height: 232px;
    }
}

@media (max-width: 620px) {
    .home-systems-section {
        padding-top: 44px;
    }

    .home-systems-section .section-title {
        font-size: clamp(28px, 8vw, 34px);
    }

    .home-systems-intro {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .home-systems-section .other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-systems-section .other-card {
        min-height: 0;
        padding: 12px;
        gap: 10px;
    }

    .home-systems-section .other-thumb {
        max-width: 124px;
        border-radius: 12px;
    }

    .home-systems-section .other-title {
        font-size: 16px;
    }
}

@media (max-width: 620px) {
    .wa-help {
        right: 12px;
        bottom: 12px;
    }

    .wa-help-toggle {
        width: 54px;
        height: 54px;
    }

    .wa-help-panel {
        width: min(320px, calc(100vw - 16px));
    }
}

@media (max-width: 960px) {
    .site-header .site-header-container {
        padding-left: 12px;
        padding-right: 6px;
    }

    .topbar {
        padding: 8px 0;
    }

    .nav-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 58px;
        gap: 10px;
    }

    .logo {
        width: 142px;
        justify-self: start;
    }

    .nav-cta {
        justify-self: end;
        margin-left: auto;
    }

    .mobile-header-tools {
        display: inline-flex;
        margin-left: auto;
        justify-content: flex-end;
        justify-self: end;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-overlay {
        background: rgba(0, 0, 0, 0.62);
    }

    .mobile-drawer {
        width: min(90vw, 360px);
        background: #0f1114;
        color: #ffffff;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        padding: 18px 16px 18px;
    }

    .mobile-header {
        color: #ffffff;
    }

    .mobile-close {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.22);
        color: #ffffff;
    }

    .mobile-link {
        color: rgba(255, 255, 255, 0.92);
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.02);
    }

    .mobile-link.active,
    .mobile-link:hover {
        color: #111111;
        border-color: #ffffff;
        background: #ffffff;
    }

    .mobile-search {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .mobile-search input {
        color: #ffffff;
    }

    .mobile-search input::placeholder {
        color: rgba(255, 255, 255, 0.58);
    }
}

@media (max-width: 860px) {
    .cart-table {
        border: none;
        background: transparent;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: grid;
        gap: 12px;
    }

    .cart-table tr {
        display: grid;
        gap: 10px;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .cart-table td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding: 0;
        border-bottom: none;
    }

    .cart-table td:nth-child(2) {
        display: flex;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: #616161;
        flex: 0 0 auto;
        margin-top: 3px;
    }

    .cart-table td:first-child {
        display: block;
    }

    .cart-table td:first-child::before {
        display: none;
    }

    .cart-product {
        align-items: flex-start;
    }

    .cart-thumb {
        width: 62px;
        height: 62px;
        flex: 0 0 auto;
    }

    .qty-input {
        width: 92px;
    }

    .cart-actions .btn,
    .cart-summary .btn {
        width: 100%;
    }

    .checkout-auth,
    .checkout-success,
    .empty-state {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .cart-layout {
        gap: 14px;
    }

    .cart-summary,
    .checkout-card,
    .checkout-auth {
        padding: 14px;
    }

    .checkout-choice-content strong {
        font-size: 14px;
    }
}

@media print {
    .site-header,
    .site-footer,
    .proforma-toolbar,
    .wa-help {
        display: none !important;
    }

    .section {
        padding: 0;
    }

    .container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .proforma-sheet {
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
    }
}

@media (min-width: 961px) {
    .nav-overlay,
    .mobile-drawer {
        display: none;
    }
}
