/* Premium Shop Menu Styles */

/* Hide old dropdown menu on desktop to prevent conflicts */
@media (min-width: 1024px) {
    .dropdown-menu-wrapper {
        display: none !important;
    }
}

/* ===== Premium Badges ===== */
.premium-badge,
.gen-premium-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #09090b;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ===== Model Card Image Support ===== */
.model-icon-wrapper .model-image,
.model-icon-wrapper picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.model-image-wrapper picture,
.model-icon-wrapper picture {
    width: 100%;
    height: 100%;
    display: flex;
}

/* ===== Model Card Modifications ===== */
.model-card {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.model-card.active {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.model-card.has-modifications {
    cursor: pointer;
}

.model-card.has-modifications:hover {
    background: rgba(63, 63, 70, 0.3);
}

.model-modifications-dropdown {
    display: none;
}

.model-card.modifications-open .model-modifications-dropdown {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(63, 63, 70, 0.5);
}

.modifications-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modification-item {
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modification-item-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(63, 63, 70, 0.4);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.modification-item-inner .model-icon-wrapper {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #27272a, #18181b);
    overflow: hidden;
    border: 1px solid rgba(63, 63, 70, 0.5);
}

/* Модификации теперь используют те же стили, что и модели второго уровня */
.modifications-column .model-card {
    cursor: pointer;
}

.modifications-column .model-card:hover {
    transform: translateY(-2px);
}

.modifications-column .model-card a {
    text-decoration: none;
    color: inherit;
}

.modification-item:hover .modification-item-inner {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(24, 24, 27, 0.6);
    transform: translateX(4px);
}

.modification-item:hover .model-icon-wrapper {
    border-color: rgba(251, 191, 36, 0.3);
}

.modification-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modification-title {
    font-size: 14px;
    font-weight: 500;
    color: #f8f9ff;
}

.gen-year {
    font-size: 12px;
    color: #a1a1aa;
}

.base-model-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.model-base-link .modification-item-inner {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.model-base-link:hover .modification-item-inner {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.1);
}

.modification-price {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    margin-right: 8px;
}

.modification-item .model-chevron {
    width: 1rem;
    height: 1rem;
    color: #71717a;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.modification-item:hover .model-chevron {
    color: #fbbf24;
}

/* ===== Catalog Wrapper для правильного позиционирования ===== */
.catalog-wrapper {
    position: relative;
}

/* ===== Premium Shop Menu Wrapper ===== */
.premium-shop-menu-wrapper {
    position: fixed !important;
    top: calc(var(--header-height, 68px) + 0.5rem) !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 1600px;
    max-width: min(calc(100vw - 80px), 1600px);
    display: none;
    z-index: 9999;
    background: rgba(9, 9, 11, 0.3);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

.premium-shop-menu-wrapper.visible {
    display: block;
}

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

/* ===== Premium Shop Menu ===== */
.premium-shop-menu {
    position: relative;
    overflow: hidden;
}

/* ===== Ambient Background ===== */
.ambient-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-circle-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.ambient-circle-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

/* ===== Menu Grid ===== */
.menu-grid {
    display: grid;
    grid-template-columns: 380px 1fr 1fr;
    height: 650px;
    position: relative;
    z-index: 10;
}

/* ===== Menu Sidebar ===== */
.menu-sidebar {
    position: relative;
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.95), rgba(24, 24, 27, 0.95), rgba(24, 24, 27, 0.95));
    backdrop-filter: blur(24px);
    border-radius: 1rem 0 0 1rem;
    padding: 1.5rem;
    border-right: 1px solid rgba(63, 63, 70, 0.5);
    overflow-y: auto;
}

.decorative-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 128px;
    background: linear-gradient(to bottom, #f59e0b, rgba(251, 191, 36, 0.5), transparent);
}

/* ===== Search Box ===== */
.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 3rem;
    padding-left: 2.75rem;
    padding-right: 1rem;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(63, 63, 70, 0.5);
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    line-height: 3rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: none !important;
}

.search-input::placeholder {
    color: #71717a;
}

.search-input:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.5);
}

/* ===== Quick Actions ===== */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.action-btn:hover {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), transparent);
    border-color: rgba(251, 191, 36, 0.2);
}

.action-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 146, 60, 0.1));
    transition: all 0.3s ease;
}

.action-btn:hover .action-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(251, 146, 60, 0.2));
}

.action-icon svg {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.action-content {
    flex: 1;
}

.action-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.action-btn:hover .action-title {
    color: #fbbf24;
}

.action-subtitle {
    font-size: 0.75rem;
    color: #71717a;
}

.action-arrow {
    width: 1rem;
    height: 1rem;
    color: #52525b;
    transition: color 0.3s ease;
}

.action-btn:hover .action-arrow {
    color: #fbbf24;
}

/* ===== Separator ===== */
.separator {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(63, 63, 70, 0.5), transparent);
    margin: 1.5rem 0;
}

/* ===== Brand List Header ===== */
.brand-list-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 0.75rem;
}

.brand-list-title {
    font-size: 0.75rem;
    font-weight: bold;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-list-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(63, 63, 70, 0.5), transparent);
}

/* ===== Brand List ===== */
.brand-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    min-height: 68px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-item:hover,
.brand-item.active {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1), transparent);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.1);
}

.brand-item.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.05), transparent);
    animation: shimmer 2s infinite;
}

.premium-shop-menu .brand-item {
    padding: 0.75rem 1rem !important;
    gap: 0.75rem !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 0.75rem !important;
    box-shadow: none !important;
}

.premium-shop-menu .brand-item:hover,
.premium-shop-menu .brand-item.active {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1), transparent) !important;
    border-color: rgba(251, 191, 36, 0.3) !important;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.1) !important;
}

.premium-shop-menu .brand-item.active::before {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.05), transparent) !important;
}

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

.brand-logo {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.brand-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
}

.brand-logo-emoji {
    font-size: 1.875rem;
}

.brand-item:hover .brand-logo,
.brand-item.active .brand-logo {
    transform: scale(1.1);
}

.brand-info {
    flex: 1;
    text-align: left;
}

.brand-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.brand-name {
    font-size: 0.875rem;
    font-weight: bold;
    color: #d4d4d8;
    transition: color 0.3s ease;
    font-family: inherit;
}

.brand-item:hover .brand-name,
.brand-item.active .brand-name {
    color: white;
}

.hot-badge {
    padding: 0 0.375rem;
    height: 1rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 0.25rem;
    color: #fbbf24;
    font-size: 0.625rem;
    font-weight: bold;
    line-height: 1rem;
}

.brand-models {
    font-size: 0.6875rem;
    color: #71717a;
}

.brand-tier {
    padding: 0.375rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.tier-ultra-luxury {
    background: rgba(251, 191, 36, 0.1);
}

.tier-supercar {
    background: rgba(239, 68, 68, 0.1);
}

.tier-luxury-sport {
    background: rgba(59, 130, 246, 0.1);
}

.brand-tier svg {
    width: 0.875rem;
    height: 0.875rem;
}

.tier-icon-gold {
    color: #fbbf24;
}

.tier-icon-red {
    color: #ef4444;
}

.tier-icon-blue {
    color: #3b82f6;
}

.brand-chevron {
    width: 1rem;
    height: 1rem;
    color: #52525b;
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-chevron,
.brand-item.active .brand-chevron {
    opacity: 1;
    transform: translateX(0);
    color: #fbbf24;
}

/* ===== Menu Content (Models Column) ===== */
.menu-content {
    position: relative;
    padding: 2rem;
    overflow-y: auto;
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(63, 63, 70, 0.3);
}

/* ===== Models Column ===== */
.models-column {
    position: relative;
    padding: 2rem;
    overflow-y: auto;
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(63, 63, 70, 0.3);
    display: none;
}

.models-column.active {
    display: block;
}

.models-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fafafa;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(63, 63, 70, 0.5);
}

/* ===== Modifications Column ===== */
.modifications-column {
    position: relative;
    padding: 2rem;
    overflow-y: auto;
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    display: none;
}

.modifications-column.active {
    display: block;
}

.modifications-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fafafa;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(63, 63, 70, 0.5);
}

.model-header-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(63, 63, 70, 0.5);
}

.model-header-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 0.5rem;
}

.model-header-brand {
    font-size: 1rem;
    color: #a1a1aa;
    margin-bottom: 0.75rem;
}

.model-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #4ade80;
}

.model-header-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.empty-state {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.empty-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.empty-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.2), rgba(59, 130, 246, 0.2));
    filter: blur(60px);
}

.empty-icon {
    position: relative;
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    color: #3f3f46;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.empty-text {
    font-size: 0.875rem;
    color: #71717a;
    max-width: 32rem;
    margin: 0 auto;
}

/* ===== Brand Content ===== */
.brand-content {
    display: none;
}

.brand-content.active {
    display: block;
}

.brand-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.brand-header-bg {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    filter: blur(60px);
    opacity: 0.3;
}

.brand-header-card {
    position: relative;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.5), rgba(39, 39, 42, 0.3));
    backdrop-filter: blur(24px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(63, 63, 70, 0.5);
}

.brand-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.brand-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-header-logo {
    font-size: 3rem;
}

.brand-header-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.brand-tagline {
    font-size: 0.875rem;
    color: #a1a1aa;
    font-style: italic;
}

.tier-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid;
}

.tier-badge-ultra {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

.tier-badge-super {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.tier-badge-luxury {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.tier-badge svg {
    width: 1rem;
    height: 1rem;
}

.tier-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.brand-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: #71717a;
    flex-wrap: wrap;
}

.brand-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #22c55e;
}

.brand-stat svg {
    width: 0.875rem;
    height: 0.875rem;
}

.stat-icon-gold {
    color: #fbbf24;
}

.stat-icon-blue {
    color: #3b82f6;
}

/* ===== Models Grid ===== */
.models-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-card {
    position: relative;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(63, 63, 70, 0.4);
    border-radius: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(24, 24, 27, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.4);
}

.model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0), rgba(251, 191, 36, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.model-card:hover::before {
    opacity: 1;
}

.model-card-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    padding-right: 3rem; /* Резервируем место для стрелочки, чтобы изображения были выровнены одинаково */
}

.model-image-wrapper {
    position: relative;
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #27272a, #18181b);
    overflow: hidden;
}

.model-image-wrapper {
    position: relative;
}

.model-image-wrapper .model-image,
.model-image-wrapper picture,
.model-image-wrapper picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.4s ease;
    display: block;
}

.model-image-wrapper picture {
    width: 100%;
    height: 100%;
}

/* Анимированное изображение при hover */
.model-image-wrapper .model-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.model-image-wrapper .model-image-default {
    position: relative;
    opacity: 1;
}

/* При hover показываем анимированное изображение, скрываем обычное */
.model-card:hover .model-image-wrapper .model-image-default {
    opacity: 0;
}

.model-card:hover .model-image-wrapper .model-image-hover {
    opacity: 1;
}

/* Если нет hover изображения - просто масштабируем */
.model-card:hover .model-image-wrapper .model-image-default:only-child {
    opacity: 1;
    transform: scale(1.05);
}

.model-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27272a, #18181b);
}

.model-card:hover .model-icon-wrapper {
    border-color: rgba(251, 191, 36, 0.3);
}

.model-icon {
    width: 3rem;
    height: 3rem;
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.model-card:hover .model-icon {
    color: #fbbf24;
}

.model-info {
    flex: 1;
    min-width: 0;
}

.model-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.model-name-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.model-labels {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-parent {
    font-size: 0.75rem;
    color: #a1a1aa;
    font-weight: 500;
}

.model-name {
    font-size: 0.875rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
    font-family: inherit;
}

.model-card:hover .model-name {
    color: #fbbf24;
}

.model-tag {
    padding: 0.125rem 0.5rem;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(63, 63, 70, 0.5);
    border-radius: 0.25rem;
    color: #a1a1aa;
    font-size: 0.625rem;
    white-space: nowrap;
}

.model-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.model-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #52525b;
    transition: all 0.3s ease;
    flex-shrink: 0;
    pointer-events: none;
}

.model-card[data-link] .model-card-inner:hover .model-chevron {
    color: #fbbf24;
    transform: translateY(-50%) translateX(4px);
}

.model-subtitle {
    font-size: 0.6875rem;
    color: #71717a;
    margin-top: 0.25rem;
}

/* ===== Exclusive Offer ===== */
.exclusive-offer {
    position: relative;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.2), rgba(120, 53, 15, 0.1), rgba(120, 53, 15, 0.2));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.exclusive-offer--top {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.offer-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, currentColor 10px, currentColor 20px);
}

.offer-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: auto;
    min-height: auto;
}

.offer-icon-wrapper {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 3.75rem;
    height: 3.75rem;
    min-width: 3.75rem;
    min-height: 3.75rem;
    max-width: 3.75rem;
    max-height: 3.75rem;
}

.offer-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

.offer-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-icon-fallback {
    font-size: 1.5rem;
    font-weight: 600;
}

.offer-text {
    flex: 1;
}

.offer-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.offer-description {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.offer-buttons {
    display: flex;
    gap: 0.75rem;
}

.offer-btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #f59e0b, #f59e0b);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.25);
    transition: all 0.3s ease;
}

.offer-btn-primary:hover {
    background: linear-gradient(to right, #f59e0b, #d97706);
}

.offer-btn-primary svg {
    width: 1rem;
    height: 1rem;
}

.offer-btn-secondary {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.offer-btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    text-decoration: none;
    color: #fbbf24;
}

/* ===== Scrollbar Styles ===== */
.menu-sidebar::-webkit-scrollbar,
.menu-content::-webkit-scrollbar {
    width: 6px;
}

.menu-sidebar::-webkit-scrollbar-track,
.menu-content::-webkit-scrollbar-track {
    background: transparent;
}

.menu-sidebar::-webkit-scrollbar-thumb,
.menu-content::-webkit-scrollbar-thumb {
    background: rgba(63, 63, 70, 0.5);
    border-radius: 3px;
}

.menu-sidebar::-webkit-scrollbar-thumb:hover,
.menu-content::-webkit-scrollbar-thumb:hover {
    background: rgba(82, 82, 91, 0.7);
}

/* ===== Responsive ===== */
/* Desktop only - hide on mobile/tablet */
@media (max-width: 1023px) {
    .premium-shop-menu-wrapper {
        display: none !important;
    }
}

/* Responsive breakpoints for desktop >= 1024px */
@media (min-width: 1024px) and (max-width: 1279px) {
    .premium-shop-menu-wrapper {
        width: min(calc(100vw - 40px), 1200px);
        max-width: calc(100vw - 40px);
    }

    .menu-grid {
        grid-template-columns: 280px 1fr 1fr;
        height: 550px;
    }
}

@media (min-width: 1280px) and (max-width: 1365px) {
    .premium-shop-menu-wrapper {
        width: min(calc(100vw - 60px), 1400px);
        max-width: calc(100vw - 60px);
    }

    .menu-grid {
        grid-template-columns: 320px 1fr 1fr;
        height: 600px;
    }
}

@media (min-width: 1366px) {
    .premium-shop-menu-wrapper {
        width: min(calc(100vw - 80px), 1600px);
        max-width: calc(100vw - 80px);
    }
}

