* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-red: #E63946;
    --primary-red-hover: #d02f3c;
    --primary-red-dark: #c02834;

    --dark-gray: #333333;
    --mid-gray: #666666;
    --light-gray: #F5F5F5;
    --border-gray: #DDDDDD;
    --ultra-light-gray: #F9F9F9;
    --white: #FFFFFF;
    --black-opacity-50: rgba(0, 0, 0, 0.5);
    --black-opacity-10: rgba(0, 0, 0, 0.1);
    --black-opacity-05: rgba(0, 0, 0, 0.05);

    --container-max-width: 1400px;
    --header-height: 70px;
    --section-padding-y: 60px;
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 32px;

    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 22px;
    --text-2xl: 24px;
    --text-3xl: 48px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-red: 0 2px 8px rgba(230, 57, 70, 0.3);
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.5;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--gap-md);
    width: 100%;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 2px;
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 120px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
    border-color: var(--white);
}

.btn-outline-dark {
    border-color: var(--dark-gray) !important;
    color: var(--dark-gray) !important;
}

.btn-outline-dark:hover {
    background: var(--dark-gray) !important;
    color: var(--white) !important;
}

.btn-solid {
    background: var(--primary-red);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-solid::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-solid:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-solid:hover::after {
    left: 100%;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.section-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--gap-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    text-align: center;
    width: 100%;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-red);
}

header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

header:hover,
header.header-solid {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

header:not(.header-solid):not(:hover) .nav-menu li a {
    color: rgba(255, 255, 255, 0.95);
}

header:not(.header-solid):not(:hover) .lang-current {
    color: rgba(255, 255, 255, 0.95);
}

header:not(.header-solid):not(:hover) .lang-current svg path {
    stroke: rgba(255, 255, 255, 0.95) !important;
}

header:not(.header-solid):not(:hover) .nav-menu li a::after {
    background-color: rgba(255, 255, 255, 0.85);
}

header:hover .nav-menu li a::after,
header.header-solid .nav-menu li a::after {
    background-color: var(--primary-red);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    position: relative;
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
    
}

@media (min-width: 993px) {
    .nav-menu {
        position: absolute;
        left: 0;
        right: 100px;
        margin: 0 auto;
        width: max-content;
    }
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: var(--text-md);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-red);
}

.nav-menu li a:hover::after {
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1360px) {
    .nav-menu {
        gap: 18px;
    }
    .nav-menu li a {
        font-size: 14px;
    }
    .lang-selector{
        margin-left: 16px;
    }
    .header-testdrive{
        right: 16px;
    }
}

.models-menu {
    position: static;
}

.models-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-gray);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.models-panel-inner {
    width: 100%;
    padding: 30px 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.header-model-tabs {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 24px;
}


.header-model-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: var(--ultra-light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.header-model-tab:hover {
    background: #eee;
}

.header-model-tab.active {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.header-model-tab .tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.header-model-tab .tab-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.header-model-tab.active .tab-icon svg {
    stroke: var(--white);
}

.header-model-tab .tab-info {
    display: flex;
    flex-direction: column;
}

.header-model-tab .tab-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.header-model-tab .tab-count {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.7;
}

.header-model-content {
    min-height: 300px;
    animation: fadeIn 0.3s ease-out;
}

.header-model-all-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.header-model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    padding: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.header-model-card:hover {
    border-color: #000;
}

.header-model-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
    mix-blend-mode: multiply;
}

.header-model-card .model-name {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-align: center;
}

.header-model-split-view {
    display: flex;
    gap: 40px;
}

.header-model-list-col {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-model-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.6;
}

.header-model-list-item:hover {
    border-color: var(--primary-red);
    opacity: 0.8;
}

.header-model-list-item.active {
    border: 2px solid var(--dark-gray);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-model-list-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 4px;
    mix-blend-mode: multiply;
}

.header-model-list-item .name {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-gray);
}

.header-model-detail-col {
    flex: 1;
    background: var(--ultra-light-gray);
    border-radius: 12px;
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-detail-info {
    flex: 1;
    max-width: 300px;
}

.header-detail-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.header-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d4a5a5;
}

.header-detail-engine {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.header-detail-specs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 24px;
    margin-bottom: 24px;
}

.header-spec-label {
    font-size: 13px;
    color: #888;
}

.header-spec-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
}

.header-detail-image {
    flex: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-detail-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transform: scale(1.25);
}

.header-detail-price-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 200px;
}

.header-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-gray);
}

.header-detail-price span {
    font-size: 14px;
    font-weight: normal;
    margin-left: 4px;
}

.header-detail-actions {
    display: flex;
    gap: 12px;
}

.header-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.header-btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: var(--dark-gray);
}

.header-btn-outline:hover {
    border-color: var(--dark-gray);
}

.header-btn-solid {
    background: #D93025;
    border: 1px solid #D93025;
    color: white;
}

.header-btn-solid:hover {
    background: #b92b2b;
}

.models-menu:hover .models-panel,
.models-menu.submenu-open .models-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 8px 0;
    min-width: 160px;
    display: none;
    z-index: 1000;
}

.nav-submenu li a {
    display: block;
    padding: 8px 16px;
    font-size: var(--text-sm);
    white-space: nowrap;
}

.nav-menu li.has-submenu:hover>.nav-submenu {
    display: block;
}

.nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-gray);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}

.nav-panel-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 22px 24px;
}

.nav-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.nav-panel-list::-webkit-scrollbar {
    height: 6px;
}

.nav-panel-list::-webkit-scrollbar-thumb {
    background-color: var(--border-gray);
    border-radius: 3px;
}

.nav-panel-list a {
    display: inline-block;
    padding: 10px 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    white-space: nowrap;
}

.nav-panel-list a:hover {
    color: var(--primary-red);
}

.nav-menu li.has-submenu:hover>.nav-panel,
.nav-menu li.has-submenu.submenu-open>.nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, visibility 0s linear 0s;
}

.lang-selector {
    position: relative;
    cursor: pointer;
    z-index: 1001;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    font-size: var(--text-md);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.lang-current:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-current span {
    min-width: 20px;
    text-align: center;
}

.lang-current svg {
    transition: transform 0.3s ease;
}

.lang-selector:hover .lang-current svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: auto;
    min-width: 400px;
    display: none;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.2s ease-in-out;
    padding: 0;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.lang-panels-container {
    display: flex;
    height: 100%;
    min-height: 200px;
}

.country-panel {
    width: 200px;
    border-right: 1px solid var(--light-gray);
    background: #fafafa;
}

.language-panel {
    width: 200px;
    background: var(--white);
}

.panel-header {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    border-bottom: 1px solid var(--light-gray);
}

.country-list {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.country-item {
    padding: 10px 16px;
    font-size: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--dark-gray);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.country-item:hover,
.country-item.active {
    background-color: var(--white);
    color: var(--primary-red);
    font-weight: 600;
}

.country-item.active {
    background-color: var(--white);
    box-shadow: -2px 0 0 var(--primary-red) inset;
}

.country-item::after {
    content: '›';
    font-size: 16px;
    color: #ccc;
}

.country-item:hover::after,
.country-item.active::after {
    color: var(--primary-red);
}

.language-list-container {
    padding: 8px 0;
}

.language-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.language-item:hover {
    color: var(--primary-red);
    background-color: #f8f9fa;
}

.language-item.active-lang {
    color: var(--primary-red);
    font-weight: 600;
}

.language-item.active-lang::after {
    content: '✓';
    margin-left: auto;
    font-size: 12px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    background-size: cover;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: var(--gap-md) 0;
    margin: 0;
    text-align: left;
}

.hero-model {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--gap-md);
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: left;
}

.hero-desc {
    font-size: var(--text-md);
    line-height: 1.6;
    margin-bottom: var(--gap-lg);
    opacity: 0.95;
    text-align: left;
}

.hero-btns {
    display: flex;
    gap: var(--gap-md);
    justify-content: flex-start;
}

.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
}

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.hero-dot.active {
    width: 20px;
    border-radius: 999px;
    background: #ffffff;
}

.model-selection {
    padding: 0;
    background: transparent;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    --model-image-overlap: 150px;
    --model-image-width: 1180px;
    --model-selection-side-padding: clamp(80px, 8vw, 120px);
    --model-image-offset-x: 100px;
    --model-image-offset-y: -100px;
}

.model-selection-band {
    background: linear-gradient(180deg, #F6F7F8 0%, #EFF2F4 100%);
    padding: clamp(52px, 8vh, 76px) 0 12px;
    width: 100%;
    flex: 0 0 auto;
}

.model-selection .container {
    max-width: 100%;
    padding: 0 var(--model-selection-side-padding);
}

.model-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    margin-bottom: 26px;
    position: relative;
    z-index: 3;
}

.model-selection-band .section-title {
    text-align: left !important;
    margin-bottom: 0 !important;
    font-size: 28px;
    color: #1A1A1A;
}

.model-selection-band .section-title::after {
    left: 0 !important;
    transform: none !important;
    width: 56px;
}

.model-tabs {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    gap: 12px;
    margin-bottom: 0;
    padding: 0;
}

.model-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--ultra-light-gray);
    color: var(--dark-gray);
    min-width: 160px;
    text-align: left;
    flex-direction: row;
}

.model-tab .tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.model-tab .tab-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.model-tab .tab-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.model-tab .tab-main {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.model-tab .tab-sub {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.7;
    white-space: nowrap;
}

.model-tab:hover:not(.active) {
    background: #eee;
    border-color: transparent;
    color: var(--dark-gray);
}

.model-tab.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.model-tab.active .tab-icon svg {
    stroke: var(--white);
}

.model-list {
    display: flex;
    justify-content: flex-start;
    gap: 28px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    padding: 14px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 10px;
    position: relative;
    z-index: 3;
}

.model-list::-webkit-scrollbar {
    height: 6px;
}

.model-list::-webkit-scrollbar-thumb {
    background-color: var(--border-gray);
    border-radius: 3px;
}

.model-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 10px;
    border-radius: 6px;
    width: 168px;
    min-width: 168px;
    height: 120px;;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.model-name {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.model-item img {
    height: 64px;
    margin-bottom: 8px;
    filter: grayscale(0.7) brightness(0.9);
    transition: all 0.3s ease;
}

.model-item.active {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(230, 57, 70, 0.25);
}

.model-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.model-item.active img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.color-options {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 10px;
    padding: 12px 0 0;
    align-items: center;
    position: relative;
    z-index: 3;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
    background-clip: padding-box;
}

.color-dot:hover {
    transform: scale(1.15);
}

.color-dot.active {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.5);
}

.color-dot.white {
    background: #FFFFFF;
}

.color-dot.red {
    background: #E63946;
}

.color-dot.gray {
    background: #888888;
}

.color-dot.dark-gray {
    background: #333333;
}

.color-dot.green {
    background: #2A9D8F;
}

.color-dot.yellow {
    background: #F4A261;
}

.model-detail {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    position: relative;
    padding: 0;
}

.model-detail-band {
    background: #404954;
    padding: 10px 0 20px;
    width: 100%;
    overflow: visible;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
}

.model-detail-band .model-detail {
    padding-bottom: 4px;
}

.model-detail-band .section-title {
    color: #FFFFFF;
}

.model-detail-band .spec-label {
    color: rgba(255, 255, 255, 0.76);
}

.model-detail-band .spec-value {
    color: rgba(255, 255, 255, 0.95);
}

.model-specs {
    max-width: 480px;
    padding: 60px 0 6px;
    align-self: start;
}

.model-detail-band .model-specs .section-title {
    text-align: left !important;
    margin-bottom: 22px;
    font-size: 26px;
}

.model-detail-band .model-specs .section-title::after {
    left: 0 !important;
    transform: none !important;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
    transition: background 0.2s ease;
}

.spec-item:hover {
    background-color: var(--ultra-light-gray);
    padding-left: 4px;
}

.model-detail-band .spec-item {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    padding: 20px 0;
}

.model-detail-band .spec-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.spec-label {
    font-size: 16px;
    color: var(--mid-gray);
    font-weight: 500;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
}

.model-price {
    margin: 25px 0;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: 0.8px;
}

.model-price::before {
    content: '¥';
    font-size: var(--text-md);
    margin-right: 4px;
}

.model-image {
    min-width: 0;
    text-align: right;
    padding: 0 0 6px;
    position: absolute;
    top: calc(-1 * var(--model-image-overlap));
    right: 0;
    height: clamp(620px, 55vh, 640px);
    aspect-ratio: 16 / 9;
    width: auto;
    max-width: min(var(--model-image-width), calc(100% - 340px - 60px));
    transform: translate(var(--model-image-offset-x), var(--model-image-offset-y));
    z-index: 1;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='16' cy='16' r='15' fill='black' fill-opacity='0.7'/%3E%3Ctext x='16' y='21' font-size='10' text-anchor='middle' fill='white'%3E360%C2%B0%3C/text%3E%3C/svg%3E") 16 16, pointer;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: none;
    transition: none;
    user-select: none;
    -webkit-user-drag: none;
}

.model-image img:hover {
    transform: none;
}

.model-image-actions {
    position: relative;
    grid-column: 2;
    justify-self: end;
    align-self: end;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    cursor: default;
    max-width: min(520px, 100%);
    z-index: 2;
}

.model-image-actions .model-price {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    align-items: baseline;
    gap: 8px;
}

.model-image-actions .model-price::before {
    content: none;
}

.model-image-actions .price-currency {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
}

.model-image-actions .price-number {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.model-image-actions .price-suffix {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.75;
}

.model-image-actions .model-detail-btns {
    margin-top: 0;
    justify-content: flex-end;
    gap: 12px;
}

.model-image-actions .btn {
    border-radius: 999px;
    height: 44px;
    min-width: 170px;
    padding: 0 22px;
}

.model-image-actions .btn:not(.btn-solid) {
    background: #6e757d;
    border: 1px solid #6e757d;
    color: #FFFFFF;
}

.model-image-actions .btn:not(.btn-solid):hover {
    background: #5f666d;
    border-color: #5f666d;
    color: #FFFFFF;
}

.model-image-actions .btn-outline-dark {
    border-color: #6e757d !important;
    color: #FFFFFF !important;
    background: #6e757d;
}

.model-image-actions .btn-outline-dark:hover {
    background: #5f666d !important;
    border-color: #5f666d !important;
    color: #FFFFFF !important;
}

.model-image-actions .btn-solid {
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    color: #FFFFFF;
}

.model-image-actions .btn-solid:hover {
    background: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
}

.model-detail-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.core-advantages {
    padding: var(--section-padding-y) 0;
    background: var(--light-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
}

.advantage-card {
    background: var(--white);
    padding: 0;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    height: 400px;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.advantage-img-container {
    flex: 0 0 180px;
    width: 100%;
}

.advantage-img {
    width: 100%;
    max-height: 180px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-img {
    transform: scale(1.03);
}

.advantage-content {
    flex: 1;
    padding: var(--gap-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.advantage-desc {
    font-size: var(--text-sm);
    color: var(--mid-gray);
    line-height: 1.6;
    margin-bottom: var(--gap-md);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.advantage-more {
    color: var(--primary-red);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
}

.advantage-more::after {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.advantage-more:hover {
    color: var(--primary-red-dark);
    text-decoration: none;
}

.advantage-more:hover::after {
    transform: translateX(3px);
}

.warranty-service {
    padding: var(--section-padding-y) 0;
    background: var(--white);
}

.warranty-section {
    display: flex;
    gap: var(--gap-xl);
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 15px;
}

.warranty-img {
    flex: 1 1 300px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 220px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.warranty-content {
    flex: 2 1 300px;
    min-width: 0;
}

.warranty-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--gap-md);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.warranty-section-secondary{
    background-color: var(--dark-gray);
    color: var(--white);
}
.warranty-section-secondary .warranty-title-secondary{
    color: var(--white);
}

.warranty-list {
    list-style: none;
    margin-bottom: 20px;
}

.warranty-list li {
    padding: 4px 0;
    font-size: var(--text-sm);
    color: var(--mid-gray);
    display: flex;
    align-items: flex-start;
    gap: var(--gap-sm);
    transition: padding-left 0.2s ease;
}

.warranty-list li:hover {
    padding-left: 4px;
}

.warranty-list li::before {
    content: '•';
    color: var(--primary-red);
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

.warranty-list-secondary li{
    color: var(--white);
}

.warranty-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-red);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: 20px;
    margin-right: var(--gap-sm);
    letter-spacing: 0.5px;
}

.warranty-tag-light{
    background: var(--white);
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.after-sales {
    display: flex;
    gap: var(--gap-xl);
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
    background-color:  var(--dark-gray);
    border-radius: 15px;
    color: var(--white);
    justify-content: space-between;
    align-items: center;
}

.after-sales-text {
    flex: 2;
    min-width: 300px;
}

.after-sales-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.after-sales-desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--white);
}

.after-sales-img {
    flex: 1;
    min-width: 200px;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--white);
}
.warranty-content-secondary{
    padding-left: var(--gap-xl);
}
footer {
    background: #d1291a;

    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap-xl);
    margin-bottom: var(--gap-xl);
    padding-bottom: var(--gap-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--gap-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #F8F8F8;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #FFE6E8;
    padding-left: 4px;
}

.footer-contact {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: #F8F8F8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: var(--gap-md);
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.footer-copyright {
    text-align: center;
    font-size: var(--text-xs);
    color: #F0F0F0;
    padding-top: var(--gap-md);
    opacity: 0.8;
}

@media (max-width: 1440px) {
    .model-selection {
        --model-image-overlap: 110px;
        --model-image-width: 980px;
        --model-image-offset-x: 0px;
        --model-image-offset-y: 0px;
    }

    .model-detail-band {
        overflow: hidden;
    }
}

@media (max-width: 1280px) {
    .model-selection {
        --model-image-overlap: 80px;
        --model-image-width: 860px;
    }
}

@media (max-width: 992px) {
    .lang-selector:hover .lang-dropdown,
    .lang-selector.active .lang-dropdown {
        display: none;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        height: auto;
    }

    .advantage-img-container {
        flex: 0 0 200px;
    }

    .model-detail {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .model-selection {
        --model-image-overlap: 0px;
        --model-image-offset-x: 0px;
        --model-image-offset-y: 0px;
    }

    .model-image {
        position: static;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        top: auto;
        right: auto;
    }

    .model-image-actions {
        position: static;
        align-items: flex-start;
        margin-right: 0;
        grid-column: auto;
        justify-self: stretch;
        align-self: auto;
        max-width: 100%;
    }

    .model-image-actions .model-detail-btns {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .model-selection .container {
        padding: 0 var(--gap-md);
    }
    .model-image-actions .price-number{
        font-size: 30px;
    }
    .core-advantages{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .warranty-service{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .after-sales-img{
        flex: unset;
    }
}

@media (min-width: 993px) {
    .nav-wrapper {
        display: contents;
        margin-right: 150px;
    }
}

@media (max-width: 992px) {

    /* 2. Reorder Mobile Layout: Image -> Specs -> Actions */
    .model-detail {
        display: flex;
        flex-direction: column;
    }

    .model-image {
        order: 1;
    }

    .model-specs {
        order: 2;
        max-width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .model-image-actions {
        order: 3;
        width: 100%;
        align-items: center;
        margin-top: 20px;
    }

    .model-image-actions .model-price {
        justify-content: center;
        margin-bottom: 12px;
    }

    .model-image-actions .model-detail-btns {
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .model-image-actions .btn {
        min-width: 140px;
        padding: 0 12px;
        font-size: 13px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
    }

    .hero-model {
        font-size: 36px;
    }

    .model-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
    }

    .color-options {
        justify-content: flex-start;
        padding-left: 4px;
    }

    .model-selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .model-tabs {
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
        gap: 12px;
    }

    .model-tab {
        flex: 1;
        min-width: 0;
        padding: 10px 4px;
    }

    .model-tab .tab-main {
        font-size: 13px;
    }

    .model-tab .tab-sub {
        font-size: 10px;
    }

    .model-item {
        min-width: 100px;
        flex-shrink: 0;
    }

    .model-item img {
        height: 88px;
    }

    .model-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .model-specs,
    .model-image,
    .model-image-actions {
        width: 100%;
    }

    .model-image {
        justify-content: center;
        margin-top: 16px;
    }

    .model-image-actions {
        align-items: flex-start;
        margin-top: 16px;
    }

    .model-detail-btns {
        width: 100%;
        flex-wrap: wrap;
    }

    .model-detail-btns .btn {
        flex: 1 1 48%;
    }

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

    .warranty-section {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
        gap: unset;
    }

    .warranty-img,
    .after-sales-img,
    .warranty-content {
        min-width: 100%;
        max-width: 100%;
    }
    .warranty-content{
        flex: unset;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    .navbar {
        height: 60px;
    }

    .nav-menu li a {
        font-size: 16px;
        padding: 14px 0;
    }

    .hero {
        height: auto;
        min-height: 460px;
        padding-top: 80px;
    }

    .hero-model {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 14px;
    }

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

    .model-selection-band .section-title {
        font-size: 22px;
    }

    .btn {
        min-width: 100px;
        padding: 8px 16px;
        height: auto;
        min-height: 40px;
    }

    .model-list {
        gap: 12px;
    }

    .model-item {
        min-width: 80px;
    }

    .model-item img {
        height: 60px;
    }

    .warranty-service {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .warranty-content,
    .warranty-content-secondary {
        padding: var(--gap-md);
    }

    .warranty-content-secondary{
        padding-left: var(--gap-md);
        padding-right: var(--gap-md);
    }

    .model-detail {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .model-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .advantages-grid {
        gap: var(--gap-md);
    }

    .warranty-img,
    .after-sales-img {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        height: 150px;
    }

    .warranty-tag {
        margin-bottom: 4px;
    }

    /* Stack buttons in hero */
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
    
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-gray);
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 40px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-menu li a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        width: 100%;
    }

    .nav-menu li a::after {
        display: none;
    }
    .models-panel,
    .nav-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: var(--ultra-light-gray);
        display: none;
        width: 100%;
        padding: 0;
        border-bottom: none;
    }

    .nav-menu li.submenu-open .models-panel,
    .nav-menu li.submenu-open .nav-panel {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .models-panel-inner,
    .nav-panel-inner {
        flex-direction: column;
        padding: 16px;
        gap: 20px;
    }

    .header-model-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 10px;
    }

    .header-model-sidebar>li {
        margin-bottom: 0;
        margin-right: 20px;
        white-space: nowrap;
    }

    .nav-panel-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        overflow-x: visible;
    }

    .nav-panel-list a {
        padding: 8px 0;
    }

    /* Language Selector Mobile */
    .lang-selector {
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid var(--border-gray);
    }

    .lang-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid var(--border-gray);
        margin-top: 10px;
        opacity: 1;
        transform: none;
        display: none;
    }

    .lang-selector.active .lang-dropdown {
        display: block;
    }

    .lang-menu {
        flex-direction: column;
    }

    .country-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }
}

@media (max-width: 1024px) {
    .header-model-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .header-model-tabs::-webkit-scrollbar {
        display: none;
    }

    .header-model-tab {
        min-width: fit-content;
        padding: 8px 16px;
        gap: 8px;
    }

    .header-model-tab .tab-icon {
        width: 24px;
        height: 24px;
    }

    .header-model-tab .tab-icon svg {
        width: 18px;
        height: 18px;
    }

    .header-model-tab .tab-title {
        font-size: 13px;
    }

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

    .header-model-card {
        padding: 12px;
    }

    .header-model-card img {
        height: 80px;
    }

    .header-model-split-view {
        flex-direction: column;
        gap: 20px;
    }

    .header-model-list-col {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .header-model-list-col::-webkit-scrollbar {
        display: none;
    }

    .header-model-list-item {
        min-width: 110px;
        padding: 8px;
    }

    .header-model-list-item img {
        height: 50px;
    }

    .header-model-detail-col {
        flex-direction: column;
        padding: 24px 16px;
        gap: 24px;
        align-items: stretch;
    }

    .header-detail-info {
        max-width: 100%;
    }

    .header-detail-image img {
        max-height: 200px;
        transform: none;
    }

    .header-detail-price-area {
        align-items: flex-start;
        min-width: auto;
    }

    .header-detail-actions {
        width: 100%;
        flex-direction: column;
    }

    .header-detail-actions .header-btn {
        text-align: center;
        width: 100%;
    }
    .header-detail-actions button {
        cursor: pointer;
    }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
