
/* Base styles */
body {
    line-height: 1.5;
    color: #333;
}

/* Sale badge styling */
.sale-badge {
    background-color: #ef4444;
    color: white;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}
/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}
/* Product card hover effect */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Configurator Styles */
.configurator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.configurator-preview {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.price-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0ea5e9;
}

.configurator-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.preview-option {
    margin: 0.25rem 0;
}

.configurator-option {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
    padding: 0.75rem;
    border-left: 3px solid #0ea5e9;
}
/* Button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dulles Glass style buttons */
.shop-button {
    background-color: #0ea5e9;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.shop-button:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quote-button {
    background-color: white;
    color: #0ea5e9;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.quote-button:hover {
    background-color: #0ea5e9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Form inputs */
.input-field {
    transition: border-color 0.3s ease;
}

.input-field:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}