
:root {
    --bg-color: #000000;
    --bg-accent: #111111;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --accent-color: #007BFF; /* 電光藍，類 BMW i 系列 */
    --accent-hover: #3395FF;
    --font-family: 'Helvetica Neue', Helvetica, Arial, 'Microsoft JhengHei', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- 通用元件 --- */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-main);
    background: transparent;
    color: var(--text-main);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--text-main);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px auto;
    font-weight: 300;
}

/* --- Header / Nav --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 12, 18, 0.18);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

header.is-scrolled {
    background: rgba(7, 10, 14, 0.78);
    border-bottom-color: rgba(255,255,255,0.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

body.nav-open header {
    background: rgba(7, 10, 14, 0.94);
    border-bottom-color: rgba(255,255,255,0.06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

body.nav-open {
    overflow: hidden;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    margin-top: 10px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-item-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    position: relative;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
}

.nav-links a:hover {
    color: var(--text-main);
}


.nav-cta .btn {
    padding: 10px 25px; font-size: 14px;
}


.cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a18 0%, #ff4d4f 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(255, 77, 79, 0.28);
}

.cart-cta-animate {
    animation: cartCtaGlow 1.6s ease-in-out infinite;
}

.cart-cta-label {
    animation: cartCtaBlink 1.2s ease-in-out infinite;
}

.cart-cta-animate .cart-count-badge {
    animation: cartBadgePulse 1.2s ease-in-out infinite;
}

@keyframes cartCtaGlow {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 106, 61, 0);
        border-color: rgba(255, 255, 255, 0.18);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(255, 106, 61, 0.12), 0 0 24px rgba(255, 106, 61, 0.22);
        border-color: rgba(255, 122, 24, 0.75);
    }
}

@keyframes cartCtaBlink {
    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.58;
        transform: translateY(-1px);
    }
}

@keyframes cartBadgePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(255, 77, 79, 0.28);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 10px 22px rgba(255, 77, 79, 0.42);
    }
}

.nav-item--active > a {
    color: var(--text-main);
}

.nav-item--active > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #6ea8ff 100%);
}

.nav-item--has-submenu {
    padding: 28px 0;
}

.nav-submenu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-submenu-toggle span {
    position: absolute;
    width: 12px;
    height: 1.5px;
    background: rgba(255,255,255,0.82);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-submenu-toggle span:last-child {
    transform: rotate(90deg);
}

.nav-item--submenu-open .nav-submenu-toggle span:last-child {
    transform: rotate(0deg);
    opacity: 0;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 14px 0;
    display: grid;
    gap: 2px;
    background: rgba(8, 10, 14, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1001;
}

.nav-submenu li {
    width: 100%;
}

.nav-submenu a {
    position: relative;
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.78);
    white-space: nowrap;
}

.nav-submenu a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-main);
}

.nav-submenu a.is-active {
    background: linear-gradient(90deg, rgba(255,255,255,0.12) 0%, rgba(72, 132, 255, 0.16) 100%);
    color: var(--text-main);
}

.nav-submenu a.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #6ea8ff 100%);
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-main);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle--open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 14, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 999;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
}

@keyframes mobileNavPanelIn {
    0% {
        opacity: 0;
        transform: translateY(-14px) scale(0.985);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileNavItemIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileSubmenuIn {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-mobile-only {
    display: none;
}

.nav-mobile-divider {
    height: 1px;
    margin: 10px 0 6px;
    background: rgba(255,255,255,0.08);
}

.nav-mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-mobile-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a18 0%, #ff4d4f 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

/* --- Hero Section (發表會感覺的核心) --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 這裡請替換成一張高品質的汽車內裝或音響特寫圖，最好帶有 LED 氛圍燈 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), 
                        url('https://images.unsplash.com/photo-1549231718-d7a86b51e06f?q=80&w=2560'); 
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    animation: heroZoom out 10s infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    padding-top: 80px; /* offset for nav */
}

.hero-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-description {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

.hero-btns {
    opacity: 0;
    animation: fadeInUp 1s forwards 1.4s;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Features Section --- */
.features {
    padding: 120px 0;
    background-color: var(--bg-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    background: #000;
    padding: 60px 40px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
    position: relative;
}

.feature-item:hover {
    border-color: rgba(0,123,255,0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: block;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 15px;
}

/* --- Showcase Section (產品展示) --- */
.showcase {
    padding: 120px 0;
}

.showcase-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-img {
    flex: 1;
    overflow: hidden;
    background: #111;
    height: 500px;
    position: relative;
}

/* 替換為實際產品圖，如喇叭、功放 */
.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-item:hover .showcase-img img {
    transform: scale(1.03);
}

.showcase-content {
    flex: 1;
    padding: 0 40px;
}

.product-series {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.product-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.product-desc {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    font-size: 16px;
}

/* --- CTA Section --- */
.cta-spy {
    padding: 150px 0;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
                        url('https://images.unsplash.com/photo-1600705722908-bab1e61c0b4d?q=80&w=2560');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
}

.cta-spy h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* --- Footer --- */
footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px 0;
    background-color: #050505;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.02) 16%, transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.015) 12%, transparent 30%),
        radial-gradient(circle at 72% 68%, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.012) 14%, transparent 32%),
        radial-gradient(circle at 28% 78%, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.01) 12%, transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.035) 0, transparent 22%, transparent 48%, rgba(255,255,255,0.02) 58%, transparent 72%),
        linear-gradient(115deg, #050505 0%, #101010 18%, #070707 34%, #161616 52%, #090909 68%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.252);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), inset 0 60px 120px rgba(255,255,255,0.015);
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(125deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 16px),
        repeating-linear-gradient(35deg, rgba(0,0,0,0.22) 0 3px, transparent 3px 19px);
    mix-blend-mode: soft-light;
    opacity: 0.55;
    pointer-events: none;
}

footer > .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--text-main);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 12px;
    letter-spacing: 1px;
}

/* --- Responsive 響應式 RWD --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-item, .showcase-item:nth-child(even) { flex-direction: column; gap: 30px; }
    .showcase-img { width: 100%; height: 350px; }
    .showcase-content { padding: 0; text-align: center; }
}

@media (max-width: 768px) {
    nav {
        height: auto;
        min-height: 80px;
        flex-wrap: wrap;
        padding: 16px 0;
    }
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        order: 3;
        margin: 0;
        padding: 20px;
        background: rgba(6, 8, 12, 0.96);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 24px 60px rgba(0,0,0,0.35);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 1002;
    }
    .nav-links.nav-links--open {
        display: flex;
        animation: mobileNavPanelIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links.nav-links--open > li {
        opacity: 0;
        animation: mobileNavItemIn 0.3s ease forwards;
    }
    .nav-links.nav-links--open > li:nth-child(1) {
        animation-delay: 0.04s;
    }
    .nav-links.nav-links--open > li:nth-child(2) {
        animation-delay: 0.09s;
    }
    .nav-links.nav-links--open > li:nth-child(3) {
        animation-delay: 0.14s;
    }
    .nav-links.nav-links--open > li:nth-child(4) {
        animation-delay: 0.19s;
    }
    .nav-mobile-only {
        display: block;
        width: 100%;
    }
    .nav-item-row,
    .nav-links > li > a {
        display: block;
        padding: 14px 0;
    }
    .nav-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .nav-item--active > a::after {
        bottom: 6px;
        width: 44px;
    }
    .nav-item--has-submenu {
        padding: 0;
    }
    .nav-submenu-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }
    .nav-submenu {
        position: static;
        min-width: 100%;
        margin: 0 0 10px;
        padding: 10px 0 0 14px;
        border: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        gap: 4px;
    }
    .nav-item--submenu-open .nav-submenu {
        display: grid;
        animation: mobileSubmenuIn 0.24s ease forwards;
    }
    .nav-submenu a {
        padding: 10px 14px;
        background: rgba(255,255,255,0.03);
        white-space: normal;
    }
    .nav-cta {
        display: none;
    }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 16px; }
    .section-title { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

.hero-sequence-title {
    opacity: 0;
    transform: translateY(22px);
    animation: catalogTitleReveal 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s forwards;
}

.hero-text-mask {
    display: inline-block;
    color: transparent;
    background-image: linear-gradient(115deg, #f2f6ff 0%, #ffffff 14%, #ffb392 32%, #ffe6b0 48%, #ffffff 58%, #ff7a4b 74%, #eef5ff 88%, #ffffff 100%);
    background-size: 220% 100%;
    background-position: 0 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: catalogTextMask 6s linear 3s infinite;
}

.hero-sequence-card {
    opacity: 0;
    transform: translateY(20px);
    animation: catalogMetaCardReveal 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-sequence-card-1 {
    animation-delay: 0.9s;
}

.hero-sequence-card-2 {
    animation-delay: 1.55s;
}

.hero-sequence-card-3 {
    animation-delay: 2.2s;
}

.catalog-product-stage {
    position: relative;
    margin-top: 0px;
    padding: 0 0 90px;
}

.catalog-product-stage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(215, 221, 229, 0.18), rgba(255, 255, 255, 0.98) 18%),
        linear-gradient(90deg, rgba(20, 24, 30, 0.05) 0, rgba(20, 24, 30, 0.05) 1px, transparent 1px, transparent 160px);
    background-size: auto, 160px 160px;
}

.catalog-empty-state {
    padding: 38px 32px;
    border: 1px solid #cfd4dc;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%);
    box-shadow: 18px 18px 0 rgba(16, 20, 27, 0.05);
    color: #15191f;
}

.catalog-empty-state small {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #a2472b;
}

.catalog-empty-state h4 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.catalog-empty-state p {
    max-width: 720px;
    margin: 0;
    line-height: 1.9;
    color: #58606c;
}

.catalog-filter-reset-inline {
    margin-top: 22px;
    width: fit-content;
}

@keyframes catalogTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(22px);
        letter-spacing: -0.02em;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.05em;
    }
}

@keyframes catalogMetaCardReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes catalogTextMask {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 220% 50%;
    }
}

@media (max-width: 991.98px) {
    .catalog-race-intro {
        grid-template-columns: 1fr;
    }

    .catalog-race-panel {
        min-height: auto;
    }

    .catalog-filter-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-filter-search,
    .catalog-filter-actions {
        grid-column: 1 / -1;
    }

    .catalog-section-heading {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .catalog-race-header {
        padding: 124px 0 88px;
    }

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

    .catalog-product-stage {
        margin-top: -36px;
    }

    .catalog-product-shell {
        padding-top: 34px;
    }

    .catalog-filter-panel {
        padding: 20px;
    }

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

    .catalog-card-body {
        padding: 20px;
    }

    .catalog-card-bottom {
        flex-direction: column;
        align-items: start;
    }
}

.product-stage {
    position: relative;
    margin-top: 0px;
    padding: 0 0 96px;
}

.product-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(108, 168, 246, 0.18), rgba(0, 0, 0, 0.98) 18%),
        linear-gradient(90deg, rgba(176, 208, 255, 0.1) 0, rgba(231, 238, 248, 0.1) 1px, transparent 1px, transparent 160px);
    background-size: auto, 160px 160px;
}

.product-stage-shell {
    position: relative;
    z-index: 1;
    padding-top: 0px;
}

.product-main-card,
.product-content-card,
.product-gallery-card,
.related-products {
    border: 1px solid #cfd4dc;
    border-radius: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%);
    box-shadow: 18px 18px 0 rgba(16, 20, 27, 0.05);
}

.product-main-card::before,
.product-content-card::before,
.product-gallery-card::before,
.related-products::before {
    content: "";
    display: block;
    width: 78px;
    height: 4px;
    background: #ff6a3d;
}

.product-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    gap: 34px;
    align-items: start;
    margin-top: 24px;
}

.product-main-visual {
    position: relative;
    border: 1px solid #d6dbe2;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.92) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
    overflow: hidden;
}

.product-main-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.product-main-fallback {
    display: grid;
    place-items: center;
    min-height: 420px;
    font-size: 4rem;
    color: #101419;
}

.product-main-copy {
    color: #11151b;
}

.product-main-code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8a929d;
}

.product-main-code::before {
    content: "";
    width: 36px;
    height: 1px;
    background: #ff6a3d;
}

.product-main-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #101419;
}

.product-main-lead {
    margin: 20px 0 0;
    color: #55606c;
    line-height: 1.9;
}

.product-main-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.product-main-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #d2d7de;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5c6470;
    background: rgba(255, 255, 255, 0.78);
}

.product-purchase-panel {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid #d6dbe2;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.product-purchase-grid {
    display: grid;
    grid-template-columns: minmax(140px, 160px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.product-field {
    display: grid;
    align-content: start;
}

.product-purchase-summary {
    min-width: 0;
}

.product-field label,
.product-price-label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8a929d;
}

.product-field .form-select {
    border-radius: 0;
    border: 1px solid #cfd4dc;
    min-height: 52px;
    color: #15191f;
    background-color: #ffffff;
    box-shadow: none;
}

.product-stock-note {
    margin-top: 10px;
    color: #a23521;
    font-size: 0.92rem;
}

.product-price-strip {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    min-height: 100%;
    padding: 2px 0 0 24px;
    border-left: 1px solid #d7dde5;
}

.product-price-value {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #101419;
}

.product-price-value s {
    margin-right: 10px;
    font-size: 1rem;
    color: #8f98a4;
    text-decoration-thickness: 1px;
}

.product-add-form {
    margin-top: 20px;
}

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

.product-add-btn,
.product-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    border: 1px solid #15191f;
    border-radius: 0;
    background: #063478;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.product-add-btn:hover,
.product-link-btn:hover {
    background: #ff6a3d;
    border-color: #ff6a3d;
    color: #ffffff;
}

.product-link-btn--line {
    background: #06c755;
    border-color: #06c755;
    color: #ffffff;
}

.product-link-btn--line:hover {
    background: #05a847;
    border-color: #05a847;
    color: #ffffff;
}

.product-link-btn--map {
    background: #f14242;
    border-color: #f14242;
    color: #f7f7f8;
}

.product-link-btn--map:hover {
    background: #cf1616;
    border-color: #cf1616;
    color: #ffffff;
}

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

.product-cart-feedback {
    min-height: 24px;
    margin: 12px 0 0;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1c6a37;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-cart-feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-cart-feedback.is-error {
    color: #a23521;
}

.product-main-card,
.product-gallery-card,
.product-content-card,
.related-products {
    margin-top: 8px;
    padding: 28px 30px 30px;
}


.product-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-top: 20px;
    margin-bottom: 22px;
}

.product-section-head h3,
.related-products h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #101419;
}

.product-section-head p,
.related-products-intro {
    max-width: 520px;
    margin: 0;
    color: #58606c;
    line-height: 1.85;
}

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

.product-gallery-item {
    display: block;
    border: 1px solid #d4dae2;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.92) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
    overflow: hidden;
}

.product-gallery-frame {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.45s ease;
}

.product-gallery-item:hover .product-gallery-frame img {
    transform: scale(1.05);
}

.product-gallery-caption {
    padding: 12px 14px;
    border-top: 1px solid #d4dae2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #58606c;
    background: rgba(255, 255, 255, 0.82);
}

.product-description-body {
    margin-top: 20px;
    color: #17202b;
    line-height: 1.95;
}

.product-description-body h1,
.product-description-body h2,
.product-description-body h3,
.product-description-body h4,
.product-description-body h5,
.product-description-body h6 {
    margin-top: 1.6em;
    margin-bottom: 0.75em;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #101419;
}

.product-description-body p:last-child {
    margin-bottom: 0;
}

.related-products-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-top: 20px;
    margin-bottom: 28px;
}

.related-grid {
    row-gap: 26px;
}

.related-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid #cfd4dc;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%);
    box-shadow: 14px 14px 0 rgba(16, 20, 27, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.related-product-card:hover {
    transform: translate(-6px, -6px);
    border-color: #8e99a8;
    box-shadow: 20px 20px 0 rgba(16, 20, 27, 0.1);
}

.related-product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid #d8dde5;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.9) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
}

.related-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-media img {
    transform: scale(1.05);
}

.related-product-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 2.8rem;
    color: #0f1319;
}

.related-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
    color: #11151b;
}

.related-product-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.related-product-topline a {
    color: #15191f;
}

.related-product-code {
    color: #8a929d;
}

.related-product-title {
    margin: 0 0 14px;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.related-product-title a {
    color: inherit;
}

.related-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    min-height: 34px;
}

.related-product-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid #d2d7de;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c6470;
    background: rgba(255, 255, 255, 0.72);
}

.related-product-spacer {
    flex: 1;
}

.related-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid #d8dde5;
}

.related-product-price {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #101419;
}

.related-product-price s {
    margin-right: 8px;
    color: #8f98a4;
    font-size: 0.95rem;
    text-decoration-thickness: 1px;
}

.related-product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a2472b;
}

@media (max-width: 991.98px) {
    .product-race-heading,
    .product-main-grid {
        grid-template-columns: 1fr;
    }

    .product-race-aside {
        min-height: auto;
    }

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

    .related-products-head,
    .product-section-head {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .product-race-header {
        padding: 124px 0 88px;
    }

    .product-race-meta {
        grid-template-columns: 1fr;
    }

    .product-stage {
        margin-top: -36px;
    }

    .product-stage-shell {
        padding-top: 34px;
    }

    .product-main-card,
    .product-content-card,
    .product-gallery-card,
    .related-products {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-main-card {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .product-purchase-grid,
    .product-price-strip,
    .related-product-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: start;
    }

    .product-price-strip {
        min-height: auto;
        padding: 0;
        border-left: 0;
        border-top: 1px solid #d7dde5;
        padding-top: 18px;
    }

    .product-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-main-visual img,
    .product-main-fallback {
        min-height: 280px;
    }
}

.catalog-slim-header--cart {
    background:
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 60%, rgba(6, 52, 120, 0.92) 100%);
}

.cart-stage {
    padding-bottom: 112px;
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    gap: 28px;
    align-items: start;
}

.cart-items-card,
.cart-summary-card,
.cart-empty-card {
    position: relative;
}

.cart-section-head {
    margin-top: 0;
}

.cart-overview-title {
    margin: 0;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #101419;
}

.cart-message-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.cart-message {
    padding: 14px 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.88);
    color: #17202b;
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
}

.cart-message--success {
    border-left: 4px solid #1f7a4f;
}

.cart-message--error {
    border-left: 4px solid #b23a2c;
}

.cart-item-list {
    display: grid;
    gap: 18px;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 0;
    border-top: 1px solid #d8dde5;
}

.cart-item-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border: 1px solid #d8dde5;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.9) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
    overflow: hidden;
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.cart-item-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #101419;
    font-size: 2.4rem;
}

.cart-item-copy {
    min-width: 0;
}

.cart-item-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-item-code,
.cart-item-price,
.cart-item-store,
.cart-item-subtotal-wrap small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cart-item-code,
.cart-item-store,
.cart-item-subtotal-wrap small {
    color: #8a929d;
}

.cart-item-price {
    color: #0d3579;
}

.cart-item-title {
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #101419;
}

.cart-item-title a {
    color: inherit;
}

.cart-item-store {
    margin-bottom: 18px;
}

.cart-item-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 16px;
}

.cart-quantity-group {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #cfd4dc;
    background: #ffffff;
}

.cart-quantity-btn {
    width: 44px;
    border: 0;
    background: #eef2f6;
    color: #11151b;
    font-size: 1.1rem;
    font-weight: 800;
}

.cart-quantity-input {
    width: 72px;
    min-height: 44px;
    border: 0;
    border-left: 1px solid #d8dde5;
    border-right: 1px solid #d8dde5;
    text-align: center;
    color: #11151b;
    background: #ffffff;
}

.cart-item-subtotal-wrap {
    display: grid;
    gap: 6px;
    min-width: 150px;
}

.cart-item-subtotal-wrap strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #101419;
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #d8dde5;
    background: #ffffff;
    color: #a23521;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cart-summary-body {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #d8dde5;
    color: #4e5865;
}

.cart-summary-row strong {
    font-size: 1.12rem;
    font-weight: 800;
    color: #101419;
}

.cart-summary-row--total {
    color: #101419;
}

.cart-summary-row--total strong {
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.cart-summary-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.cart-secondary-btn {
    background: #ffffff;
    color: #101419;
    border-color: #cfd4dc;
}

.cart-secondary-btn:hover {
    background: #101419;
    border-color: #101419;
    color: #ffffff;
}

.cart-sibtn {
    text-decoration: none;
}

.cart-empty-card {
    padding: 34px 30px 40px;
}

.cart-empty-state {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 14px;
    margin-top: 18px;
    color: #101419;
}

.cart-empty-icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 1px solid #d8dde5;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
    font-size: 2rem;
    color: #0d3579;
}

.cart-empty-state h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.cart-empty-state p {
    max-width: 560px;
    margin: 0;
    line-height: 1.85;
    color: #58606c;
}

.cart-empty-btn {
    width: auto;
    min-width: 220px;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .cart-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .cart-item-row {
        grid-template-columns: 1fr;
    }

    .cart-item-media {
        min-height: 240px;
    }

    .cart-item-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-item-subtotal-wrap,
    .cart-remove-btn,
    .cart-quantity-group {
        width: 100%;
    }

    .cart-quantity-input {
        width: 100%;
    }
}

/* Category Track */
.category-track-header {
    position: relative;
    padding: 146px 0 108px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 61, 0.22), transparent 30%),
        linear-gradient(118deg, #0c0e12 0%, #102e60 52%, #2a323c 100%);
    overflow: hidden;
}

.category-track-header::before,
.category-track-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.category-track-header::before {
    background:
        linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.12) 72.2% 72.5%, transparent 72.7% 100%),
        linear-gradient(90deg, transparent 0 78%, rgba(255, 106, 61, 0.55) 78.2% 78.6%, transparent 78.9% 100%),
        linear-gradient(180deg, transparent 0 70%, rgba(255, 255, 255, 0.06) 70.2% 70.5%, transparent 70.7% 100%);
    opacity: 0.95;
}

.category-track-header::after {
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 60px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 110px 110px, 110px 110px;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}

.category-track-shell {
    position: relative;
    z-index: 1;
}

.category-track-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 42px;
    align-items: center;
}

.category-track-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ff9c80;
}

.category-track-kicker::before {
    content: "";
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #ff6a3d, #f7f8fb);
}

.category-track-title {
    margin: 0;
    font-size: clamp(2.9rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #f6f7fb;
}

.category-track-title span {
    color: #ff7850;
}

.category-track-copy {
    max-width: 660px;
    margin: 24px 0 0;
    font-size: 1.02rem;
    line-height: 1.9;
    color: rgba(245, 247, 251, 0.74);
}

.category-track-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.category-track-meta-card {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.category-track-meta-card small {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.category-track-meta-card strong {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ffffff;
}

.category-track-panel {
    position: relative;
    padding: 30px;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(255, 106, 61, 0.18), transparent 58%);
}

.category-track-panel::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 92px;
    height: 92px;
    border-top: 2px solid #ff6a3d;
    border-right: 2px solid #ff6a3d;
}

.category-track-panel::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 62px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

.category-track-panel-label {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff9c80;
}

.category-track-panel h2 {
    margin: 0 0 14px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

/* .catalog-product-stage {
    position: relative;
    margin-top: -54px;
    padding: 0 0 90px;
}

.catalog-product-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(215, 221, 229, 0.18), rgba(255, 255, 255, 0.98) 18%),
        linear-gradient(90deg, rgba(20, 24, 30, 0.05) 0, rgba(20, 24, 30, 0.05) 1px, transparent 1px, transparent 160px);
    background-size: auto, 160px 160px;
} */

.catalog-store-image {
    width: 100%;
    height: auto;
}

.catalog-product-shell {
    position: relative;
    z-index: 1;
    padding-top: 48px;
}

.catalog-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
    color: #15191f;
}

.catalog-section-heading small {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #a2472b;
}

.catalog-section-heading h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #e78e73;
}

.catalog-section-heading p {
    max-width: 520px;
    margin: 0;
    color: #58606c;
    line-height: 1.9;
}

.catalog-grid {
    row-gap: 26px;
}

.catalog-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid #cfd4dc;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%);
    box-shadow: 18px 18px 0 rgba(16, 20, 27, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.catalog-product-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 72px;
    height: 4px;
    background: #ff6a3d;
}

.catalog-product-card:hover {
    transform: translate(-6px, -6px);
    border-color: #8e99a8;
    box-shadow: 24px 24px 0 rgba(16, 20, 27, 0.1);
}

.catalog-product-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid #d8dde5;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.5) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
}

.catalog-product-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.catalog-product-card:hover .catalog-product-media img {
    transform: scale(1.05);
}

.catalog-product-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #0f1319;
    font-size: 2.8rem;
}

.catalog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
    color: #11151b;
}

.catalog-card-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.catalog-card-category,
.catalog-card-code {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.catalog-card-category {
    color: #e96213;
}

.catalog-card-code {
    color: #8a929d;
}

.catalog-card-title {
    margin: 0 0 14px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.catalog-card-title a {
    color: inherit;
}

.catalog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    min-height: 34px;
}

.catalog-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid #d2d7de;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c6470;
    background: rgba(255, 255, 255, 0.72);
}

.catalog-card-spacer {
    flex: 1;
}

.catalog-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid #d8dde5;
}

.catalog-card-price-label {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8a929d;
}

.catalog-card-price {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #101419;
}

.catalog-card-price s {
    margin-right: 10px;
    color: #8f98a4;
    font-size: 1rem;
    text-decoration-thickness: 1px;
}

.catalog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a2472b;
    background: transparent;
}

.catalog-pagination {
    margin-top: 48px;
}

.catalog-pagination .pagination {
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-pagination .page-link {
    min-width: 48px;
    padding: 12px 16px;
    border: 1px solid #cfd4dc;
    border-radius: 0;
    color: #171c22;
    background: #ffffff;
    font-weight: 700;
    box-shadow: 8px 8px 0 rgba(16, 20, 27, 0.05);
}

.catalog-pagination .page-item.active .page-link {
    border-color: #171c22;
    color: #ffffff;
    background: #ef7102;
    box-shadow: 8px 8px 0 rgba(255, 106, 61, 0.3);
}

.catalog-pagination .page-item.disabled .page-link {
    color: #a5adb8;
    background: #eef1f5;
    border-color: #dde2e8;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .category-track-grid {
        grid-template-columns: 1fr;
    }

    .category-track-panel {
        min-height: auto;
    }

    .catalog-section-heading {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .category-track-header {
        padding: 124px 0 88px;
    }

    .category-track-meta {
        grid-template-columns: 1fr;
    }

    .catalog-product-stage {
        margin-top: -36px;
    }

    .catalog-product-shell {
        padding-top: 34px;
    }

    .catalog-card-body {
        padding: 20px;
    }

    .catalog-card-bottom {
        flex-direction: column;
        align-items: start;
    }
}

/* Tag Vector */
.tag-vector-header {
    position: relative;
    padding: 146px 0 108px;
    background:
        radial-gradient(circle at 18% 22%, rgba(69, 203, 255, 0.18), transparent 30%),
        radial-gradient(circle at 82% 24%, rgba(255, 130, 76, 0.2), transparent 24%),
        linear-gradient(118deg, #091019 0%, #0f365d 54%, #191f24 100%);
    overflow: hidden;
}

.tag-vector-header::before,
.tag-vector-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tag-vector-header::before {
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(94, 218, 255, 0.16) 16.1% 16.35%, transparent 16.5% 100%),
        linear-gradient(90deg, transparent 0 23%, rgba(255, 255, 255, 0.12) 23.1% 23.3%, transparent 23.45% 100%),
        linear-gradient(90deg, transparent 0 30%, rgba(255, 134, 84, 0.4) 30.1% 30.45%, transparent 30.6% 100%),
        linear-gradient(180deg, transparent 0 72%, rgba(255, 255, 255, 0.06) 72.2% 72.5%, transparent 72.8% 100%);
    opacity: 0.95;
}

.tag-vector-header::after {
    background:
        radial-gradient(circle at 76% 52%, rgba(94, 218, 255, 0.18) 0 1px, transparent 1px 100%),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 26px 26px, 120px 120px, 120px 120px;
    mix-blend-mode: soft-light;
    opacity: 0.28;
}

.tag-vector-shell {
    position: relative;
    z-index: 1;
}

.tag-vector-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 42px;
    align-items: center;
}

.tag-vector-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #86dfff;
}

.tag-vector-kicker::before {
    content: "";
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #4ad0ff, #ffffff);
}

.tag-vector-title {
    margin: 0;
    font-size: clamp(2.9rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #f6f7fb;
}

.tag-vector-title span {
    color: #7ce3ff;
}

.tag-vector-copy {
    max-width: 660px;
    margin: 24px 0 0;
    font-size: 1.02rem;
    line-height: 1.9;
    color: rgba(245, 247, 251, 0.74);
}

.tag-vector-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.tag-vector-meta-card {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.tag-vector-meta-card small {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tag-vector-meta-card strong {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ffffff;
}

.tag-vector-panel {
    position: relative;
    padding: 30px;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(74, 208, 255, 0.18), transparent 58%);
}

.tag-vector-panel::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 92px;
    height: 92px;
    border-top: 2px solid #4ad0ff;
    border-right: 2px solid #4ad0ff;
}

.tag-vector-panel::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 62px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

.tag-vector-panel-label {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8de4ff;
}

.tag-vector-panel h2 {
    margin: 0 0 14px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.tag-vector-panel p {
    max-width: 300px;
    margin: 0 0 28px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.tag-vector-panel ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.tag-vector-panel li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f4f6fb;
}

.tag-vector-panel li::before {
    content: "";
    width: 36px;
    height: 1px;
    background: #4ad0ff;
}

@media (max-width: 991.98px) {
    .tag-vector-grid {
        grid-template-columns: 1fr;
    }

    .tag-vector-panel {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .tag-vector-header {
        padding: 124px 0 88px;
    }

    .tag-vector-meta {
        grid-template-columns: 1fr;
    }
}


/* Product List */
/* ── Compact Page Header ───────────────────────────────────────── */
  .catalog-slim-header {
    padding: 100px 0 40px;
    background:
      linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 60%, rgba(10, 12, 144, 0.88) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .catalog-slim-header__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .catalog-slim-header__left {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }
  .catalog-slim-header__accent {
    width: 3rem;
    height: 3px;
    background: #2A4386;
    flex-shrink: 0;
    margin-bottom: 0.2rem;
  }
  .catalog-slim-header__kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9bb3fd;
  }
  .catalog-slim-header__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #e5e2e1;
    margin: 0;
  }
  .catalog-slim-header__title span {
    color: #2A4386;
  }
    .catalog-slim-header__title--reveal {
        transform: translateY(34px);
        animation-duration: 3s;
        animation-delay: 0.08s;
    }
    .catalog-slim-header__title-mask {
        animation-duration: 6.4s;
        animation-delay: 2.6s;
    }
  .catalog-slim-header__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .catalog-slim-header__meta-item {
    text-align: right;
  }
  .catalog-slim-header__meta-item small {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8e909c;
  }
  .catalog-slim-header__meta-item strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c6c6c7;
  }

  /* ── Sidebar Layout ────────────────────────────────────────────── */
  .catalog-layout {
    padding: 3rem 0 5rem;
  }
  .catalog-sidebar {
    padding-right: 1.5rem;
  }
  .catalog-sidebar-section {
    margin-bottom: 2rem;
  }
  .catalog-sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c6c6c7;
    margin-bottom: 0.75rem;
    display: block;
  }
  .catalog-sidebar-input {
    width: 100%;
    background: #201f1f;
    border: none;
    border-left: 2px solid #2A4386;
    color: #e5e2e1;
    font-size: 0.8125rem;
    padding: 0.6rem 0.875rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .catalog-sidebar-input:focus {
    border-left-color: #9bb3fd;
  }
  .catalog-sidebar-select {
    width: 100%;
    background: #201f1f;
    border: none;
    border-left: 2px solid transparent;
    color: #e5e2e1;
    font-size: 0.8125rem;
    padding: 0.6rem 0.875rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238e909c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s;
  }
  .catalog-sidebar-select:focus {
    border-left-color: #2A4386;
  }
  .catalog-sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 2rem 0;
  }
  .catalog-sidebar-apply {
    display: block;
    width: 100%;
    padding: 0.65rem;
    background: #2A4386;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 0.5rem;
  }
  .catalog-sidebar-apply:hover {
    background: #3a56b0;
  }
  .catalog-sidebar-reset {
    display: block;
    width: 100%;
    padding: 0.55rem;
    background: transparent;
    color: #8e909c;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .catalog-sidebar-reset:hover {
    color: #c6c6c7;
    border-color: rgba(255,255,255,0.2);
  }
  .catalog-sidebar-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.25rem;
  }
  .catalog-sidebar-chip {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9bb3fd;
    background: rgba(42,67,134,0.2);
    border: 1px solid rgba(42,67,134,0.4);
    padding: 0.25rem 0.5rem;
  }
  .catalog-sidebar-promo {
    padding: 1.25rem;
    background: rgba(42,67,134,0.08);
    border-left: 2px solid #2A4386;
    margin-top: 2rem;
  }
  .catalog-sidebar-promo small {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9bb3fd;
    display: block;
    margin-bottom: 0.5rem;
  }
  .catalog-sidebar-promo h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e5e2e1;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .catalog-sidebar-promo a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9bb3fd;
    text-decoration: none;
  }
  .catalog-sidebar-promo a:hover {
    text-decoration: underline;
  }

  /* ── Results toolbar ───────────────────────────────────────────── */
  .catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.236);
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .catalog-toolbar__count {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    color: #8e909c;
  }
  .catalog-main-area {
    padding-left: 0.5rem;
  }

  @media (max-width: 991px) {
    .catalog-sidebar {
      padding-right: 0;
      margin-bottom: 2rem;
    }
    .catalog-main-area {
      padding-left: 0;
    }
    .catalog-slim-header__inner {
      flex-direction: column;
      align-items: flex-start;
    }
    .catalog-slim-header__meta {
      align-items: flex-start;
    }
  }

.catalog-slim-header--checkout {
    background:
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 52%, rgba(13, 53, 121, 0.92) 100%);
}

.catalog-slim-header--auth {
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 106, 61, 0.18), transparent 28%),
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 54%, rgba(13, 53, 121, 0.92) 100%);
}

.catalog-slim-header--orders {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 106, 61, 0.16), transparent 26%),
        radial-gradient(circle at 86% 24%, rgba(93, 159, 255, 0.18), transparent 24%),
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 54%, rgba(13, 53, 121, 0.92) 100%);
}

.catalog-slim-header--contact {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 106, 61, 0.18), transparent 28%),
        radial-gradient(circle at 84% 24%, rgba(89, 157, 255, 0.18), transparent 24%),
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 50%, rgba(13, 53, 121, 0.92) 100%);
}

.catalog-slim-header--blog {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 106, 61, 0.16), transparent 28%),
        radial-gradient(circle at 84% 22%, rgba(74, 208, 255, 0.16), transparent 24%),
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(25, 27, 33, 0.95) 50%, rgba(20, 55, 88, 0.92) 100%);
}

.blog-header__inner {
    align-items: flex-end;
}

.blog-header__copy {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(229, 234, 242, 0.76);
    line-height: 1.85;
}

.blog-header__meta {
    gap: 18px;
}

.blog-stage {
    padding-bottom: 112px;
}

.blog-sidebar-panel {
    margin-top: 0;
}

.blog-sidebar-panel + .blog-sidebar-panel {
    margin-top: 24px;
}

.blog-sidebar-copy {
    color: #58606c;
    line-height: 1.85;
}

.blog-sidebar-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.blog-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 20, 27, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: #101419 !important;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-sidebar-link:hover {
    background: #101419;
    border-color: #101419;
    color: #ffffff !important;
    text-decoration: none !important;
}

.blog-sidebar-empty {
    color: #58606c;
    line-height: 1.8;
}

.blog-toolbar {
    margin-bottom: 24px;
}

.blog-post-card {
    overflow: hidden;
}

.blog-post-media {
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.72) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
}

.blog-post-media img {
    mix-blend-mode: normal;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    gap: 0;
}

.blog-post-topline {
    margin-bottom: 14px;
}

.blog-post-title {
    min-height: 3.3rem;
    margin-bottom: 14px;
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    word-spacing: 0.03em;
}

.blog-post-excerpt {
    margin: 0;
    color: #58606c;
    line-height: 1.85;
}

.blog-post-tags {
    margin-top: 18px;
    margin-bottom: 18px;
}

.blog-post-tag--muted {
    color: #8a929d;
}

.blog-post-bottom {
    align-items: center;
}

.blog-post-meta {
    font-size: 0.98rem;
    font-weight: 800;
    color: #101419;
}

.blog-post-link {
    text-decoration: none;
}

.blog-post-link:hover {
    color: #ff6a3d;
}

.home-banner {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
    overflow: hidden;
    background: #090b10;

}

.home-banner-track {
    position: relative;
    min-height: calc(100vh - 80px);
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.home-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-banner-slide__media,
.home-banner-slide__overlay {
    position: absolute;
    inset: 0;
}

.home-banner-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-banner-slide__overlay {
    background:
        linear-gradient(to right, rgba(7, 10, 14, 0.82) 0%, rgba(7, 10, 14, 0.78) 30%, rgba(7, 10, 14, 0.42) 55%, rgba(7, 10, 14, 0.05) 100%),
        linear-gradient(180deg, rgba(7, 10, 14, 0.08) 0%, rgba(7, 10, 14, 0.30) 100%);
}

.home-banner-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 14px, transparent 14px 60px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 130px 130px, 130px 130px;
    mix-blend-mode: soft-light;
    opacity: 0.24;
    pointer-events: none;
}

.home-banner-slide__shell {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 42px;
    align-items: end;
    padding-bottom: 96px;
}

.home-banner-copy {
    max-width: 760px;
}

.home-banner-title {
    margin: 0;
    display: inline-block;
    max-width: 100%;
    font-size: clamp(1rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    border-right: 0.08em solid rgba(6, 203, 221, 0.95);
    background: linear-gradient(90deg, #f5f7fb 0%, #8ff6ff 45%, #06cbdd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.home-banner-slide.is-active .home-banner-title {
    animation: homeBannerTypewriter 2.1s steps(24, end) 0.18s both,
        homeBannerCaret 0.9s steps(1, end) infinite;
}

@keyframes homeBannerTypewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes homeBannerCaret {
    0%,
    49% {
        border-right-color: rgba(6, 203, 221, 0.95);
    }

    50%,
    100% {
        border-right-color: transparent;
    }
}

.home-banner-description {
    max-width: 680px;
    margin: 26px 0 0;
    font-size: 18px;
    line-height: 1.95;
    color: rgba(245, 247, 251, 0.78);
}

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

.home-banner-controls {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.home-banner-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-banner-indicator,
.home-banner-nav__btn,
.home-feature-nav__btn {
    appearance: none;
    cursor: pointer;
}

.home-banner-indicator {
    width: 44px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.24);
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-banner-indicator.is-active {
    background: #ff6a3d;
    transform: scaleX(1.12);
}

.home-banner-nav,
.home-feature-nav {
    display: flex;
    gap: 10px;
}

.home-banner-nav__btn,
.home-feature-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 10, 14, 0.42);
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-banner-nav__btn:hover,
.home-feature-nav__btn:hover {
    border-color: #ff6a3d;
    background: #ff6a3d;
    color: #ffffff;
}

.home-section {
    margin-top: 44px;
    padding-bottom: 24px;
}

.home-section-head {
    margin-top: 0;
}
.home-section-head h3 {
    color: #ffffff;
    font-weight: 500;
}

.home-product-carousel {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    width: 100%;
    padding-bottom: 18px;
    overflow: hidden;
}

.home-product-carousel-shell {
    position: relative;
    width: 100%;
    padding: 22px 64px 18px;
    border-top: 1px solid rgba(210, 217, 226, 0.85);
    border-bottom: 1px solid rgba(210, 217, 226, 0.85);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 250, 0.96) 100%);
    box-shadow: 18px 18px 0 rgba(16, 20, 27, 0.08);
}

.home-product-carousel-head {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
    text-align: center;
}

.home-product-carousel-head small {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a2472b;
}

.home-product-carousel-head h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #101419;
}

.home-product-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-color: rgba(16, 20, 27, 0.12);
    background: #ffffff;
    color: #101419;
    transform: translateY(-50%);
}

.home-product-carousel__nav:hover {
    color: #ffffff;
}

.home-product-carousel__nav--prev {
    left: 14px;
}

.home-product-carousel__nav--next {
    right: 14px;
}

.home-category-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    align-items: start;
}

.home-category-btn {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name icon"
        "store icon";
    column-gap: 10px;
    row-gap: 4px;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e4e9ef;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.home-category-btn:hover {
    background: #fff;
    border-color: #ff6a3d;
    box-shadow: 0 2px 12px rgba(255, 106, 61, 0.10);
    text-decoration: none;
}

.home-category-btn__name {
    grid-area: name;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #11151b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-category-btn__store {
    grid-area: store;
    font-size: 0.78rem;
    color: #8a95a3;
    white-space: nowrap;
}

.home-category-btn__icon {
    grid-area: icon;
    font-size: 0.85rem;
    color: #ff6a3d;
    flex-shrink: 0;
}

.home-feature-carousel--compact {
    position: relative;
}

.home-feature-carousel {
    position: relative;
}

.home-feature-viewport {
    overflow: hidden;
}

.home-feature-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.home-feature-slide {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
}

.home-product-carousel-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    border: 1px solid #d8dde5;
    background: #ffffff;
    color: #101419;
    text-decoration: none;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-product-carousel-card:hover {
    transform: translate(-4px, -4px);
    border-color: #ff6a3d;
    box-shadow: 14px 14px 0 rgba(255, 106, 61, 0.12);
    color: #101419;
}

.home-product-carousel-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    border-bottom: 1px solid #d8dde5;
    background: linear-gradient(160deg, #eef2f6 0%, #fafbfd 100%);
}

.home-product-carousel-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-product-carousel-card:hover .home-product-carousel-card__media img {
    transform: scale(1.04);
}

.home-product-carousel-card__fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #0d3579;
    font-size: 2rem;
}

.home-product-carousel-card__body {
    display: grid;
    gap: 10px;
    padding: 14px 14px 16px;
}

.home-product-carousel-card__body h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #11151b;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-carousel-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    color: #101419;
}

.home-product-carousel-card__price s {
    color: #8a929d;
    font-size: 0.78rem;
}

.home-product-carousel-card__price strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.home-event-section {
    padding-top: 28px;
}

.home-event-grid {
    --bs-gutter-y: 12px;
}

.home-event-card {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #d8dde5;
    background: linear-gradient(160deg, #eef2f6 0%, #fafbfd 100%);

    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-event-card:hover {
    transform: translate(-4px, -4px);
    border-color: #ff6a3d;
    box-shadow: 14px 14px 0 rgba(255, 106, 61, 0.12);
}

.home-event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-event-card:hover img {
    transform: scale(1.04);
}

.home-event-card__fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #0d3579;
    font-size: 2rem;
}

.home-post-section .blog-post-excerpt {
    min-height: 5.4rem;
}

.home-cta-hero {
    padding: 34px 0 0;
}

.home-cta-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);

    align-items: stretch;
}

.home-cta-hero__copy,
.home-cta-hero__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 247, 251, 0.82) 100%);
    box-shadow: 24px 24px 60px rgba(3, 8, 18, 0.18);
    backdrop-filter: blur(20px);
}

.home-cta-hero__copy {
    padding: 42px 42px 38px;
}

.home-cta-hero__copy::before,
.home-cta-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-cta-hero__copy::before {
    background:
        radial-gradient(circle at top left, rgba(111, 205, 255, 0.22), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(255, 132, 89, 0.18), transparent 24%);
}

.home-cta-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #5d6e84;
}

.home-cta-hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #0d3579, rgba(13, 53, 121, 0.12));
}

.home-cta-hero__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.22;
   
    color: #11151b;
    text-wrap: balance;

}

.home-cta-hero__lead {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: 1.2rem;
    line-height: 1.95;
    color: #4f5966;
}

.home-cta-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.home-cta-hero__meta-card {
    display: grid;
    gap: 6px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(17, 21, 27, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.home-cta-hero__meta-card small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a8594;
}

.home-cta-hero__meta-card strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #101419;
}

.home-cta-hero__meta-card span {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #55606d;
}

.home-cta-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-cta-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-cta-hero__btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.home-cta-hero__btn--primary {
    background: #11151b;
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(17, 21, 27, 0.18);
}

.home-cta-hero__btn--primary:hover {
    background: #0d3579;
    color: #ffffff;
}

.home-cta-hero__btn--secondary {
    border: 1px solid rgba(17, 21, 27, 0.12);
    background: rgba(255, 255, 255, 0.68);
    color: #11151b;
}

.home-cta-hero__btn--secondary:hover {
    border-color: rgba(13, 53, 121, 0.24);
    background: #ffffff;
    color: #0d3579;
}

.home-cta-hero__panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(4, 8, 16, 0.24) 10%, rgba(4, 8, 16, 0.34) 38%, rgba(6, 18, 42, 0.58) 80%),
        url('../image/home-btwo.jpg');
    background-size: cover;
    background-position: center;
    color: #f4f7fb;
}

.home-cta-hero__panel::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 84px 84px, 84px 84px;
    opacity: 0.22;
}

.home-cta-hero__panel-mark {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.08);
}

.home-cta-hero__panel-body {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.home-cta-hero__panel-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9fd9ff;
}

.home-cta-hero__panel h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #f7f9fc;
}

.home-cta-hero__panel-points {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.home-cta-hero__panel-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(244, 247, 251, 0.8);
}

.home-cta-hero__panel-points li::before {
    content: "";
    width: 26px;
    height: 1px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #7fdfff, rgba(127, 223, 255, 0.18));
}

@media (max-width: 1199.98px) {
    .home-feature-slide {
        flex-basis: calc((100% - 32px) / 3);
    }
}

@media (max-width: 991.98px) {
    .home-cta-hero__shell {
        grid-template-columns: 1fr;
    }

    .home-cta-hero__meta {
        grid-template-columns: 1fr;
    }

    .home-banner-slide__shell {
        grid-template-columns: 1fr;
    }

    .home-banner-panel {
        max-width: 560px;
    }

    .home-product-carousel-head {
        align-items: center;
    }

    .home-feature-slide {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 767.98px) {
    .home-banner {
        min-height: 520px;
        padding-top: 0;
    }

    .home-banner-track {
        min-height: 520px;
    }

    .home-banner-slide__shell {
        min-height: 520px;
        gap: 0;
        padding-top: 72px;
        padding-bottom: 100px;
        grid-template-columns: 1fr;
    }

    .home-banner-panel {
        display: none;
    }

    .home-banner-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-banner-title {
        font-size: clamp(3rem, 6vw, 6rem);
        width: 100%;
    }

    .home-banner-description {
        font-size: 0.92rem;
        width: 100%;
        margin-top: 16px;
    }

    .home-banner-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 24px;
        gap: 12px;
    }

    .home-banner-actions .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .home-cta-hero {
        padding-top: 22px;
    }

    .home-cta-hero__copy,
    .home-cta-hero__panel {
        padding: 26px 22px;
    }

    .home-cta-hero__title {
        max-width: none;
    }

    .home-cta-hero__actions {
        flex-direction: column;
    }

    .home-cta-hero__btn {
        width: 100%;
    }

    .home-product-carousel {
        margin-top: -32px;
    }

    .home-product-carousel-shell {
        padding: 18px 52px 14px;
        box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.08);
    }

    .home-product-carousel__nav--prev {
        left: 8px;
    }

    .home-product-carousel__nav--next {
        right: 8px;
    }

    .home-banner-controls {
        bottom: 16px;
    }

    .home-banner-panel__stats {
        grid-template-columns: 1fr;
    }

    .home-feature-slide {
        flex-basis: 100%;
    }

    .home-post-section .blog-post-excerpt {
        min-height: 0;
    }
}

.blog-detail-header__inner {
    align-items: flex-end;
}

.blog-detail-header__title {
    max-width: 880px;
    text-wrap: balance;
}

.blog-detail-header__copy {
    max-width: 720px;
}

.blog-detail-stage {
    padding-bottom: 120px;
}

.blog-detail-layout {
    align-items: start;
}

.blog-detail-article {
    overflow: hidden;
    padding: 0;
    color: #11151b;
}

.blog-detail-hero-media {
    position: relative;
    aspect-ratio: 16 / 8.8;
    overflow: hidden;
    border-bottom: 1px solid #d8dde5;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.78) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
}

.blog-detail-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-article__header {
    padding: 30px 34px 0;
}

.blog-detail-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a929d;
}

.blog-detail-breadcrumbs a {
    color: #8a929d;
}

.blog-detail-breadcrumbs a:hover {
    color: #a2472b;
}

.blog-detail-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.blog-detail-topline__item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a929d;
}

.blog-detail-topline__tag {
    margin-bottom: 0;
}

.blog-detail-article__title {
    margin: 18px 0 0;
    font-size: clamp(2.2rem, 4vw, 3.9rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #101419;
}

.blog-detail-article__summary {
    max-width: 760px;
    margin: 20px 0 0;
    font-size: 1.02rem;
    line-height: 1.95;
    color: #58606c;
}

.blog-detail-tag-list {
    margin-top: 22px;
    margin-bottom: 0;
}

.blog-detail-content {
    padding: 32px 34px 38px;
    color: #17202b;
    font-size: 18px;
    line-height: 1.92;
}

.blog-detail-content > *:first-child {
    margin-top: 0;
}

.blog-detail-content > *:last-child {
    margin-bottom: 0;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    margin-top: 1.7em;
    margin-bottom: 0.75em;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #101419;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol,
.blog-detail-content blockquote,
.blog-detail-content table {
    margin-bottom: 1.2rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.4rem;
}

.blog-detail-content ul {
    list-style: disc;
}

.blog-detail-content ol {
    list-style: decimal;
}

.blog-detail-content li + li {
    margin-top: 0.5rem;
}

.blog-detail-content a {
    color: #0d3579;
    font-weight: 700;
}

.blog-detail-content a:hover {
    color: #a2472b;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #d8dde5;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
}

.blog-detail-content blockquote {
    padding: 18px 20px;
    border-left: 4px solid #ff6a3d;
    background: rgba(255, 106, 61, 0.08);
    color: #304052;
    font-weight: 600;
}

.blog-detail-content table {
    width: 100%;
    border-collapse: collapse;
}

.blog-detail-content th,
.blog-detail-content td {
    padding: 12px 14px;
    border: 1px solid #d8dde5;
}

.blog-detail-content th {
    background: rgba(13, 53, 121, 0.08);
    color: #101419;
}

.blog-detail-sidebar {
    display: grid;
    gap: 24px;
}

.blog-detail-sidecard {
    padding: 24px 26px 26px;
    color: #11151b;
}

.blog-detail-sidecard__head {
    margin-top: 18px;
}

.blog-detail-sidecard__head small,
.blog-detail-related-head small {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a929d;
}

.blog-detail-sidecard__head h3,
.blog-detail-related-head h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #101419;
}

.blog-detail-sidecard__head p {
    margin: 14px 0 0;
    color: #58606c;
    line-height: 1.85;
}

.blog-detail-meta-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.blog-detail-meta-item {
    padding-bottom: 14px;
    border-bottom: 1px solid #d8dde5;
}

.blog-detail-meta-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-detail-meta-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a929d;
}

.blog-detail-meta-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.6;
    color: #101419;
    word-break: break-word;
}

.blog-detail-side-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.blog-detail-related-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.blog-detail-related-item {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.84);
    color: #101419;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.blog-detail-related-item:hover {
    transform: translate(-4px, -4px);
    border-color: #8e99a8;
    box-shadow: 14px 14px 0 rgba(16, 20, 27, 0.08);
    color: #101419;
}

.blog-detail-related-item__date {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a929d;
}

.blog-detail-related-item strong {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.45;
}

.blog-detail-tag-list--sidebar {
    margin-top: 22px;
}

.blog-detail-related-section {
    margin-top: 44px;
}

.blog-detail-related-head {
    margin-top: 0;
    margin-bottom: 28px;
}

.blog-detail-related-head p {
    max-width: 520px;
    margin: 0;
    color: #58606c;
    line-height: 1.85;
}

.contact-header__inner {
    align-items: flex-end;
}

.contact-header__copy {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(229, 234, 242, 0.76);
    line-height: 1.85;
}

.contact-header__meta {
    gap: 18px;
}

.contact-stage {
    padding-bottom: 112px;
}

.contact-sidebar-panel {
    margin-top: 0;
}

.contact-sidebar-copy,
.contact-sidebar-detail {
    color: #58606c;
    line-height: 1.8;
}

.contact-sidebar-chips {
    margin-top: 18px;
}

.contact-sidebar-image {
    display: block;
    width: 100%;
    margin: 16px 0;
    border: 1px solid rgba(16, 20, 27, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
}

.contact-sidebar-image--logo {
    max-height: 180px;
    object-fit: contain;
    padding: 18px;
}

.contact-sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.contact-sidebar-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(16, 20, 27, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #101419;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-sidebar-action-link:hover {
    background: #101419;
    border-color: #101419;
    color: #ffffff;
}

.contact-toolbar {
    margin-bottom: 24px;
}

.contact-store-card {
    overflow: hidden;
}

.contact-store-media {
    min-height: 150px;
    height: 240px;
}

.contact-store-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.02) 28%, rgba(7, 9, 12, 0.46) 100%);
}

.contact-store-media img {
    mix-blend-mode: normal;
}

.contact-store-media__logo {
    object-fit: contain !important;
    padding: 28px;
}

.contact-store-fallback {
    position: relative;
    z-index: 1;
}

.contact-store-hall-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(8, 12, 18, 0.74);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-store-body {
    gap: 0;
}

.contact-store-title {
    margin-bottom: 14px;
}

.contact-store-description {
    margin: 0;
    color: #58606c;
    line-height: 1.85;
}

.contact-store-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.contact-store-stat {
    padding: 14px 16px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.82);
}

.contact-store-stat small {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a929d;
}

.contact-store-stat strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: #101419;
}

.contact-store-detail-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.contact-store-detail-item {
    padding-bottom: 12px;
    border-bottom: 1px solid #d8dde5;
}

.contact-store-detail-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a929d;
}

.contact-store-detail-item strong,
.contact-store-detail-item a {
    
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.6;
    word-break: break-word;
}

.contact-store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-store-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid #d8dde5;
    background: #ffffff;
    color: #101419;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-store-action:hover {
    border-color: #101419;
    background: #101419;
    color: #ffffff;
}

.contact-store-action--primary {
    border-color: #0d3579;
    background: #0d3579;
    color: #ffffff;
}

.contact-store-action--primary:hover {
    border-color: #ff6a3d;
    background: #ff6a3d;
    color: #ffffff;
}

.contact-store-action--phone {
    border-color: #e8ac07;
    background: #e8ac07;
    color: #ffffff;
    font-size: 20px;
}

.contact-store-action--phone:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #e8ac07;
}

.contact-store-action--line{
    border-color: #05a816;
    background: #05a816;
    color: #ffffff;
}
.contact-store-action--line:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #05a816;
}

.contact-dual-note {
    margin-top: 28px;
    color: #11151b;
}

.contact-dual-note__head {
    margin-bottom: 20px;
}

.contact-dual-note__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-dual-note__item {
    padding: 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.84);
}

.contact-dual-note__item small {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a929d;
}

.contact-dual-note__item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #101419;
}

.contact-dual-note__item p {
    margin: 0;
    color: #58606c;
    line-height: 1.8;
}

.contact-empty-state {
    margin-top: 0;
}

.catalog-slim-header--order-success {
    background:
        radial-gradient(circle at 12% 18%, rgba(53, 178, 116, 0.22), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(255, 178, 75, 0.18), transparent 22%),
        linear-gradient(125deg, rgba(8, 8, 10, 0.97) 0%, rgba(20, 34, 29, 0.95) 48%, rgba(13, 53, 121, 0.92) 100%);
}

.auth-header__inner {
    align-items: flex-end;
}

.auth-header__copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(229, 234, 242, 0.74);
    line-height: 1.85;
}

.auth-header__meta {
    gap: 18px;
}

.auth-stage {
    padding-bottom: 112px;
}

.auth-layout-row {
    align-items: stretch;
}

.auth-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
    gap: 28px;
    align-items: start;
}

.auth-layout-grid--compact {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

.auth-main-card,
.auth-side-card,
.auth-social-card {
    position: relative;
}

.auth-card-intro {
    margin-top: 8px;
}

.auth-main-title {
    font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}

.auth-breadcrumb-wrap {
    margin-top: 24px;
    padding: 14px 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.82);
}

.auth-breadcrumb {
    color: #58606c;
}

.auth-breadcrumb .breadcrumb-item,
.auth-breadcrumb .breadcrumb-item a {
    color: #58606c;
    font-size: 0.92rem;
}

.auth-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #8a929d;
}

.auth-alert-stack {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.auth-alert {
    padding: 14px 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.9);
    color: #17202b;
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
}

.auth-alert--success {
    border-left: 4px solid #1f7a4f;
}

.auth-alert--warning,
.auth-alert--error,
.auth-alert--danger {
    border-left: 4px solid #b23a2c;
}

.auth-alert--info {
    border-left: 4px solid #0d3579;
}

.auth-form {
    margin-top: 26px;
}

.auth-form-shell {
    margin-top: 24px;
}

.auth-field {
    gap: 10px;
}

.auth-field-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.auth-control {
    min-height: 56px;
    border-color: #cfd4dc;
    color: #15191f;
    background: #ffffff;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="number"],
.auth-form input[type="tel"],
.auth-form input[type="search"],
.auth-form input[type="url"],
.auth-form input[type="date"],
.auth-form textarea,
.auth-form select {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #cfd4dc;
    border-radius: 0;
    background: #ffffff;
    color: #15191f;
    box-shadow: none;
}

.auth-form textarea {
    min-height: 110px;
    resize: vertical;
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus {
    outline: none;
    border-color: #15191f;
    box-shadow: none;
}

.auth-control:focus {
    border-color: #15191f;
    box-shadow: none;
}

.auth-inline-link {
    color: #0d3579;
    font-size: 0.92rem;
    font-weight: 700;
}

.auth-inline-link:hover {
    color: #a2472b;
}

.auth-field-error {
    display: grid;
    gap: 4px;
    color: #a23521;
    font-size: 0.88rem;
    font-weight: 700;
}

.auth-form-help {
    color: #58606c;
    font-size: 0.88rem;
    line-height: 1.7;
}

.auth-form-note {
    padding: 14px 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.9);
    color: #17202b;
    font-weight: 700;
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
}

.auth-form-note--warning {
    border-left: 4px solid #b26a1f;
}

.auth-remember-row {
    display: flex;
    align-items: center;
    min-height: 28px;
}

.auth-check-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #17202b;
    font-weight: 700;
    cursor: pointer;
}

.auth-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.auth-submit-btn {
    margin-top: 4px;
}

.auth-btn-warning {
    background: #ff721b;
    border-color: #f59e0b;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.auth-btn-warning:hover {
    background: #ffdf3d;
    border-color: #ffffff;
    color: #090909;
}

.auth-submit-btn--danger {
    background: #8c1f18;
    border-color: #8c1f18;
}

.auth-submit-btn--danger:hover {
    background: #b2342a;
    border-color: #b2342a;
}

.auth-submit-btn[disabled],
.auth-submit-btn[aria-disabled="true"] {
    opacity: 0.58;
    cursor: not-allowed;
}

.auth-footer-links {
    margin-top: 24px;
    color: #58606c;
}

.auth-footer-links p {
    margin: 0;
}

.auth-social-card {
    margin-top: 28px;
}

.auth-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.auth-action-row .auth-submit-btn {
    width: auto;
    min-width: 220px;
    margin-top: 0;
}

.auth-secondary-btn {
    min-height: 56px;
    padding: 0 18px;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.16em;
}

.auth-status-panel {
    margin-top: 26px;
    padding: 20px 22px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
}

.auth-status-copy {
    margin: 0 0 12px;
    color: #58606c;
    line-height: 1.85;
}

.auth-status-copy a {
    color: #0d3579;
    font-weight: 700;
}

.auth-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.auth-social-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.86);
    color: #15191f;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-social-link:hover {
    transform: translate(-4px, -4px);
    border-color: #8e99a8;
    box-shadow: 16px 16px 0 rgba(16, 20, 27, 0.08);
    color: #a2472b;
}

.auth-side-head {
    margin-bottom: 24px;
}

.auth-side-list {
    display: grid;
    gap: 18px;
}

.auth-switch-card .related-product-body {
    gap: 0;
}

.auth-switch-links {
    margin-top: 18px;
}

.auth-info-card {
    min-height: auto;
}

.auth-info-copy {
    margin: 0;
    color: #58606c;
    line-height: 1.85;
}

@media (max-width: 991.98px) {
    .auth-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .auth-header__meta,
    .auth-field-head,
    .auth-social-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: start;
    }

    .auth-social-grid {
        display: grid;
    }

    .auth-action-row,
    .auth-action-row--stack-mobile {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-action-row .auth-submit-btn,
    .auth-secondary-btn {
        width: 100%;
    }

    .contact-header__meta,
    .contact-store-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-store-stat-grid,
    .contact-dual-note__grid {
        grid-template-columns: 1fr;
    }

    .contact-store-action {
        width: 100%;
    }

    .blog-header__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-detail-article__header,
    .blog-detail-content,
    .blog-detail-sidecard {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-detail-article__header {
        padding-top: 24px;
    }

    .blog-detail-content {
        padding-top: 26px;
        padding-bottom: 28px;
    }

    .blog-detail-article__title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .blog-detail-header__title {
        text-wrap: pretty;
    }

    .blog-detail-hero-media {
        aspect-ratio: 4 / 3;
    }

    .blog-post-title {
        min-height: 0;
    }
}

.checkout-header-copy {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(229, 234, 242, 0.74);
    line-height: 1.85;
}

.checkout-stage {
    padding-bottom: 112px;
}

.checkout-form-shell {
    display: block;
}

.checkout-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 28px;
    align-items: start;
}

.checkout-main-column,
.checkout-sidebar {
    display: grid;
    gap: 4px;
}


.checkout-card {
    position: relative;
}

.checkout-card-body {
    margin-top: 22px;
    color: #11151b;
}

.checkout-section-head {
    margin-top: 0;
}

.checkout-form-section + .checkout-form-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #d8dde5;
}

.checkout-form-section__head {
    margin-bottom: 18px;
}

.checkout-form-section__head small {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a929d;
}

.checkout-form-section__head h4 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #101419;
}

.checkout-form-grid {
    display: grid;
    gap: 18px;
}

.checkout-form-grid--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.checkout-field label,
.checkout-choice-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8a929d;
}

.checkout-control {
    min-height: 52px;
    border: 1px solid #cfd4dc;
    border-radius: 0;
    color: #15191f;
    background-color: #ffffff;
    box-shadow: none;
}

.checkout-control:focus {
    border-color: #15191f;
    box-shadow: none;
}

textarea.checkout-control {
    min-height: 96px;
    resize: vertical;
}

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

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

.checkout-choice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.88);
    color: #17202b;
    font-weight: 600;
}

.checkout-choice-item .form-check-input {
    margin-top: 0;
}

.checkout-company-panel {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #d8dde5;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.checkout-order-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.checkout-order-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #d8dde5;
}

.checkout-order-item:last-child {
    padding-bottom: 0;
}

.checkout-order-thumb,
.checkout-order-fallback {
    width: 56px;
    height: 56px;
    border: 1px solid #d8dde5;
}

.checkout-order-thumb {
    object-fit: cover;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.9) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
}

.checkout-order-fallback {
    display: grid;
    place-items: center;
    color: #101419;
    font-size: 1.25rem;
    background:
        linear-gradient(135deg, rgba(14, 18, 23, 0.9) 0 24%, rgba(255, 255, 255, 0) 24.4%),
        linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
}

.checkout-order-copy {
    min-width: 0;
}

.checkout-order-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #101419;
}

.checkout-order-meta {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8a929d;
}

.checkout-order-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #101419;
    white-space: nowrap;
}

.checkout-summary-body {
    gap: 0;
    margin-top: 0;
}

.checkout-free-shipping-hint {
    margin: 2px 0 8px;
    color: #1f7a4f;
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-option-list {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.payment-method-btn,
.shipping-method-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid #cfd4dc;
    border-radius: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%);
    color: #11151b;
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.payment-method-btn:hover,
.shipping-method-btn:hover {
    transform: translate(-4px, -4px);
    border-color: #8e99a8;
    box-shadow: 16px 16px 0 rgba(16, 20, 27, 0.08);
}

.checkout-option-layout {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    width: 100%;
    padding: 18px;
}

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

.checkout-option-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.checkout-option-description {
    font-size: 0.84rem;
    line-height: 1.65;
    color: #58606c;
}

.checkout-option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 8px 10px;
    border: 1px solid rgba(16, 20, 27, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: #11151b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-check:checked + .payment-method-btn {
    border-color: #0d3579;
    background: linear-gradient(135deg, #0d3579 0%, #2a4386 100%);
    color: #ffffff;
    box-shadow: 16px 16px 0 rgba(13, 53, 121, 0.22);
}

.btn-check:checked + .shipping-method-btn {
    border-color: #1f7a4f;
    background: linear-gradient(135deg, #1f7a4f 0%, #2f9a67 100%);
    color: #ffffff;
    box-shadow: 16px 16px 0 rgba(31, 122, 79, 0.2);
}

.btn-check:checked + .payment-method-btn .checkout-option-description,
.btn-check:checked + .shipping-method-btn .checkout-option-description,
.btn-check:checked + .payment-method-btn .text-muted,
.btn-check:checked + .shipping-method-btn .text-muted {
    color: rgba(255, 255, 255, 0.82) !important;
}

.btn-check:checked + .payment-method-btn .checkout-option-badge,
.btn-check:checked + .shipping-method-btn .checkout-option-badge {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.checkout-empty-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.88);
    color: #17202b;
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
}

.checkout-map-btn {
    width: 100%;
}

.checkout-selected-store {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.9);
    color: #17202b;
    box-shadow: 12px 12px 0 rgba(16, 20, 27, 0.04);
}

.checkout-selected-store strong {
    display: block;
    margin-bottom: 6px;
}

.checkout-selected-store small {
    display: block;
    color: #58606c;
    line-height: 1.7;
}

.checkout-confirm-card {
    gap: 18px;
}

.checkout-terms {
    padding: 18px 20px;
    border: 1px solid #d8dde5;
    background: rgba(255, 255, 255, 0.84);
    color: #17202b;
}

.checkout-terms .form-check-input {
    margin-right: 10px;
}

.checkout-terms .form-check-label {
    color: #17202b;
    line-height: 1.7;
}

.checkout-terms a {
    margin-left: 4px;
    color: #0d3579;
}

.checkout-submit-btn {
    width: 100%;
}

.checkout-submit-btn.d-none {
    display: none !important;
}

@media (max-width: 991.98px) {
    .checkout-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .checkout-form-grid--double,
    .checkout-order-item {
        grid-template-columns: 1fr;
    }

    .checkout-option-layout {
        flex-direction: column;
    }

    .checkout-option-badge {
        min-width: 0;
    }
}

    .account-orders-stage {
        padding-bottom: 112px;
    }

    .account-orders-toolbar {
        margin-bottom: 24px;
    }

    .account-portal-card,
    .account-orders-card {
        color: #11151b;
    }

    .account-portal-head {
        margin-bottom: 26px;
    }

    .account-portal-nav {
        display: grid;
        gap: 12px;
        margin-top: 12px;
    }

    .account-portal-link {
        display: block;
        padding: 16px 18px;
        border: 1px solid #d6dbe2;
        background: rgba(255, 255, 255, 0.78);
        color: #15191f;
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .account-portal-link small {
        display: block;
        margin-bottom: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #8a929d;
    }

    .account-portal-link strong {
        display: block;
        font-size: 1.02rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .account-portal-link:hover {
        transform: translate(-4px, -4px);
        border-color: #8e99a8;
        box-shadow: 14px 14px 0 rgba(16, 20, 27, 0.08);
        color: #15191f;
    }

    .account-portal-link.is-active {
        border-color: #0d3579;
        background: linear-gradient(135deg, #0d3579 0%, #2a4386 100%);
        box-shadow: 14px 14px 0 rgba(13, 53, 121, 0.18);
        color: #ffffff;
    }

    .account-portal-link.is-active small {
        color: rgba(255, 255, 255, 0.72);
    }

    .account-portal-link--logout strong {
        color: #a23521;
    }

    .account-orders-list {
        display: grid;
        gap: 18px;
        margin-top: 28px;
    }

    .account-order-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 22px 0;
        border-top: 1px solid #d8dde5;
    }

    .account-order-row:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .account-order-row__main {
        min-width: 0;
    }

    .account-order-row__eyebrow {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 10px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #8a929d;
    }

    .account-order-row__title {
        margin: 0;
        font-size: clamp(1.3rem, 2.1vw, 1.7rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        color: #101419;
        word-break: break-word;
    }

    .account-order-row__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 14px;
    }

    .account-order-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border: 1px solid #d2d7de;
        background: rgba(255, 255, 255, 0.78);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #5c6470;
    }

    .account-order-badge--muted {
        color: #0d3579;
    }

    .account-order-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 164px;
        min-height: 52px;
        padding: 12px 20px;
        border: 1px solid #15191f;
        background: #063478;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        transition: 0.3s ease;
    }

    .account-order-link:hover {
        border-color: #ff6a3d;
        background: #ff6a3d;
        color: #ffffff;
    }

    .account-orders-empty {
        margin-top: 28px;
    }

    .account-orders-empty__link {
        display: inline-flex;
        margin-top: 22px;
    }

    .account-orders-pagination {
        margin-top: 34px;
    }

    .order-complete-stage {
        padding-bottom: 120px;
    }

    .order-complete-header-copy {
        max-width: 640px;
    }

    .order-complete-card,
    .order-complete-summary-card {
        color: #11151b;
    }

    .order-complete-head,
    .order-complete-section-head {
        margin-bottom: 24px;
    }

    .order-complete-highlight {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 28px;
        padding: 18px 20px;
        border: 1px solid #d7dde5;
        background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
    }

    .order-complete-highlight__icon {
        display: grid;
        place-items: center;
        width: 64px;
        height: 64px;
        border: 1px solid #cdd5df;
        background: linear-gradient(135deg, #1f7a4f 0%, #35b274 100%);
        color: #ffffff;
        font-size: 1.75rem;
    }

    .order-complete-highlight small {
        display: block;
        margin-bottom: 6px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #8a929d;
    }

    .order-complete-highlight strong {
        display: block;
        font-size: clamp(1.4rem, 2.4vw, 2rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        color: #101419;
        word-break: break-word;
    }

    .order-complete-meta-grid {
        margin-top: 0;
        margin-bottom: 28px;
    }

    .order-complete-remark {
        margin-top: 18px;
        color: #58606c;
        white-space: pre-line;
        line-height: 1.9;
    }

    .order-complete-badge {
        width: fit-content;
    }

    .order-complete-badge--warning {
        background: rgba(255, 193, 7, 0.14);
        border-color: rgba(255, 193, 7, 0.26);
        color: #9a6700;
    }

    .order-complete-badge--success {
        background: rgba(53, 178, 116, 0.12);
        border-color: rgba(53, 178, 116, 0.24);
        color: #1f7a4f;
    }

    .order-complete-badge--info {
        background: rgba(12, 111, 189, 0.12);
        border-color: rgba(12, 111, 189, 0.24);
        color: #0d5cab;
    }

    .order-complete-badge--primary {
        background: rgba(13, 53, 121, 0.12);
        border-color: rgba(13, 53, 121, 0.24);
        color: #0d3579;
    }

    .order-complete-items {
        display: grid;
        gap: 18px;
    }

    .order-complete-item {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr) auto;
        gap: 18px;
        align-items: center;
        padding: 18px 0;
        border-top: 1px solid #d8dde5;
    }

    .order-complete-item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .order-complete-item__media {
        width: 88px;
        height: 88px;
        border: 1px solid #d6dbe2;
        background: linear-gradient(160deg, #dfe4ea 0%, #f8fafc 56%, #edf1f5 100%);
        overflow: hidden;
    }

    .order-complete-item__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: multiply;
    }

    .order-complete-item__fallback {
        display: grid;
        place-items: center;
        width: 100%;
        height: 100%;
        font-size: 1.8rem;
        color: #0f1319;
    }

    .order-complete-item__amount {
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #101419;
        white-space: nowrap;
    }

    .order-complete-note-panel {
        margin-top: 28px;
    }

    .order-complete-note {
        margin-top: 18px;
        color: #58606c;
        line-height: 1.9;
    }

    .order-complete-summary-list {
        display: grid;
        gap: 14px;
    }

    .order-complete-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid #d8dde5;
        color: #58606c;
    }

    .order-complete-summary-row strong {
        color: #101419;
        font-weight: 800;
    }

    .order-complete-summary-row--total {
        padding-top: 4px;
        color: #101419;
    }

    .order-complete-summary-row--total strong {
        font-size: 1.35rem;
        letter-spacing: -0.04em;
        color: #0d3579;
    }

    .order-complete-bank-panel {
        margin-top: 26px;
        padding: 20px;
        border: 1px solid rgba(255, 178, 75, 0.38);
        background: linear-gradient(180deg, rgba(255, 250, 240, 0.94) 0%, rgba(255, 244, 224, 0.9) 100%);
    }

    .order-complete-bank-alert,
    .order-complete-bank-note {
        padding: 14px 16px;
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .order-complete-bank-alert {
        margin-top: 16px;
        margin-bottom: 16px;
        border-left: 4px solid #d99000;
        background: rgba(255, 193, 7, 0.1);
        color: #8a5a00;
    }

    .order-complete-bank-amount {
        color: #a23521 !important;
    }

    .order-complete-bank-note {
        margin-top: 18px;
        border-left: 4px solid #0d3579;
        background: rgba(13, 53, 121, 0.08);
        color: #28425f;
    }

    .order-complete-actions {
        margin-top: 24px;
        align-items: stretch;
    }

    .order-complete-print-btn {
        display: inline-flex;
        justify-content: center;
        min-height: 52px;
        align-items: center;
    }

    .order-detail-stage {
        padding-bottom: 120px;
    }

    .order-detail-card {
        color: #11151b;
    }

    .order-detail-back-link {
        display: inline-flex;
    }

    .order-detail-logistics-panel {
        margin-top: 28px;
    }

    .order-detail-logistics-grid {
        margin-top: 18px;
    }

    .order-detail-admin-note {
        white-space: pre-line;
    }

    .account-profile-card {
        color: #11151b;
    }

    .account-profile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        margin-top: 28px;
    }

    .account-profile-panel,
    .account-form-panel {
        padding: 22px;
        border: 1px solid #d6dbe2;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 244, 248, 0.9) 100%);
    }

    .account-profile-field-list {
        display: grid;
        gap: 16px;
        margin-top: 18px;
    }

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

    .account-profile-field span {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #8a929d;
    }

    .account-profile-field strong {
        font-size: 1rem;
        font-weight: 800;
        line-height: 1.5;
        color: #101419;
        word-break: break-word;
    }

    .account-profile-actions {
        margin-top: 28px;
    }

    .account-form-alerts {
        margin-top: 24px;
    }

    .account-profile-form {
        margin-top: 28px;
    }

    .account-form-grid {
        display: grid;
        gap: 22px;
    }

    .account-profile-form .form-label {
        display: block;
        margin-bottom: 8px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: #8a929d;
    }

    .account-profile-form input[type="text"],
    .account-profile-form input[type="email"],
    .account-profile-form input[type="tel"],
    .account-profile-form input[type="date"],
    .account-profile-form textarea,
    .account-profile-form select {
        width: 100%;
        min-height: 56px;
        padding: 14px 16px;
        border: 1px solid #cfd4dc;
        border-radius: 0;
        background: #ffffff;
        color: #15191f;
        box-shadow: none;
    }

    .account-profile-form textarea {
        min-height: 110px;
        resize: vertical;
    }

    .account-profile-form input:focus,
    .account-profile-form textarea:focus,
    .account-profile-form select:focus {
        outline: none;
        border-color: #15191f;
        box-shadow: none;
    }

    .account-profile-form input[disabled] {
        background: #eef2f6;
        color: #6b7280;
    }

    .account-form-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid #d8dde5;
    }

    .account-form-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .account-form-cancel {
        justify-content: center;
    }

/* Nav user dropdown */
.nav-user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-user-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 132px;
    padding: 10px 22px;
    font: inherit;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: none;
    white-space: nowrap;
    appearance: none;
    cursor: pointer;
}

.nav-user-dropdown__toggle-text {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-user-dropdown__toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-user-dropdown__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.nav-user-dropdown__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 180px;
    background:
        linear-gradient(180deg, rgba(10, 12, 16, 0.98) 0%, rgba(18, 24, 33, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1003;
}

.nav-user-dropdown__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-user-dropdown__menu li {
    list-style: none;
}

.nav-user-dropdown__menu li a {
    display: block;
    padding: 12px 16px;
    color: #f4f7fb;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-user-dropdown__menu li a strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-user-dropdown__item-label {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 247, 251, 0.5);
}

.nav-user-dropdown__menu li a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.nav-user-dropdown__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

.nav-user-dropdown__logout {
    color: #ffb6a9 !important;
}

.nav-user-dropdown__logout .nav-user-dropdown__item-label {
    color: rgba(255, 182, 169, 0.62);
}

.nav-user-dropdown__logout:hover {
    background: rgba(255, 106, 61, 0.12) !important;
}

@media (max-width: 768px) {
    .order-detail-logistics-grid {
        grid-template-columns: 1fr;
    }

    .order-complete-item {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .order-complete-item__amount {
        grid-column: 1 / -1;
    }

    .account-profile-grid {
        grid-template-columns: 1fr;
    }

    .account-form-footer,
    .account-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .account-form-actions .account-order-link,
    .account-form-actions .account-form-cancel {
        width: 100%;
    }

    .account-order-row {
        flex-direction: column;
        align-items: stretch;
    }

    .account-order-link {
        width: 100%;
    }

    .nav-user-dropdown__toggle {
        min-width: auto;
        padding: 10px 18px;
    }

    .nav-user-dropdown__menu {
        right: 0;
        min-width: 168px;
    }
}