/* Product Container */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

/* Hero Section */
.product-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Option Cards */
.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.option-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(229, 57, 53, 0.3);
    padding: 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: rgba(229, 57, 53, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.option-card h3 {
    color: #e53935;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(229, 57, 53, 0.3);
    padding-bottom: 0.5rem;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
}

.upload-btn {
    display: block;
    padding: 1rem;
    background: rgba(229, 57, 53, 0.1);
    border: 2px dashed rgba(229, 57, 53, 0.5);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: rgba(229, 57, 53, 0.2);
    border-color: rgba(229, 57, 53, 0.8);
}

.upload-btn i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #e53935;
}

/* Vehicle Fields */
.vehicle-fields select,
.vehicle-fields input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Finalization Options */
.finalization-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.radio-option input {
    accent-color: #e53935;
}

/* Price Display */
.price {
    font-size: 2rem;
    color: #e53935;
    margin: 1rem 0;
}

/* Add to Cart Button */
.single_add_to_cart_button {
    background: #e53935;
    color: white;
    padding: 1rem 2rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.single_add_to_cart_button:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
}