/*
Theme Name: BIZBIZ
Theme URI: https://link3.cc/fantuanso
Author: 饭小团|微信ersanhang
Author URI: https://link3.cc/fantuanso
Description: 贝智汽车销售平台
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bizbiz
*/

/* =重置与基础样式
-------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
}

:root {
    --color-primary: #298D3A;
    --color-primary-dark: #1F702D;
    --color-primary-light: #3DA850;
    --color-primary-accent: #E8F5EA;
    --color-secondary: #3D5A6C;
    --color-secondary-light: #4E6E82;
    --color-dark: #2D2D2D;
    --color-gray: #7A7A7A;
    --color-gray-light: #F0F0F0;
    --color-white: #FFFFFF;
    --color-success: #6B8E6E;
    --color-accent: #2D7A3A;
    --color-background: #F8FAF8;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 16px 32px -8px rgba(61, 90, 108, 0.15);
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 100px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.7;
    background-color: var(--color-background);
    overflow-x: hidden !important;
}

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

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =Header
-------------------------------------------------------------- */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999999 !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 0;
    gap: 48px;
}

.header-actions {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--color-gray);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transition: width 0.35s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary-dark);
}

.main-nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transition: width 0.35s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(196, 165, 116, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(196, 165, 116, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-primary-accent);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary-accent), var(--color-gray-light));
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 165, 116, 0.2);
}

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

.btn-ghost:hover {
    color: var(--color-primary-dark);
    background: rgba(196, 165, 116, 0.1);
}

/* =Hero Section
-------------------------------------------------------------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #3D5A6C 0%, #2D4A5C 100%);
    color: var(--color-white);
    padding: 100px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/icons/headcar.jpg') center/cover;
    opacity: 0.18;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(196, 165, 116, 0.1) 0%, transparent 50%, rgba(61, 90, 108, 0.2) 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 100%;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* =Source Countries
-------------------------------------------------------------- */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-gray);
    margin-top: 16px;
}

.source-countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.source-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}



.source-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.12) 0%, rgba(196, 165, 116, 0.04) 100%);
    border-radius: 28px;
    color: var(--color-primary);
    position: relative;
    transition: var(--transition);
}

.source-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 24px;
    border: 1px dashed rgba(196, 165, 116, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.source-card:hover .source-icon::after {
    opacity: 1;
}

.source-card:hover .source-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.2) 0%, rgba(196, 165, 116, 0.08) 100%);
}

.source-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    transition: var(--transition);
}

.source-card:hover .source-name {
    color: var(--color-primary-dark);
}

.source-desc {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* =Search Section
-------------------------------------------------------------- */
.search-section {
    background: var(--color-white);
    padding: 42px 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
    position: relative;
    z-index: 999999 !important;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.search-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray);
    text-transform: none;
    letter-spacing: 0.3px;
}

.search-select {
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-primary);
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.search-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
}

.search-btn {
    grid-column: span 1;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(196, 165, 116, 0.35);
    position: relative;
    overflow: hidden;
}

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

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 165, 116, 0.45);
}

/* =Source Countries Section
--------------------------------------------------------------- */
.source-section {
    padding: 60px 0;
}

.source-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: end;
}

.source-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.source-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.source-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.source-highlight {
    font-weight: 700;
    color: #298D3A;
    font-size: 1.3rem;
}

.source-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.source-stat-item {
    padding: 20px;
    border-radius: 12px;
}

.brand-stat {
    background: #e8f5e9;
}

.vehicle-stat {
    background: #fff3e0;
}

.source-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #298D3A;
}

.vehicle-stat .source-stat-num {
    color: #ea580c;
}

.source-stat-label {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 4px;
}

.source-right {
    display: flex;
    justify-content: flex-end;
}

.source-card {
    display: block;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
    width: 100%;
}

.source-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #298D3A;
}

.source-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.source-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.source-card-icon img {
    width: 48px;
    height: 48px;
}

.source-card-info {
    flex: 1;
}

.source-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.source-card-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 6px 0 0 0;
}

.source-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.source-card-text {
    font-size: 1rem;
    color: #64748b;
}

.source-card-arrow {
    width: 36px;
    height: 36px;
    background: #298D3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 移动端优化 */
@media (max-width: 992px) {
    .source-section {
        padding: 48px 0;
    }
    
    .source-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }
    
    .source-left {
        order: 1;
    }
    
    .source-right {
        order: 2;
        justify-content: center;
    }
    
    .source-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .source-desc {
        font-size: 1rem;
        text-align: center;
    }
    
    .source-stats {
        justify-content: center;
    }
    
    .source-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .source-section {
        padding: 40px 0;
    }
    
    .source-grid {
        gap: 32px;
    }
    
    .source-title {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .source-desc {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .source-stats {
        gap: 12px;
    }
    
    .source-stat-item {
        padding: 16px;
    }
    
    .source-stat-num {
        font-size: 1.6rem;
    }
    
    .source-card {
        padding: 28px;
    }
    
    .source-card-header {
        gap: 16px;
    }
    
    .source-card-icon {
        width: 64px;
        height: 64px;
    }
    
    .source-card-icon img {
        width: 40px;
        height: 40px;
    }
    
    .source-card-title {
        font-size: 1.5rem;
    }
    
    .source-card-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .source-section {
        padding: 32px 0;
    }
    
    .source-grid {
        gap: 24px;
    }
    
    .source-title {
        font-size: 1.5rem;
    }
    
    .source-highlight {
        font-size: 1.1rem;
    }
    
    .source-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .source-stat-item {
        padding: 14px;
        border-radius: 10px;
    }
    
    .source-stat-num {
        font-size: 1.4rem;
    }
    
    .source-stat-label {
        font-size: 0.85rem;
        margin-top: 3px;
    }
    
    .source-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .source-card-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .source-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    
    .source-card-icon img {
        width: 32px;
        height: 32px;
    }
    
    .source-card-title {
        font-size: 1.3rem;
    }
    
    .source-card-subtitle {
        font-size: 0.85rem;
        margin-top: 4px;
    }
    
    .source-card-footer {
        padding-top: 16px;
    }
    
    .source-card-text {
        font-size: 0.9rem;
    }
    
    .source-card-arrow {
        width: 32px;
        height: 32px;
    }
}

/* =Features Section
--------------------------------------------------------------- */
.features {
    background: var(--color-white);
}

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

.feature-item {
    text-align: left;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.15) 0%, rgba(196, 165, 116, 0.06) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.25) 0%, rgba(196, 165, 116, 0.1) 100%);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
    stroke: var(--color-primary);
    fill: none;
    transition: var(--transition);
}

.feature-item:hover .feature-icon svg {
    stroke: var(--color-primary-dark);
    transform: scale(1.1);
}

.feature-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-item:hover .feature-title {
    color: var(--color-primary-dark);
}

.feature-desc {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* =Vehicles Section
-------------------------------------------------------------- */
.vehicles-section {
    background: var(--color-background);
}

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

.vehicle-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-bounce);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.vehicle-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(196, 165, 116, 0.2);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-gray-light);
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vehicle-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.vehicle-favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-favorite:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 12px rgba(196, 165, 116, 0.4);
}

.vehicle-favorite.active {
    background: var(--color-primary);
    color: var(--color-white);
    animation: favoriteBounce 0.4s ease;
}

@keyframes favoriteBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.vehicle-content {
    padding: 20px;
}

.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.vehicle-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.vehicle-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-gray);
}

.vehicle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-light);
}

.vehicle-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-primary);
}

.vehicle-price .price-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.vehicle-price .price-currency {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary);
}

.vehicle-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* =CTA Section
-------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* =Footer
-------------------------------------------------------------- */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* =Mobile Navigation
-------------------------------------------------------------- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    display: none;
}

/* 移动端头部右侧按钮 */
.mobile-header-right {
    display: none;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 100;
}

.mobile-lang-currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-lang-currency-btn:hover {
    background: #f1f5f9;
    border-color: var(--color-primary);
}

.mobile-lang-currency-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-currency-code {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary);
}

.mobile-chevron {
    transition: transform 0.2s;
}

.mobile-user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
}

.mobile-user-btn:hover {
    background: #f1f5f9;
}

.mobile-user-btn svg {
    width: 20px;
    height: 20px;
}

/* =Responsive
-------------------------------------------------------------- */
@media (max-width: 1280px) {
    .header-inner {
        gap: 28px;
    }

    .main-nav-links {
        gap: 24px;
    }

    .header-actions {
        gap: 12px;
    }

    .btn {
        padding: 11px 22px;
    }

    .search-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1180px) {
    .header-inner {
        gap: 20px;
    }

    .logo {
        gap: 10px;
        font-size: 21px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .main-nav-links {
        gap: 18px;
    }

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

    .lang-currency-toggle {
        padding: 10px 16px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .search-section {
        padding: 34px 36px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .source-countries {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .main-nav-links,
    .header-actions,
    .mobile-nav-toggle,
    .footer {
        display: none;
    }
    
    .mobile-header-right {
        display: flex;
    }
    
    /* 移动端Logo调整 */
    .logo {
        font-size: 14px !important;
        gap: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    .logo span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 120px !important;
    }
    
    .logo-icon {
        width: 28px !important;
        height: 28px !important;
        border-radius: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .logo-icon img {
        max-height: 20px !important;
        max-width: 20px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .hero {
        padding: 64px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .search-section {
        padding: 24px;
        margin-top: 0;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .search-btn {
        grid-column: span 1;
    }
    
    .vehicles-grid,
    .features-grid,
    .source-countries {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* 移动端下拉菜单优化 */
    .mobile-header-right .lang-currency-dropdown {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 40px);
        max-width: 340px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 9999;
    }
    
    /* 移动端下拉菜单遮罩 - 隐藏 */
    .mobile-dropdown-overlay {
        display: none !important;
    }
}

/* =图标样式
-------------------------------------------------------------- */
.nav-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    vertical-align: middle;
}

/* Logo图标样式 */
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-sizing: border-box;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* 来源国家图标 */
.source-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    border-radius: 20px;
    color: var(--color-primary);
}

/* 功能特色图标 */
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

/* 收藏按钮图标 */
.vehicle-favorite svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.vehicle-favorite.active svg {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}

/* Footer logo图标 */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* =移动端底部导航
-------------------------------------------------------------- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    z-index: 9999999 !important;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    color: var(--color-gray);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition-bounce);
    border-radius: 12px;
    position: relative;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--color-primary-dark);
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.1), rgba(196, 165, 116, 0.04));
    transform: translateY(-2px);
}

.mobile-nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: var(--transition);
}

.mobile-nav-item:hover svg,
.mobile-nav-item.active svg {
    stroke: var(--color-primary);
    transform: scale(1.1);
}

/* =装饰性元素
-------------------------------------------------------------- */
/* 装饰性圆点背景 */
.section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 165, 116, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section:nth-of-type(odd)::before {
    top: -100px;
    right: -100px;
}

.section:nth-of-type(even)::before {
    bottom: -100px;
    left: -100px;
}

/* =成本估算器
-------------------------------------------------------------- */
.calculator-section {
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.calculator-form h2,
.calculator-result h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 12px;
    display: inline-block;
}

.calculator-field {
    position: relative;
}

.calculator-field label {
    font-size: 0.95rem;
}

.calculator-field input[type="number"],
.calculator-field select {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.calculator-field input[type="number"]:focus,
.calculator-field select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(41, 141, 58, 0.1);
    outline: none;
}

.calculator-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    margin-top: 8px;
}

.calculator-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(41, 141, 58, 0.3);
}

.calculator-field input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(41, 141, 58, 0.3);
}

.result-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.total-cost {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(41, 141, 58, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(41, 141, 58, 0);
    }
}

.included-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

.included-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.included-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.included-item p {
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .result-breakdown {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-form,
    .calculator-result {
        padding: 24px;
    }
    
    .calculator-section {
        padding: 40px 0;
    }
    
    .total-value {
        font-size: 2rem;
    }
}



/* =登录注册页面
-------------------------------------------------------------- */
.login-register-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background: var(--color-background);
}

.login-register-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

/* Notices */
.success-notice,
.error-notice {
    text-align: center;
    padding: 30px;
    background: var(--color-primary-accent);
    border-radius: 12px;
    margin-bottom: 30px;
}

.error-notice {
    background: #ffe8e8;
}

.success-notice img,
.error-notice img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.success-notice h2 {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.success-notice p,
.error-notice p {
    color: var(--color-gray);
    font-size: 14px;
}

.error-notice p {
    color: #c0392b;
}

/* Tabs */
.tab-container {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    background: var(--color-gray-light);
    border-radius: 10px;
    padding: 4px;
}

.tab-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: var(--color-gray);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--color-dark);
}

.tab-btn.active {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Forms */
.form-container {
    display: none;
}

.form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 30px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    padding: 14px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(41, 141, 58, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

/* Captcha */
.captcha-group {
    margin-bottom: 10px;
}

.captcha-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-container input {
    flex: 1;
}

.captcha-image {
    border-radius: 10px;
    height: 50px;
    cursor: pointer;
    transition: opacity 0.2s;
    border: 1px solid var(--color-gray-light);
}

.captcha-image:hover {
    opacity: 0.8;
}

/* ==================== 个人中心 ==================== */
.account-page {
    padding: 40px 0;
    background: var(--color-background);
    min-height: calc(100vh - 200px);
}

.account-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* 侧边栏 */
.account-sidebar {
    background: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: fit-content;
}

/* PC端：隐藏移动端元素 */
.sidebar-mobile-header {
    display: none;
}

.account-mobile-menu-btn,
.account-sidebar-overlay {
    display: none;
}

/* 防止水平滚动 */
.account-page {
    overflow-x: hidden;
}

/* 移动端侧边栏样式 */
@media (max-width: 992px) {
    .account-wrapper {
        position: relative;
    }
    
    .account-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        border-radius: 0;
        padding: 20px;
        z-index: 10000000;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .account-sidebar.open {
        left: 0;
    }
    
    .sidebar-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .sidebar-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--color-dark);
    }
    
    .sidebar-close-btn {
        width: 36px;
        height: 36px;
        border: none;
        background: var(--color-gray-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--color-dark);
        transition: var(--transition);
    }
    
    .sidebar-close-btn:hover {
        background: var(--color-gray);
        color: white;
    }
    
    .account-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: white;
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(41, 141, 58, 0.4);
        cursor: pointer;
        z-index: 999999;
        transition: var(--transition);
    }
    
    .account-mobile-menu-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(41, 141, 58, 0.5);
    }
    
    .account-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999999;
    }
    
    .account-sidebar-overlay.open {
        display: block;
    }
}

.account-info {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-light);
    margin-bottom: 24px;
}

.account-avatar {
    margin-bottom: 16px;
}

.account-avatar img {
    border-radius: 50%;
}

.account-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.account-email {
    font-size: 14px;
    color: var(--color-gray);
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.account-nav-item:hover {
    background: var(--color-background);
    color: var(--color-primary);
}

.account-nav-item.active {
    background: var(--color-primary-accent);
    color: var(--color-primary);
}

.account-nav-item.logout {
    color: #e74c3c;
    margin-top: 12px;
}

.account-nav-item.logout:hover {
    background: #fee;
}

.account-nav-item img {
    width: 20px;
    height: 20px;
}

/* 内容区域 */
.account-content {
    background: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 30px;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    opacity: 0.15;
    margin-bottom: 24px;
}

.empty-state p {
    color: var(--color-gray);
    margin-bottom: 32px;
    font-size: 16px;
}

.empty-state .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.3);
}

.empty-state .btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 141, 58, 0.4);
}

/* 订单列表 */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-gray-light);
}

.order-info {
    display: flex;
    gap: 16px;
}

.order-number {
    font-weight: 600;
    color: var(--color-dark);
}

.order-date {
    color: var(--color-gray);
    font-size: 14px;
}

.order-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.order-status.status-pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.status-processing {
    background: #cce5ff;
    color: #004085;
}

.order-status.status-completed {
    background: var(--color-primary-accent);
    color: var(--color-primary);
}

.order-status.status-cancelled {
    background: #fdd;
    color: #c0392b;
}

.order-items {
    padding: 20px;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
}

.order-item:first-child {
    padding-top: 0;
}

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

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.item-meta {
    font-size: 14px;
    color: var(--color-gray);
}

.item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid var(--color-gray-light);
    background: var(--color-background);
}

.order-total {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.total-label {
    color: var(--color-gray);
    font-size: 14px;
}

.total-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
}

/* 收藏按钮样式 */
.vehicle-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.vehicle-favorite:hover {
    transform: scale(1.1);
}

.vehicle-favorite.active {
    background: var(--color-primary-accent);
}

.vehicle-favorite.active svg {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}

.vehicle-favorite svg {
    transition: all 0.2s;
    color: var(--color-gray);
}

/* 收藏按钮激活状态 */
.favorite-btn.active svg,
.bizbiz-favorite-btn.active svg {
    fill: var(--color-primary);
}

.favorite-btn:hover svg {
    color: var(--color-primary);
}

/* 动画 */
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* 响应式 */
@media (max-width: 992px) {
    .account-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .account-content {
        padding: 20px;
        border-radius: 16px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-item {
        flex-wrap: wrap;
    }
    
    .order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* 我的物流 */
.logistics-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logistics-card {
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    overflow: hidden;
}

.logistics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-gray-light);
}

.logistics-info {
    display: flex;
    gap: 16px;
}

.logistics-number {
    font-weight: 600;
    color: var(--color-dark);
}

.logistics-date {
    color: var(--color-gray);
    font-size: 14px;
}

.logistics-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.logistics-status.status-pending {
    background: #fff3cd;
    color: #856404;
}

.logistics-status.status-processing {
    background: #cce5ff;
    color: #004085;
}

.logistics-status.status-shipping {
    background: #d4edda;
    color: #155724;
}

.logistics-status.status-completed {
    background: var(--color-primary-accent);
    color: var(--color-primary);
}

.logistics-status.status-cancelled {
    background: #fdd;
    color: #c0392b;
}

.logistics-content {
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.logistics-product {
    display: flex;
    gap: 16px;
    flex: 1;
}

.logistics-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.logistics-product-info {
    flex: 1;
}

.logistics-product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.logistics-destination {
    font-size: 14px;
    color: var(--color-gray);
    margin: 0;
}

.logistics-tracking {
    min-width: 200px;
}

.tracking-info-row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.tracking-info-row:last-child {
    margin-bottom: 0;
}

.tracking-label {
    font-weight: 500;
    color: var(--color-gray);
    font-size: 14px;
}

.tracking-value {
    color: var(--color-dark);
    font-size: 14px;
}

.tracking-number {
    font-weight: 600;
    color: var(--color-primary);
}

.logistics-timeline-container {
    padding: 0 20px 20px;
}

.refresh-tracking-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 8px 16px;
    font-size: 14px;
}

.refresh-tracking-btn:hover {
    background: var(--color-primary-accent);
}

.logistics-timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

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

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-light);
    border: 3px solid var(--color-background);
    z-index: 1;
}

.timeline-item.latest .timeline-dot {
    background: var(--color-primary);
    width: 16px;
    height: 16px;
    top: 2px;
    left: -32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 16px;
    bottom: 0;
    width: 2px;
    background: var(--color-gray-light);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content {
    background: var(--color-background);
    padding: 12px 16px;
    border-radius: 10px;
}

.timeline-item.latest .timeline-content {
    background: var(--color-primary-accent);
    border: 1px solid var(--color-primary-light);
}

.timeline-time {
    display: block;
    font-size: 12px;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.timeline-item.latest .timeline-time {
    color: var(--color-primary);
    font-weight: 500;
}

.timeline-desc {
    font-size: 14px;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.5;
}

.timeline-empty {
    padding: 20px;
    text-align: center;
    color: var(--color-gray);
    background: var(--color-background);
    border-radius: 10px;
}

.timeline-empty p {
    margin: 0;
}

@media (max-width: 768px) {
    .logistics-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .logistics-tracking {
        min-width: auto;
        width: 100%;
    }
    
    .logistics-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Checkbox */
.form-check {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.form-check label {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.form-check a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Buttons */
.btn-full {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
}

/* Footer */
.form-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gray-light);
}

.forgot-link {
    font-size: 14px;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 576px) {
    .login-register-wrapper {
        padding: 24px;
        margin: 0 16px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .captcha-container {
        flex-wrap: wrap;
    }
}


/* 移动端导航显示 */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 72px;
    }
}

/* 为底部导航预留空间 */
@media (max-width: 768px) {
    .footer {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
}

/* =WooCommerce 基础布局
-------------------------------------------------------------- */
.woocommerce .page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 40px;
    text-align: center;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
    float: none;
}

/* 商品循环 - 移除默认样式 */
.woocommerce ul.products li.product a img {
    margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 12px 0;
    padding: 0;
}

/* 分页 */
.woocommerce-pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination-wrapper {
    margin: 40px 0;
    text-align: center;
}

.pagination-wrapper ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper ul.page-numbers li,
.woocommerce-pagination ul.page-numbers li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper ul.page-numbers li::before,
.woocommerce-pagination ul.page-numbers li::before {
    display: none !important;
}

.pagination-wrapper ul.page-numbers li .page-numbers,
.woocommerce-pagination ul.page-numbers li .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.pagination-wrapper ul.page-numbers li .page-numbers.prev,
.pagination-wrapper ul.page-numbers li .page-numbers.next,
.woocommerce-pagination ul.page-numbers li .page-numbers.prev,
.woocommerce-pagination ul.page-numbers li .page-numbers.next {
    width: auto;
    padding: 0 20px;
}

.pagination-wrapper ul.page-numbers li .page-numbers:hover,
.pagination-wrapper ul.page-numbers li .page-numbers.current,
.woocommerce-pagination ul.page-numbers li .page-numbers:hover,
.woocommerce-pagination ul.page-numbers li .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* 排序和结果计数 */
.woocommerce-ordering {
    float: right;
}

.woocommerce-result-count {
    float: left;
    color: var(--color-gray);
    padding: 12px 0;
}

.woocommerce-breadcrumb {
    margin-bottom: 40px;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.woocommerce-breadcrumb a {
    color: var(--color-primary);
}

/* 确保WooCommerce内容对齐 */
.woocommerce .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .woocommerce .col2-set {
        grid-template-columns: 1fr;
    }
}

/* 商品详情页画廊 */
.woocommerce-product-gallery {
    margin-bottom: 30px;
}

.woocommerce-product-gallery__image {
    border-radius: 14px;
    overflow: hidden;
}

.woocommerce div.product div.images .flex-control-thumbs {
    margin-top: 15px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 23.5%;
    margin: 0 2% 2% 0;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: 10px;
}

/* 商品标签 */
.woocommerce-product-details__short-description {
    color: var(--color-gray);
    line-height: 1.8;
}

/* 商品属性 */
.woocommerce-product-attributes {
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce-product-attributes th {
    text-align: left;
    padding: 10px;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-gray-light);
}

.woocommerce-product-attributes td {
    padding: 10px;
    border-bottom: 1px solid var(--color-gray-light);
}

/* 相关商品和追加销售 */
.woocommerce .related,
.woocommerce .upsells,
.woocommerce .cross-sells {
    margin-top: 60px;
}

.woocommerce .related h2,
.woocommerce .upsells h2,
.woocommerce .cross-sells h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-dark);
}

/* 购物车表格 */
.woocommerce-cart-form {
    margin-bottom: 30px;
}

.cart-collaterals {
    float: right;
    width: 40%;
}

@media (max-width: 768px) {
    .cart-collaterals {
        float: none;
        width: 100%;
    }
}

.cart_totals {
    background: var(--color-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.cart_totals h2 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.wc-proceed-to-checkout {
    margin-top: 20px;
}

/* 我的账户 */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 25%;
    padding-right: 30px;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 75%;
}

@media (max-width: 992px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        float: none;
        width: 100%;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 30px;
        padding-right: 0;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 16px 20px;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--color-primary-accent);
    color: var(--color-primary);
}

/* 表单字段通用样式 */
.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(41, 141, 58, 0.1);
}

/* 支付网关 */
.woocommerce-checkout #payment {
    background: var(--color-background);
    border-radius: 14px;
    padding: 24px;
}

/* 结账页面 */
#customer_details {
    margin-bottom: 40px;
}

/* 商品标签和分类 */
.tagged_as,
.product_meta {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.tagged_as a,
.product_meta a {
    color: var(--color-primary);
}

/* 库存状态 */
.woocommerce .stock {
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.9rem;
}

.woocommerce .in-stock {
    background: #E8F5EA;
    color: var(--color-primary);
}

.woocommerce .out-of-stock {
    background: #FFEBEE;
    color: #D32F2F;
}

/* 移除WooCommerce默认的浮动清除 */
.clearfix::after,
.clear::after {
    content: '';
    display: table;
    clear: both;
}

/* 确保响应式图片 */
.woocommerce img {
    max-width: 100%;
    height: auto;
}

/* 商品SKU */
.sku_wrapper {
    color: var(--color-gray);
}

/* 评分 */
.woocommerce .star-rating {
    color: #FFC107;
}

.woocommerce .star-rating span {
    color: #FFC107;
}

/* 评论 */
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin-left: 80px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

/* 评论表单 */
.woocommerce #review_form #respond {
    margin-top: 40px;
    padding: 30px;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.woocommerce #review_form #respond h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

/* 变体选择 */
.woocommerce div.product form.cart .variations {
    margin-bottom: 20px;
    width: 100%;
}

.woocommerce div.product form.cart .variations td.label {
    padding: 10px 10px 10px 0;
}

.woocommerce div.product form.cart .variations td.value select {
    padding: 10px 14px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    min-width: 200px;
}

/* 商品数量选择器 */
.woocommerce div.product form.cart div.quantity {
    margin-right: 15px;
}

.woocommerce div.product form.cart div.quantity .qty {
    width: 80px;
    padding: 10px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
}

/* 购物车按钮 */
.woocommerce .button {
    transition: var(--transition);
}

.woocommerce .button:hover {
    transform: translateY(-2px);
}

/* 销售闪光标签 */
.woocommerce span.onsale {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    top: 16px;
    left: 16px;
    right: auto;
    min-height: auto;
    min-width: auto;
    line-height: 1;
}

/* 价格删除线 */
.woocommerce del .woocommerce-Price-amount {
    color: var(--color-gray);
    font-size: 1rem;
    font-weight: 400;
}

.woocommerce ins {
    text-decoration: none;
}

/* 确保WooCommerce内容正确显示 */
.woocommerce {
    width: 100%;
}

/* 小部件 */
.woocommerce.widget {
    background: var(--color-white);
    padding: 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.woocommerce.widget .widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

/* 筛选小部件 */
.widget_price_filter .price_slider {
    margin-bottom: 20px;
}

.widget_price_filter .price_slider_amount {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 层叠导航面包屑 */
.woocommerce-breadcrumb {
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

/* 清空浮动 */
.woocommerce::after,
.woocommerce-page::after,
.woocommerce-account::after,
.woocommerce-cart::after,
.woocommerce-checkout::after,
.woocommerce-order-received::after {
    content: '';
    display: table;
    clear: both;
}

/* ========================================
   语言和货币选择器样式
   ======================================== */

/* 语言货币选择器容器 */
.lang-currency-selector {
    position: relative;
    display: inline-block;
}

/* 切换按钮 */
.lang-currency-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-weight: 600;
    color: var(--color-dark);
}

.lang-currency-toggle:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(41, 141, 58, 0.15);
}

.lang-currency-toggle .lang-flag {
    font-size: 18px;
}

.lang-currency-toggle .lang-code {
    font-weight: 700;
}

.lang-currency-toggle .currency-code {
    color: var(--color-primary);
    font-weight: 700;
}

.lang-currency-toggle .chevron {
    transition: transform 0.2s;
}

.lang-currency-toggle.active .chevron {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.lang-currency-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 99999;
    overflow: hidden;
}

.lang-currency-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉区域 */
.dropdown-section {
    padding: 12px 14px;
}

.dropdown-section .section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* 语言选项 */
.language-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--color-background);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.language-option:hover {
    background: #f0f0f0;
}

.language-option.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.3);
}

.language-option .lang-flag {
    font-size: 18px;
}

.language-option .lang-name {
    font-weight: 600;
    font-size: 13px;
}

/* 分隔线 */
.dropdown-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 0;
}

/* 货币搜索 */
.currency-search {
    margin-bottom: 8px;
}

.currency-search-input {
    width: 100%;
    padding: 8px 12px;
    background: var(--color-background);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.2s;
    font-family: inherit;
}

.currency-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
}

/* 货币标签 */
.currency-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.currency-tab {
    flex: 1;
    padding: 7px 12px;
    background: var(--color-background);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-gray);
    transition: all 0.2s;
    font-family: inherit;
    font-size: 12px;
}

.currency-tab:hover {
    background: #e8e8e8;
}

.currency-tab.active {
    background: white;
    color: var(--color-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 货币选项 */
.currency-options {
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
    position: relative;
}

.currency-option:hover {
    background: var(--color-background);
    border-color: #e0e0e0;
}

.currency-option.active {
    background: #fff5f0;
    border-color: var(--color-primary);
}

.currency-option .currency-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-background);
    border-radius: 6px;
    font-size: 14px;
}

.currency-option.active .currency-flag {
    background: var(--color-primary-accent);
    color: var(--color-primary);
}

.currency-option .currency-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.currency-option .currency-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-dark);
}

.currency-option .currency-code-info {
    font-size: 11px;
    color: var(--color-gray);
}

.currency-option .check-icon {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: bold;
}

/* 下拉底部 */
.dropdown-footer {
    padding: 10px 14px;
    background: var(--color-background);
    text-align: center;
    color: var(--color-gray);
    font-size: 12px;
}

/* 欢迎弹窗 */
.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.welcome-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.welcome-modal {
    background: white;
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.welcome-modal-overlay.show .welcome-modal {
    transform: translateY(0);
}

.welcome-header {
    padding: 30px 20px 20px;
    text-align: center;
}

.welcome-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.welcome-header p {
    color: var(--color-gray);
    font-size: 14px;
}

.welcome-section {
    padding: 0 20px 16px;
}

.welcome-section .section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

/* 欢迎语言选项 */
.welcome-language-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.welcome-language-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px;
    background: var(--color-background);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.welcome-language-option:hover {
    background: white;
    border-color: #e0e0e0;
}

.welcome-language-option.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.3);
}

.welcome-language-option .lang-flag {
    font-size: 28px;
}

.welcome-language-option .lang-name {
    font-weight: 700;
    font-size: 14px;
}

/* 欢迎货币选项 */
.welcome-currency-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.welcome-currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--color-background);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.welcome-currency-option:hover {
    background: white;
    border-color: #e0e0e0;
}

.welcome-currency-option.active {
    background: #fff5f0;
    border-color: var(--color-primary);
}

.welcome-currency-option .currency-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    font-size: 16px;
}

.welcome-currency-option .currency-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.welcome-currency-option .currency-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-dark);
}

.welcome-currency-option .currency-code-info {
    font-size: 12px;
    color: var(--color-gray);
}

.welcome-continue-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 24px;
    padding: 14px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.3);
}

.welcome-continue-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .lang-currency-dropdown {
        width: 350px;
        right: auto;
        left: 50%;
        transform: translate(-50%, -10px);
    }
    
    .lang-currency-dropdown.show {
        transform: translate(-50%, 0);
    }
    
    .lang-currency-toggle {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .lang-currency-toggle .lang-code,
    .lang-currency-toggle .currency-code {
        font-size: 14px;
    }
    
    .welcome-language-options,
    .welcome-currency-options {
        grid-template-columns: 1fr;
    }
    
    .welcome-modal {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .lang-currency-dropdown {
        width: 300px;
    }
}

/* =报价单样式
-------------------------------------------------------------- */
.quotes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quote-card:hover {
    box-shadow: var(--shadow-md);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-light);
}

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

.quote-number {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 15px;
}

.quote-date {
    font-size: 13px;
    color: var(--color-gray);
}

.quote-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.quote-status.status-pending {
    background: #FFF8E1;
    color: #F57C00;
}

.quote-status.status-confirmed {
    background: #E8F5EA;
    color: var(--color-primary);
}

.quote-status.status-processing {
    background: #E3F2FD;
    color: #1976D2;
}

.quote-status.status-shipping {
    background: #FFF3E0;
    color: #E65100;
}

.quote-status.status-completed {
    background: #E8F5EA;
    color: var(--color-primary-dark);
}

.quote-status.status-cancelled {
    background: #FFEBEE;
    color: #D32F2F;
}

.quote-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.quote-product {
    display: flex;
    gap: 16px;
    flex: 1;
}

.quote-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-product-info {
    flex: 1;
}

.quote-product-name {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.quote-destination {
    font-size: 14px;
    color: var(--color-gray);
}

.quote-total {
    text-align: right;
}

.quote-total-label {
    display: block;
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.quote-total-price {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
}

.quote-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-light);
}

.btn-ghost {
    padding: 10px 24px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    background: var(--color-primary);
    color: white;
}

@media (max-width: 768px) {
    .quote-content {
        flex-direction: column;
    }
    
    .quote-total {
        text-align: left;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--color-gray-light);
    }

    .language-options {
        grid-template-columns: 1fr;
    }
}

/* =估算器新样式
-------------------------------------------------------------- */
.estimate-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.selector-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selector-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.selector-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    font-size: 15px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.selector-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(41, 141, 58, 0.1);
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-gray-light);
}

.cost-label {
    color: var(--color-gray);
    font-size: 14px;
}

.cost-value {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
}

.cost-total {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: var(--color-primary-light);
    border-radius: 12px;
    margin-top: 8px;
}

.total-label {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-dark);
}

.total-value {
    font-weight: 800;
    font-size: 22px;
    color: var(--color-primary);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.btn-primary {
    padding: 14px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    padding: 14px 24px;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
}

@media (max-width: 768px) {
    .estimate-selectors {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
}

/* ===== 新的费用估算器样式 ===== */
.estimation-container {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 24px;
}

.estimation-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

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

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.cost-row-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cost-icon {
    width: 24px;
    height: 24px;
}

.cost-name {
    font-size: 16px;
    color: #666;
}

.cost-main {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.warning-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #FFF8E1;
    border-radius: 12px;
    border: 1px solid #FFE082;
    align-items: flex-start;
}

.warning-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box span {
    font-size: 14px;
    color: #F57C00;
    line-height: 1.5;
}

.total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #E8F5EA;
    border-radius: 12px;
    margin-top: 8px;
}

.total-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.total-price {
    font-size: 28px;
    font-weight: 800;
    color: #298D3A;
}

.note-box {
    font-size: 14px;
    color: #666;
    padding: 16px 0;
    line-height: 1.6;
}

.estimation-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.btn-quote-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #298D3A;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.25);
}

.btn-quote-pdf:hover {
    background: #1F702D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 141, 58, 0.35);
}

.btn-quote-pdf svg {
    width: 24px;
    height: 24px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #298D3A;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.25);
}

.btn-contact:hover {
    background: #1F702D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 141, 58, 0.35);
}

.btn-contact svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .estimation-container {
        padding: 16px;
    }
    
    .cost-name {
        font-size: 14px;
    }
    
    .cost-main {
        font-size: 16px;
    }
    
    .total-label {
        font-size: 16px;
    }
    
    .total-price {
        font-size: 22px;
    }
}

/* ========================================
   车辆分类样式
   ======================================== */

/* 移动端分类卡片容器 */
.mobile-category-section {
    display: none;
    background: var(--color-white);
    padding: 20px 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .mobile-category-section {
        display: block;
    }
}

/* 分类卡片网格 - 移动端横向4个 */
.category-grid {
    display: flex;
    gap: 12px;
}

/* 分类卡片 - 移动端彩色长方形 */
.category-card {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    overflow: hidden;
    min-height: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-card:active {
    transform: scale(0.98);
}

/* 分类卡片图标容器 */
.category-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    opacity: 0.9;
}

.category-icon-wrapper img {
    width: 24px;
    height: 24px;
}

/* 不同分类的颜色 */
.cat-new .category-icon-wrapper {
    background: linear-gradient(135deg, #298D3A 0%, #1d6b2a 100%);
}

.cat-used .category-icon-wrapper {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.cat-personal .category-icon-wrapper {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.cat-modified .category-icon-wrapper {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

/* 分类标签 */
.category-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
    text-align: center;
}

/* 分类子标签 */
.category-sub {
    font-size: 12px;
    color: var(--color-gray);
    text-align: center;
    font-weight: 500;
}

/* PC端分类板块 */
.category-section {
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-section-header {
    display: none;
}

/* 分类板块网格 */
.category-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 分类板块卡片 */
.category-block {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.category-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 165, 116, 0.2);
}

/* 分类板块头部 */
.category-block-header {
    padding: 28px 20px;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-block-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-block-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.category-block-icon-box.new {
    background: linear-gradient(135deg, #298D3A 0%, #1d6b2a 100%);
}

.category-block-icon-box.used {
    background: linear-gradient(135deg, #F59E0B 0%, #d97706 100%);
}

.category-block-icon-box.personal {
    background: linear-gradient(135deg, #3B82F6 0%, #2563eb 100%);
}

.category-block-icon-box.modified {
    background: linear-gradient(135deg, #8B5CF6 0%, #7c3aed 100%);
}

.category-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

/* 分类板块内容 */
.category-block-content {
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
    flex: 1;
    width: 100%;
}

.category-block-count {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: 500;
}

.category-block-left {
    flex-shrink: 0;
}

.category-block-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.category-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.category-block-icon img {
    width: 26px;
    height: 26px;
}

.category-block-link-wrap {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.category-block-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(135deg, #298D3A 0%, #1d6b2a 100%);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--color-white);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-block-link:hover {
    background: linear-gradient(135deg, #1d6b2a 0%, #298D3A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.3);
}

/* 分类板块响应式 */
@media (max-width: 992px) {
    .category-blocks {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .category-section {
        display: none;
    }
}

/* 敬请期待弹窗 */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.coming-soon-modal {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 360px;
    width: 90%;
    animation: slideUp 0.3s ease;
}

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

.coming-soon-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.coming-soon-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.coming-soon-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
}

.coming-soon-close {
    background: linear-gradient(135deg, #298D3A 0%, #1d6b2a 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.coming-soon-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 141, 58, 0.3);
}

/* 售车状态价格行 - 通用样式 */
.quote-status-price-row {
    display: none;
}

/* PC端保持原布局 - 隐藏新增的行 */
@media (min-width: 769px) {
    .quote-status-price-row {
        display: none !important;
    }
    
    .quote-card-right {
        display: flex !important;
    }
}

/* ==================== 我的售车页面移动端适配 ==================== */
@media (max-width: 768px) {
    /* 标题按钮区域适配 */
    .account-content > div:first-child {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .account-content > div:first-child h1 {
        white-space: nowrap !important;
        font-size: 18px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    
    .account-content > div:first-child .btn-primary {
        padding: 6px 12px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
    }
    
    /* 售车列表卡片适配 */
    .quote-card {
        padding: 12px !important;
    }
    
    .quote-card-top {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .quote-image {
        width: 100px !important;
        height: 100px !important;
        flex-shrink: 0 !important;
    }
    
    .quote-image img {
        width: 100% !important;
        height: 100% !important;
    }
    
    .quote-card-main {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .quote-card-right {
        display: none !important;
    }
    
    /* 状态和价格行移到图片下方 */
    .quote-status-price-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
    
    /* 按钮区域 */
    .quote-card-actions {
        flex-direction: row !important;
        gap: 12px !important;
        margin-top: 12px !important;
    }
    
    .quote-card-actions-left,
    .quote-card-actions-right {
        flex: 1 !important;
    }
    
    .quote-card-actions-right button {
        width: 100% !important;
    }
    
    /* 空状态适配 */
    .empty-state {
        padding: 40px 16px;
    }
    
    .empty-state svg {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   可搜索选择框样式
   ======================================== */
.searchable-select-container {
    position: relative;
    display: inline-flex;
    width: auto;
    min-width: 140px;
    vertical-align: top;
    flex: 0 0 auto;
}

.searchable-select {
    position: relative;
}

.searchable-select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 36px 10px 12px;
    background: white;
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
    min-height: 44px;
    min-width: 140px;
    width: auto;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5L6 8.5L10 4.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.searchable-select-header:hover {
    border-color: var(--color-gray);
}

.searchable-select-header:active {
    transform: scale(0.99);
}

.searchable-select-value {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.searchable-select-arrow {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.searchable-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 9999;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.searchable-select-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.searchable-select-search {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid var(--color-gray-light);
    font-size: 14px;
    outline: none;
    background: white;
}

.searchable-select-search::placeholder {
    color: var(--color-gray);
}

.searchable-select-options {
    flex: 1;
    overflow-y: auto;
    max-height: 240px;
}

.searchable-select-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: none;
    text-align: left;
    font-size: 14px;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.searchable-select-option:hover {
    background: var(--color-primary-accent);
}

.searchable-select-option.active {
    background: var(--color-primary);
    color: white;
}
