/* Custom styles for VIN Check Pro - Professional Design with Green & Earth Tones */

/* Color Scheme Variables */
:root {
    --primary-green: #2D8659;
    --light-green: #6BAA8A;
    --medium-green: #4A7C59;
    --dark-green: #1F5F3F;
    --accent-orange: #D97706;
    --light-gray: #F5F5F5;
    --medium-gray: #D3D3D3;
    --dark-gray: #808080;
    --text-gray: #333333;
    --earth-brown: #8B6F47;
    --cream: #F5E6D3;
}

/* Global Styles */
* {
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

body {
    background-color: #FAFAFA;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Navigation */
nav {
    position: relative !important;
    z-index: 1000 !important;
}

.vin-nav {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-bottom: none !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* Ensure navigation container doesn't clip dropdown */
nav .w3-container {
    position: relative;
    z-index: 1000;
    overflow: visible !important;
}

nav .w3-bar {
    position: relative;
    z-index: 1000;
    overflow: visible !important;
}

.vin-logo {
    color: white !important;
    font-weight: 700;
    font-size: 20px !important;
}

.vin-nav-link {
    color: white !important;
    border-radius: 20px;
    margin: 0 4px;
    padding: 8px 16px;
}

.vin-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.vin-nav-link.vin-active,
.vin-nav-link.vin-active:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.vin-coin-balance {
    font-weight: 600;
    color: var(--accent-orange) !important;
    background-color: rgba(217, 119, 6, 0.2);
    border-radius: 20px;
    padding: 8px 16px !important;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.vin-dropdown {
    background: white !important;
    border: 1px solid var(--medium-green) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    border-radius: 10px !important;
    z-index: 1002 !important;
    position: absolute !important;
    overflow: visible !important;
    margin-top: 0 !important;
}

.vin-dropdown .w3-bar-item {
    color: var(--text-gray) !important;
}

.vin-dropdown .w3-bar-item:hover {
    background-color: var(--light-green) !important;
    color: white !important;
}

.vin-mobile-menu {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vin-mobile-menu .w3-bar-item {
    color: white !important;
    border-radius: 10px;
    margin: 4px 8px;
}

.vin-mobile-menu .w3-bar-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Main Content */
.vin-main {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

main, #app {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

/* Ensure containers don't clip dropdown */
.w3-container {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.w3-bar, .w3-row, .w3-col {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Hero Section - Side Layout */
.hero-section-side {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
    position: relative;
    z-index: 1;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px !important;
}

.hero-image-side {
    padding-left: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-car-image {
    width: 70%;
    height: auto;
    max-width: 70%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.hero-title-side {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hero-subtitle-side {
    font-size: 24px;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.hero-description-side {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.hero-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-feature-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    color: white;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-feature-badge i {
    color: var(--cream);
}

.hero-buttons-side {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-icon-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-large {
    font-size: 180px;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Old Hero Section (keep for compatibility) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 120px;
    color: white;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 20px 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 24px;
    color: white;
    margin: 10px 0;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 20px 0 30px;
}

.btn-hero {
    background-color: white !important;
    color: var(--dark-green) !important;
    border-radius: 25px;
    padding: 12px 40px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: var(--cream) !important;
}

/* Product Cards - VIN Style (Badge Layout) */
.product-card-vin {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.product-card-vin:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.2);
    border-color: var(--primary-green);
}

.product-card-content-vin {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px !important;
}

.product-top-section-vin {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.product-icon-badge-vin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(45, 134, 89, 0.3);
}

.product-title-section-vin {
    flex: 1;
}

.product-title-vin {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0 0 10px 0;
}

.product-pricing-vin {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-main-vin {
    color: var(--dark-green);
    font-size: 20px;
    font-weight: 700;
}

.price-coins-vin {
    color: var(--accent-orange);
    font-size: 13px;
}

.product-description-vin {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
    flex: 1;
    margin-bottom: 15px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions-vin {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions-vin .w3-button {
    flex: 1;
}

/* Old Product Cards (keep for compatibility) */
.product-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.2);
    border-color: var(--primary-green);
}

.product-icon-container {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    padding: 40px 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: 64px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px !important;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 10px 0;
}

.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
    flex: 1;
    margin-bottom: 15px;
}

.price-label {
    color: var(--dark-green);
    font-size: 18px;
}

.coin-price {
    color: var(--accent-orange);
    font-size: 16px;
}

.product-actions {
    margin-top: auto;
    padding-top: 15px;
}

/* Buttons */
.w3-button {
    border-radius: 25px !important;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-green) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--dark-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.4);
}

.btn-secondary {
    background-color: var(--light-gray) !important;
    color: var(--text-gray) !important;
}

.btn-secondary:hover {
    background-color: var(--medium-gray) !important;
    transform: translateY(-2px);
}

.btn-coin {
    background-color: var(--accent-orange) !important;
    color: white !important;
}

.btn-coin:hover {
    background-color: #B86505 !important;
    transform: translateY(-2px);
}

/* Product Detail Page - VIN Hero Layout */
.product-detail-vin {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-hero-vin {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(45, 134, 89, 0.2);
}

.product-hero-icon-vin {
    margin-bottom: 25px;
}

.product-hero-icon-vin i {
    font-size: 120px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.product-hero-title-vin {
    color: white;
    font-size: 48px;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-hero-description-vin {
    color: white;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-detail-main-vin {
    margin: 0;
    padding: 0 20px 40px 20px;
}

.product-detail-info-vin {
    padding-right: 30px !important;
}

.product-info-section-vin {
    margin-bottom: 40px;
}

.section-title-vin {
    color: var(--dark-green);
    font-size: 24px;
    margin: 0 0 25px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-vin i {
    color: var(--primary-green);
    font-size: 28px;
}

.info-grid-vin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-card-vin {
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-card-vin:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 25px rgba(45, 134, 89, 0.2);
    transform: translateY(-3px);
}

.info-card-icon-vin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(45, 134, 89, 0.3);
}

.info-card-content-vin {
    flex: 1;
}

.info-card-label-vin {
    color: var(--medium-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-card-value-vin {
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 700;
}

.product-features-section-vin {
    margin-bottom: 40px;
}

.features-list-vin {
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item-vin {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-gray);
    font-size: 16px;
}

.feature-item-vin:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item-vin i {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 700;
}

.product-detail-purchase-vin {
    padding-left: 30px !important;
}

.purchase-card-vin {
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.purchase-header-vin {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    padding: 25px;
    border-radius: 18px 18px 0 0;
    border-bottom: 2px solid var(--primary-green);
}

.purchase-header-vin h3 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.purchase-options-vin {
    padding: 30px;
}

.purchase-option-vin {
    margin-bottom: 25px;
}

.purchase-option-vin:last-child {
    margin-bottom: 0;
}

.option-header-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.option-label-vin {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 600;
}

.option-price-vin {
    color: var(--dark-green);
    font-size: 24px;
    font-weight: 700;
}

.option-price-coins-vin {
    color: var(--accent-orange);
}

.option-btn-vin {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.option-btn-primary-vin {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
}

.option-btn-primary-vin:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: translateY(-2px);
}

.option-btn-secondary-vin {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.3) 100%);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.option-btn-secondary-vin:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 193, 7, 0.4) 100%);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.option-btn-vin.disabled-vin,
.option-btn-vin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.purchase-divider-vin {
    text-align: center;
    margin: 25px 0;
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.purchase-divider-vin::before,
.purchase-divider-vin::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--light-gray);
}

.purchase-divider-vin::before {
    left: 0;
}

.purchase-divider-vin::after {
    right: 0;
}

.purchase-warning-vin {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 10px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.purchase-warning-vin i {
    color: var(--accent-orange);
    font-size: 18px;
}

.purchase-warning-vin a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.purchase-warning-vin a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-detail-hero-vin {
        padding: 40px 20px;
    }
    
    .product-hero-icon-vin i {
        font-size: 80px;
    }
    
    .product-hero-title-vin {
        font-size: 32px;
    }
    
    .product-hero-description-vin {
        font-size: 16px;
    }
    
    .product-detail-info-vin {
        padding-right: 0 !important;
        margin-bottom: 30px;
    }
    
    .product-detail-purchase-vin {
        padding-left: 0 !important;
    }
    
    .purchase-card-vin {
        position: static;
    }
    
    .info-grid-vin {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.vin-card {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: white;
    border: 1px solid var(--medium-gray);
}

.w3-card-4 {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: white;
}

.w3-panel {
    border-radius: 15px !important;
}

/* Forms */
.vin-input {
    border-radius: 10px !important;
    border: 2px solid var(--medium-gray) !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.vin-input:focus {
    border-color: var(--primary-green) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.2);
}

.w3-input {
    border-radius: 10px !important;
    border: 2px solid var(--medium-gray) !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.w3-input:focus {
    border-color: var(--primary-green) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.2);
}

/* Badges */
.vin-badge {
    border-radius: 12px;
    padding: 6px 12px;
    font-weight: 500;
    display: inline-block;
}

.vin-badge-money {
    background-color: var(--primary-green) !important;
    color: white !important;
}

.vin-badge-coin {
    background-color: var(--accent-orange) !important;
    color: white !important;
}

.vin-badge-success {
    background-color: var(--primary-green) !important;
    color: white !important;
}

.vin-badge-warning {
    background-color: #FFC107 !important;
    color: #856404 !important;
}

.vin-badge-info {
    background-color: var(--light-green) !important;
    color: white !important;
}

/* Cart Badge */
.cart-badge {
    background-color: #f44336 !important;
    color: white !important;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
    display: inline-block;
}

/* Footer */
.vin-footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%) !important;
    color: white;
    border-radius: 0;
}

.vin-footer a {
    color: white !important;
    text-decoration: none;
}

.vin-footer a:hover {
    text-decoration: underline;
    color: var(--cream) !important;
}

.vin-footer h5 {
    color: white;
}

/* Toast Notifications */
#toastContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#toastContainer > div,
.toast-message {
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease-out;
    min-width: 300px;
    max-width: 500px;
    width: auto;
}

.vin-success {
    background-color: var(--primary-green) !important;
    color: white !important;
}

.vin-error {
    background-color: #f44336 !important;
    color: white !important;
}

.vin-info {
    background-color: var(--light-green) !important;
    color: white !important;
}

.vin-warning {
    background-color: #FFC107 !important;
    color: #856404 !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Feature Cards - Large Layout */
.feature-cards-large {
    margin-bottom: 50px;
}

.feature-cards-large .feature-card-large-col {
    margin-bottom: 30px;
    padding: 0 15px;
}

.feature-card-large {
    height: 100%;
    text-align: center;
    padding: 50px 30px !important;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon-large-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.feature-card-large h3 {
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card-large p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
}

.section-title-vin {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.section-subtitle-vin {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.featured-section-side {
    margin-top: 50px;
}

/* Old Feature Cards (keep for compatibility) */
.feature-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card-col {
    margin-bottom: 20px;
}

.feature-card {
    height: 100%;
    background: white;
    border: 1px solid var(--medium-gray);
}

.feature-card h3 {
    color: var(--dark-green);
    font-weight: 600;
}

.feature-card i {
    color: var(--primary-green);
    font-size: 32px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hero-section-side {
        padding: 30px 20px !important;
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .hero-text-side {
        padding-right: 0 !important;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .hero-image-side {
        padding-left: 0 !important;
        margin-top: 20px;
    }
    
    .hero-title-side {
        font-size: 32px !important;
        margin-bottom: 10px;
    }
    
    .hero-subtitle-side {
        font-size: 18px !important;
        margin-bottom: 12px;
    }
    
    .hero-description-side {
        font-size: 14px !important;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-features-inline {
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-feature-badge {
        font-size: 12px;
        padding: 6px 12px;
        flex: 0 0 auto;
    }
    
    .hero-buttons-side {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons-side .w3-button {
        width: 100%;
        margin: 0;
    }
    
    .hero-car-image-container {
        padding: 15px;
    }
    
    .hero-car-image {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 15px;
    }
    
    .feature-cards-large {
        margin-bottom: 30px;
    }
    
    .feature-cards-large .feature-card-large-col {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .feature-card-large {
        margin-bottom: 20px;
    }
    
    .feature-cards-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-card-col {
        width: 100% !important;
        margin-bottom: 0;
    }
    
    .featured-section-side {
        padding: 20px 0 !important;
    }
    
    .section-title-vin {
        font-size: 28px !important;
    }
    
    .section-subtitle-vin {
        font-size: 14px !important;
    }
    
    .featured-products-container {
        padding: 0 10px;
    }
    
    .featured-products-container .w3-col {
        margin-bottom: 20px;
    }
    
    .vin-home-layout {
        padding: 10px !important;
    }
}

/* Empty States */
.vin-empty-state {
    background-color: var(--light-gray) !important;
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
}

.vin-empty-state i {
    color: var(--medium-gray);
}

/* Cart Container */
/* Cart Page - Professional Table Design */
.cart-page-vin {
    padding: 30px 20px;
}

.cart-header-vin {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.cart-title-vin {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cart-title-vin i {
    margin-right: 15px;
}

.cart-subtitle-vin {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-top: 10px;
}

.cart-layout-vin {
    gap: 20px;
}

.cart-table-column-vin {
    padding-right: 10px !important;
}

.cart-sidebar-vin {
    padding-left: 10px !important;
}

.cart-table-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-table-header-vin {
    background: var(--light-gray);
    border-bottom: 2px solid var(--primary-green);
}

.cart-table-row-vin {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    gap: 15px;
    padding: 15px 20px;
    align-items: center;
}

.header-row-vin {
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: none;
}

.data-row-vin {
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.2s ease;
}

.data-row-vin:hover {
    background-color: var(--light-gray);
}

.data-row-vin:last-child {
    border-bottom: none;
}

.cart-col-service-vin {
    display: flex;
    align-items: center;
}

.cart-col-price-vin,
.cart-col-quantity-vin,
.cart-col-total-vin {
    text-align: center;
}

.cart-col-action-vin {
    display: flex;
    justify-content: center;
}

.service-info-vin {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon-vin {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.service-details-vin {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-name-vin {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 16px;
}

.service-payment-vin {
    display: flex;
    align-items: center;
}

.payment-badge-vin {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.coin-badge-vin {
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.money-badge-vin {
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(45, 134, 89, 0.3);
}

.price-display-vin,
.total-display-vin {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 16px;
}

.cart-quantity-input-vin {
    width: 70px;
    padding: 8px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.cart-quantity-input-vin:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 5px rgba(45, 134, 89, 0.3);
}

.cart-remove-btn-vin {
    background: transparent;
    border: 1px solid var(--medium-gray);
    color: var(--dark-gray);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cart-remove-btn-vin:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff4444;
    color: #ff4444;
}

.cart-sidebar-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.sidebar-header-vin {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.sidebar-header-vin h3 {
    color: white;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.sidebar-header-vin i {
    margin-right: 10px;
}

.sidebar-content-vin {
    padding: 25px;
}

.summary-item-vin {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-gray);
}

.summary-item-vin strong {
    color: var(--primary-green);
    font-weight: 600;
}

.summary-divider-vin {
    height: 2px;
    background: var(--primary-green);
    margin: 20px 0;
}

.summary-total-vin {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 20px;
    color: var(--text-gray);
}

.summary-total-vin strong {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
}

.cart-warning-vin {
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cart-warning-vin a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 600;
}

.checkout-btn-vin {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.checkout-btn-vin:hover {
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cart-table-column-vin {
        padding-right: 0 !important;
        margin-bottom: 20px;
    }
    
    .cart-sidebar-vin {
        padding-left: 0 !important;
    }
    
    .cart-table-row-vin {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .header-row-vin {
        display: none;
    }
    
    .data-row-vin {
        border: 1px solid var(--medium-gray);
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 20px;
    }
    
    .cart-col-service-vin,
    .cart-col-price-vin,
    .cart-col-quantity-vin,
    .cart-col-total-vin,
    .cart-col-action-vin {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .cart-col-action-vin {
        border-bottom: none;
        justify-content: center;
        padding-top: 15px;
    }
    
    .cart-col-service-vin::before {
        content: "Service: ";
        font-weight: 600;
        color: var(--dark-gray);
    }
    
    .cart-col-price-vin::before {
        content: "Unit Price: ";
        font-weight: 600;
        color: var(--dark-gray);
    }
    
    .cart-col-quantity-vin::before {
        content: "Quantity: ";
        font-weight: 600;
        color: var(--dark-gray);
    }
    
    .cart-col-total-vin::before {
        content: "Total: ";
        font-weight: 600;
        color: var(--dark-gray);
    }
    
    .service-info-vin {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-items-column {
        padding-right: 0 !important;
        margin-bottom: 20px;
    }
    
    .cart-summary-column {
        padding-left: 0 !important;
    }
    
    /* Mobile Cart Item Layout */
    .cart-item-row {
        flex-direction: column;
    }
    
    .cart-item-icon-col {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cart-item-icon {
        margin: 0 auto;
    }
    
    .cart-item-info-col {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cart-item-controls-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cart-quantity-input {
        width: 80px !important;
        text-align: center;
    }
    
    .cart-remove-btn {
        width: 100%;
        max-width: 200px;
    }
}

.order-item-row {
    padding: 20px 0 !important;
    align-items: center;
}

/* Checkout Page - VIN Professional Design */
.checkout-page-vin {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-content-wrapper-vin {
    padding: 20px 20px 40px;
}

.checkout-title-simple-vin {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding: 0;
}

.checkout-main-layout-vin {
    gap: 30px;
}

.checkout-form-wrapper-vin {
    padding-right: 15px !important;
}

.checkout-summary-wrapper-vin {
    padding-left: 15px !important;
}

.checkout-form-container-vin {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section-header-vin {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section-icon-vin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vin-primary) 0%, var(--vin-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-section-icon-vin i {
    font-size: 28px;
    color: #fff;
}

.form-section-title-vin h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.form-section-title-vin p {
    color: #7f8c8d;
    font-size: 15px;
    margin: 0;
}

.checkout-form-vin {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-section-vin {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-subsection-title-vin {
    color: var(--vin-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.form-subsection-title-vin i {
    font-size: 20px;
}

.form-grid-vin {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-vin {
    display: flex;
    gap: 20px;
}

.form-field-vin {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-field-full-vin {
    width: 100%;
}

.form-label-vin {
    color: #34495e;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.required-asterisk-vin {
    color: #e74c3c;
    font-weight: 700;
}

.form-input-vin {
    background: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: #2c3e50 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    width: 100%;
}

.form-input-vin::placeholder {
    color: #adb5bd !important;
}

.form-input-vin:focus {
    background: #fff !important;
    border-color: var(--vin-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1) !important;
}

.form-actions-vin {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

button.checkout-submit-btn-vin,
.checkout-submit-btn-vin {
    background: linear-gradient(135deg, var(--vin-primary) 0%, var(--vin-secondary) 100%) !important;
    border: none !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 18px 30px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

button.checkout-submit-btn-vin *,
.checkout-submit-btn-vin * {
    color: #000 !important;
}

button.checkout-submit-btn-vin,
.checkout-submit-btn-vin {
    -webkit-text-fill-color: #000 !important;
}

.checkout-submit-btn-vin:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4) !important;
}

.checkout-submit-btn-vin:hover * {
    color: #000 !important;
}

.checkout-submit-btn-vin span {
    color: #000 !important;
}

.checkout-submit-btn-vin i {
    color: #000 !important;
}

.checkout-submit-btn-vin i:first-child {
    font-size: 20px;
}

.checkout-submit-btn-vin i:last-child {
    font-size: 18px;
    margin-left: auto;
}

.form-security-note-vin {
    text-align: center;
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-security-note-vin i {
    color: var(--vin-primary);
}

.checkout-summary-container-vin {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.summary-header-vin {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-header-vin i {
    font-size: 32px;
    color: var(--vin-primary);
}

.summary-header-vin h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.summary-items-list-vin {
    margin-bottom: 25px;
}

.summary-items-header-vin {
    color: #7f8c8d;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.summary-item-card-vin {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #e9ecef;
}

.summary-item-card-vin:last-child {
    margin-bottom: 0;
}

.summary-item-icon-vin {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vin-primary) 0%, var(--vin-secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-item-icon-vin i {
    font-size: 24px;
    color: #fff;
}

.summary-item-details-vin {
    flex: 1;
    min-width: 0;
}

.summary-item-name-vin {
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.summary-item-meta-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #7f8c8d;
}

.summary-item-price-vin {
    color: var(--vin-primary);
    font-weight: 700;
    font-size: 15px;
}

.summary-totals-section-vin {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.summary-total-line-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #7f8c8d;
    font-size: 15px;
}

.summary-total-line-vin strong {
    color: #2c3e50;
    font-weight: 600;
}

.summary-coins-vin {
    color: #f39c12 !important;
}

.summary-total-divider-vin {
    height: 1px;
    background: #e9ecef;
    margin: 15px 0;
}

.summary-final-total-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.summary-final-amount-vin {
    color: var(--vin-primary);
    font-size: 24px;
    font-weight: 700;
}

.summary-features-vin {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-feature-item-vin {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7f8c8d;
    font-size: 14px;
}

.summary-feature-item-vin i {
    color: var(--vin-primary);
    font-size: 18px;
}

@media (max-width: 992px) {
    .checkout-form-wrapper-vin {
        padding-right: 0 !important;
        margin-bottom: 30px;
    }
    
    .checkout-summary-wrapper-vin {
        padding-left: 0 !important;
    }
    
    .checkout-summary-container-vin {
        position: relative;
        top: 0;
    }
    
    .checkout-title-simple-vin {
        font-size: 28px;
    }
    
    .checkout-form-container-vin {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .checkout-title-simple-vin {
        font-size: 24px;
    }
    
    .checkout-content-wrapper-vin {
        padding: 15px 15px 30px;
    }
    
    .checkout-form-container-vin {
        padding: 25px 20px;
    }
    
    .form-section-header-vin {
        flex-direction: column;
        text-align: center;
    }
    
    .form-section-icon-vin {
        margin: 0 auto;
    }
    
    .form-section-title-vin {
        text-align: center;
    }
    
    .form-row-vin {
        flex-direction: column;
    }
    
    .checkout-submit-btn-vin {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .summary-item-meta-vin {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Order Detail Container */
.order-detail-container {
    gap: 20px;
}

.order-detail-items-column {
    padding-right: 10px !important;
}

.order-detail-info-column {
    padding-left: 10px !important;
}

@media (max-width: 768px) {
    .order-detail-items-column {
        padding-right: 0 !important;
        margin-bottom: 20px;
    }
    
    .order-detail-info-column {
        padding-left: 0 !important;
    }
    
    .order-item-row {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item-row .w3-col {
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .order-item-row .w3-col.s3 {
        display: flex;
        justify-content: center;
    }
    
    .order-item-row .w3-col.s6 {
        text-align: center;
    }
    
    .order-item-row .w3-col.s3.w3-right-align {
        text-align: center !important;
    }
}

/* Coin Shop */
.coin-packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 10px;
}

.coin-package-card {
    display: flex;
}

.coin-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coin-amount-panel {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%) !important;
    color: white;
    text-align: center;
    padding: 20px !important;
    margin: 15px 0 !important;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
}

.vin-coin-text {
    color: var(--accent-orange);
    font-weight: 700;
}

.vin-success-text {
    color: var(--primary-green);
    font-weight: 600;
}

.coin-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coin-card h3 {
    margin: 10px 0;
    min-height: 40px;
    color: var(--dark-green);
}

.custom-amount-container {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 10px;
}

.custom-amount-card {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .coin-packages-container {
        grid-template-columns: 1fr;
        padding: 0 5px;
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .coin-packages-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Featured Products Container */
.featured-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .featured-products-container {
        grid-template-columns: 1fr;
        padding: 0 5px;
        gap: 15px;
    }
}

@media (min-width: 1200px) {
    .featured-products-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 20px;
    }
    
    .hero-icon {
        font-size: 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .product-detail-icon {
        font-size: 80px;
    }
    
    .product-detail-icon-container {
        padding: 50px 20px;
    }
}

/* Ensure equal height for product cards in grid */
.w3-row-padding .w3-col {
    display: flex;
}

.w3-row-padding .w3-col > .product-card,
.w3-row-padding .w3-col > .product-card-vin {
    width: 100%;
}

/* Ensure all product cards have same height in grid */
.featured-products-container .product-card-vin,
.w3-row-padding .w3-col .product-card-vin {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Loading states */
.w3-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-gray);
    font-weight: 600;
}

/* Links */
a {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

/* Section spacing */
.w3-container {
    padding: 20px;
}

.w3-margin-top {
    margin-top: 30px !important;
}

/* Product Overview Page - VIN */
.products-page-vin {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.products-hero-vin {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 30px;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.08) 0%, rgba(45, 134, 89, 0.02) 100%);
    border: 1px solid rgba(45, 134, 89, 0.15);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(45, 134, 89, 0.12);
    margin-bottom: 40px;
}

.hero-text-vin {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-kicker-vin {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
}

.hero-heading-vin {
    font-size: 40px;
    margin: 0;
    color: var(--dark-green);
    line-height: 1.2;
}

.hero-description-vin {
    color: var(--dark-gray);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.hero-badges-vin {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge-vin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 999px;
    border: 1px solid var(--light-gray);
    color: var(--text-gray);
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-badge-vin i {
    color: var(--primary-green);
}

.hero-card-vin {
    background: white;
    border-radius: 18px;
    border: 2px solid var(--medium-gray);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
}

.hero-card-top-vin {
    display: flex;
    gap: 18px;
    align-items: center;
}

.hero-card-icon-vin {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.25);
}

.hero-card-stats-vin {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-card-label-vin {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--medium-gray);
}

.hero-card-value-vin {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-green);
}

.hero-card-divider-vin {
    border-top: 1px dashed var(--light-gray);
}

.hero-card-footer-vin {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
}

.hero-card-footer-vin i {
    color: var(--primary-green);
    margin-right: 6px;
}

.hero-card-link-vin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
}

.hero-card-link-vin:hover {
    text-decoration: underline;
}

.products-stats-bar-vin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.stat-pill-vin {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--light-gray);
    padding: 18px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-label-vin {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--medium-gray) !important;
}

.stat-value-vin {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green) !important;
}

.products-filter-vin {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.filter-heading-vin h2 {
    margin: 0;
    font-size: 26px;
    color: var(--dark-green);
}

.filter-heading-vin p {
    margin: 6px 0 0 0;
    color: var(--dark-gray);
}

.filter-chips-vin {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-chip-vin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--medium-gray);
    background: white;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 13px;
    cursor: default;
}

.filter-chip-vin i {
    color: var(--primary-green);
}

.filter-chip-vin.active {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(45, 134, 89, 0.25);
}

.products-layout-vin {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.products-list-vin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card-shell-vin {
    height: 100%;
}

.product-card-shell-vin .product-card-vin {
    height: 100%;
}

.products-sidebar-vin {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card-vin {
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card-vin h3,
.sidebar-card-vin h4 {
    margin: 0;
    font-size: 20px;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card-vin.highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(45, 134, 89, 0.35);
}

.sidebar-card-vin.highlight h3 {
    color: white;
}

.sidebar-card-vin.highlight a {
    color: white;
    text-decoration: underline;
}

.sidebar-list-vin {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-gray);
}

.sidebar-list-vin li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.sidebar-list-vin i {
    color: var(--primary-green);
    font-size: 16px;
    margin-top: 2px;
}

.sidebar-note-vin {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-link-vin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

.sidebar-link-vin:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .products-hero-vin {
        grid-template-columns: 1fr;
    }

    .products-layout-vin {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-page-vin {
        padding: 20px 16px 50px;
    }

    .hero-heading-vin {
        font-size: 32px;
    }

    .products-stats-bar-vin {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .filter-chips-vin {
        gap: 10px;
    }

    .products-list-vin {
        grid-template-columns: 1fr;
    }
}

/* Coin Shop Page - VIN Table Design */
.coins-market-vin {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.coins-account-bar-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.3);
}

.account-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.account-bar-left i {
    font-size: 24px;
}

.account-bar-amount-vin {
    color: var(--accent-orange);
    font-size: 32px;
    font-weight: 700;
    background: white;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coins-login-bar-vin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    margin-bottom: 40px;
    color: var(--dark-gray);
    font-weight: 500;
}

.coins-login-bar-vin i {
    color: var(--accent-orange);
    font-size: 20px;
}

.coins-login-bar-vin a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.coins-login-bar-vin a:hover {
    text-decoration: underline;
}

.coins-market-header-vin {
    text-align: center;
    margin-bottom: 40px;
}

.market-title-vin {
    color: var(--dark-green);
    font-size: 36px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.market-description-vin {
    color: var(--dark-gray);
    font-size: 16px;
    margin: 0;
}

.coins-table-layout-vin {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.table-header-vin {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.2fr 0.8fr;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row-vin {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.2fr 0.8fr;
    gap: 15px;
    padding: 25px;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
    transition: all 0.3s ease;
}

.table-row-vin:last-child {
    border-bottom: none;
}

.table-row-vin:hover {
    background: rgba(45, 134, 89, 0.03);
}

.table-row-vin.best-value-row {
    background: linear-gradient(90deg, rgba(45, 134, 89, 0.05) 0%, rgba(45, 134, 89, 0.1) 100%);
    border-left: 4px solid var(--primary-green);
}

.package-info-vin {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.package-name-table-vin {
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 600;
}

.best-value-tag-vin {
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credits-amount-table-vin {
    color: var(--dark-green);
    font-size: 22px;
    font-weight: 700;
}

.table-discount-vin {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.table-bonus-amount-vin {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 600;
}

.table-no-bonus-vin {
    color: var(--medium-gray);
    font-size: 14px;
}

.price-table-vin {
    color: var(--dark-green);
    font-size: 20px;
    font-weight: 700;
}

.table-buy-btn-vin {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
    margin: 0 auto;
}

.table-buy-btn-vin:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: scale(1.1);
}

.table-buy-btn-vin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.coins-custom-panel-vin {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.custom-panel-header-vin {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-bottom: 2px solid var(--primary-green);
}

.custom-panel-title-vin {
    color: white;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-panel-title-vin i {
    font-size: 28px;
}

.custom-panel-body-vin {
    padding: 35px;
}

.custom-panel-form-vin {
    max-width: 900px;
    margin: 0 auto;
}

.custom-amount-row-vin {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.amount-input-section-vin {
    display: flex;
    flex-direction: column;
}

.amount-label-vin {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.amount-input-wrapper-vin {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix-vin {
    position: absolute;
    left: 18px;
    color: var(--medium-gray);
    font-size: 20px;
    font-weight: 600;
    z-index: 1;
}

.amount-input-vin {
    width: 100%;
    padding: 18px 120px 18px 45px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.amount-input-vin:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 134, 89, 0.1);
}

.amount-input-vin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--light-gray);
}

.input-suffix-vin {
    position: absolute;
    right: 18px;
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 500;
}

.amount-info-vin {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--medium-gray);
}

.amount-preview-vin {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(45, 134, 89, 0.1) 100%);
    border: 2px solid var(--light-green);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-label-vin {
    color: var(--medium-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.preview-amount-vin {
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.preview-unit-vin {
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.preview-cost-vin {
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    color: var(--dark-gray);
    font-size: 15px;
}

.preview-price-vin {
    color: var(--dark-green);
    font-size: 24px;
    font-weight: 700;
    margin-left: 5px;
}

.custom-panel-submit-vin {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.custom-panel-submit-vin:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: translateY(-2px);
}

.custom-panel-submit-vin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .coins-account-bar-vin {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .account-bar-amount-vin {
        font-size: 24px;
        padding: 6px 16px;
    }
    
    .coins-market-header-vin {
        margin-bottom: 30px;
    }
    
    .market-title-vin {
        font-size: 28px;
    }
    
    .coins-table-layout-vin {
        border-radius: 15px;
    }
    
    .table-header-vin {
        display: none;
    }
    
    .table-row-vin {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-bottom: 2px solid var(--light-gray);
        margin-bottom: 0;
    }
    
    .table-row-vin:last-child {
        border-bottom: none;
    }
    
    .table-col-package-vin {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--light-gray);
        margin-bottom: 10px;
    }
    
    .package-info-vin {
        flex: 1;
    }
    
    .table-col-credits-vin {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
    }
    
    .table-col-credits-vin::before {
        content: "Credits:";
        color: var(--medium-gray);
        font-size: 14px;
        font-weight: 600;
    }
    
    .table-col-bonus-vin {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
    }
    
    .table-col-bonus-vin::before {
        content: "Bonus:";
        color: var(--medium-gray);
        font-size: 14px;
        font-weight: 600;
    }
    
    .table-col-price-vin {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
    }
    
    .table-col-price-vin::before {
        content: "Price:";
        color: var(--medium-gray);
        font-size: 14px;
        font-weight: 600;
    }
    
    .table-col-action-vin {
        display: flex;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid var(--light-gray);
        margin-top: 10px;
    }
    
    .table-row-vin.best-value-row {
        border-left: none;
        border: 2px solid var(--primary-green);
        border-radius: 15px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(45, 134, 89, 0.1) 100%);
    }
    
    .credits-amount-table-vin {
        font-size: 20px;
    }
    
    .price-table-vin {
        font-size: 18px;
    }
    
    .table-buy-btn-vin {
        width: 100%;
        max-width: 200px;
        border-radius: 12px;
        height: 45px;
    }
    
    .custom-amount-row-vin {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .custom-panel-body-vin {
        padding: 25px 20px;
    }
    
    .amount-input-vin {
        font-size: 20px;
        padding: 16px 100px 16px 40px;
    }
    
    .preview-amount-vin {
        font-size: 36px;
    }
}

.w3-padding-32 {
    padding: 40px 16px !important;
}

/* Dropdown z-index fix */
.w3-dropdown-hover {
    position: relative !important;
    z-index: 1001 !important;
}

.w3-dropdown-content {
    z-index: 1002 !important;
    position: absolute !important;
    overflow: visible !important;
    margin-top: 0 !important;
}

nav .w3-dropdown-content {
    z-index: 1002 !important;
    position: absolute !important;
    overflow: visible !important;
    margin-top: 0 !important;
}

/* Ensure dropdown parent containers don't clip */
nav .w3-right {
    position: relative;
    z-index: 1001;
    overflow: visible !important;
}

nav .w3-dropdown-hover {
    position: relative !important;
    z-index: 1001 !important;
    overflow: visible !important;
}

/* Account Page - Professional VIN Design */
.account-page-vin {
    padding: 30px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.account-header-vin {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.account-header-content-vin {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.account-avatar-section-vin {
    position: relative;
    flex-shrink: 0;
}

.account-avatar-vin {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.account-badge-vin {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.account-header-text-vin {
    flex: 1;
}

.account-title-vin {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.account-subtitle-vin {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin: 0;
}

.account-stats-bar-vin {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box-vin {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.stat-icon-vin {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.stat-content-vin {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Removed duplicate stat-label-vin and stat-value-vin rules that were setting white text */

.account-layout-vin {
    gap: 25px;
}

.account-main-vin {
    padding-right: 12px !important;
}

.account-sidebar-vin {
    padding-left: 12px !important;
}

.account-section-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-header-vin {
    background: var(--light-gray);
    padding: 25px;
    border-bottom: 2px solid var(--primary-green);
}

.section-header-vin h2 {
    color: var(--text-gray);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header-vin i {
    color: var(--primary-green);
    font-size: 22px;
}

.section-description-vin {
    color: var(--dark-gray);
    font-size: 14px;
    margin: 0;
}

.section-content-vin {
    padding: 30px;
}

.form-row-vin {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-vin {
    flex: 1;
    margin-bottom: 20px;
}

.form-label-vin {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input-vin {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.form-input-vin:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 5px rgba(45, 134, 89, 0.3);
}

.section-divider-vin {
    height: 1px;
    background: var(--light-gray);
    margin: 30px 0;
}

.section-subtitle-vin {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-submit-btn-vin {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn-vin:hover {
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: translateY(-2px);
}

.sidebar-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-header-vin {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    padding: 20px;
}

.sidebar-header-vin h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-body-vin {
    padding: 25px;
}

.overview-item-vin {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.overview-item-vin:last-child {
    border-bottom: none;
}

.overview-item-vin i {
    color: var(--primary-green);
    font-size: 24px;
    width: 30px;
}

.overview-item-vin > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.overview-label-vin {
    color: var(--dark-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-value-vin {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 16px;
}

.highlight-vin {
    color: var(--primary-green);
    font-weight: 700;
}

.sidebar-actions-vin {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-link-vin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-link-vin:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

.action-link-vin i:first-child {
    margin-right: 12px;
    font-size: 20px;
}

.action-link-vin i:last-child {
    font-size: 14px;
}

/* Orders Page - Professional VIN Design */
.orders-page-vin {
    padding: 30px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.orders-header-vin {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.orders-header-content-vin {
    text-align: center;
}

.orders-title-vin {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.orders-title-vin i {
    font-size: 32px;
}

.orders-subtitle-vin {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin: 0;
}

.orders-empty-vin {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon-wrapper-vin {
    font-size: 100px;
    color: var(--primary-green);
    margin-bottom: 30px;
    opacity: 0.5;
}

.empty-title-vin {
    color: var(--text-gray);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.empty-text-vin {
    color: var(--dark-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.empty-btn-vin {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.empty-btn-vin:hover {
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: translateY(-2px);
}

.orders-grid-vin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.order-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.order-card-vin:hover {
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.2);
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

.order-card-top-vin {
    background: var(--light-gray);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-green);
}

.order-id-vin {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-id-label-vin {
    color: var(--dark-gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.order-id-value-vin {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 700;
}

.order-status-vin {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-pending-vin {
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.status-completed-vin {
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(45, 134, 89, 0.3);
}

.status-info-vin {
    background: rgba(128, 128, 128, 0.1);
    color: var(--dark-gray);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.order-card-body-vin {
    padding: 25px;
}

.order-date-time-vin {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.order-date-time-vin i {
    color: var(--primary-green);
}

.time-separator-vin {
    margin: 0 5px;
    color: var(--dark-gray);
}

.order-items-count-vin {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.order-items-count-vin i {
    color: var(--primary-green);
}

.order-total-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.total-label-vin {
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 600;
}

.total-value-vin {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 700;
}

.order-card-footer-vin {
    padding: 20px;
    background: var(--light-gray);
    border-top: 1px solid var(--medium-gray);
}

.order-view-btn-vin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.order-view-btn-vin:hover {
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    transform: translateY(-2px);
}

/* Order Detail Page - Professional VIN Design */
.order-detail-page-vin {
    padding: 30px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.order-detail-header-vin {
    margin-bottom: 30px;
}

.back-button-vin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.back-button-vin:hover {
    color: var(--medium-green);
    transform: translateX(-5px);
}

.order-detail-title-section-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.order-detail-title-vin {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.order-detail-date-vin {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-status-large-vin {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
}

.status-pending-vin {
    color: var(--accent-orange);
}

.status-completed-vin {
    color: var(--primary-green);
}

.status-info-vin {
    color: var(--dark-gray);
}

.order-detail-layout-vin {
    gap: 25px;
}

.order-items-main-vin {
    padding-right: 12px !important;
}

.order-summary-sidebar-vin {
    padding-left: 12px !important;
}

.order-items-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.card-header-vin {
    background: var(--light-gray);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-green);
}

.card-header-vin h2 {
    color: var(--text-gray);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header-vin i {
    color: var(--primary-green);
    font-size: 20px;
}

.items-badge-vin {
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.card-body-vin {
    padding: 25px;
}

.order-items-table-vin {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.order-item-row-vin {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
}

.order-item-row-vin:last-child {
    border-bottom: none;
}

.order-item-icon-cell-vin {
    flex-shrink: 0;
}

.item-icon-wrapper-vin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.order-item-details-cell-vin {
    flex: 1;
    min-width: 0;
}

.item-name-vin {
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.item-meta-vin {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-type-badge-vin {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.coin-type-badge-vin {
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.money-type-badge-vin {
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(45, 134, 89, 0.3);
}

.item-quantity-badge-vin {
    color: var(--dark-gray);
    font-size: 13px;
}

.order-item-price-cell-vin {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.price-info-vin {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-gray);
    font-size: 14px;
}

.price-unit-vin,
.price-qty-vin {
    color: var(--text-gray);
    font-weight: 600;
}

.price-multiply-vin {
    color: var(--dark-gray);
}

.price-total-vin {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 700;
}

.summary-card-vin {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.summary-info-row-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.summary-info-row-vin:last-of-type {
    border-bottom: none;
}

.info-label-vin {
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 600;
}

.info-value-vin {
    color: var(--text-gray);
    font-weight: 600;
}

.order-status-badge-vin {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.summary-divider-vin {
    height: 2px;
    background: var(--primary-green);
    margin: 20px 0;
}

.summary-section-title-vin {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-info-vin {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.summary-total-section-vin {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--primary-green);
}

.total-row-vin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.final-total-vin {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.total-label-vin {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 600;
}

.total-amount-vin {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
}

.final-amount-vin {
    font-size: 24px;
    font-weight: 700;
}

.order-not-found-vin {
    text-align: center;
    padding: 80px 20px;
}

.order-not-found-vin h1 {
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .account-header-content-vin {
        flex-direction: column;
        text-align: center;
    }
    
    .account-stats-bar-vin {
        flex-direction: column;
    }
    
    .stat-box-vin {
        width: 100%;
    }
    
    .account-main-vin {
        padding-right: 0 !important;
        margin-bottom: 25px;
    }
    
    .account-sidebar-vin {
        padding-left: 0 !important;
    }
    
    .form-row-vin {
        flex-direction: column;
    }
    
    .orders-grid-vin {
        grid-template-columns: 1fr;
    }
    
    .order-detail-title-section-vin {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-items-main-vin {
        padding-right: 0 !important;
        margin-bottom: 25px;
    }
    
    .order-summary-sidebar-vin {
        padding-left: 0 !important;
    }
    
    .summary-card-vin {
        position: relative;
        top: 0;
    }
    
    .order-item-row-vin {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-item-price-cell-vin {
        align-items: flex-start;
        width: 100%;
    }
}

