/* assets/css/style.css */

/* Custom Hero overlay gradient */
.hero-overlay {
    background: linear-gradient(to right, rgba(11, 32, 70, 0.9) 0%, rgba(11, 32, 70, 0.7) 50%, rgba(26, 54, 93, 0.3) 100%);
}

/* Product Card Hover Effects */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.product-image-container {
    overflow: hidden;
}

.product-image-container img {
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

/* Custom Scrollbar for better luxury feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC; 
}
 
::-webkit-scrollbar-thumb {
    background: #1A365D; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0B2046; 
}

/* Buttons */
.btn-primary {
    background-color: #0B2046;
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #F97316;
}

.btn-accent {
    background-color: #F97316;
    color: white;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #EA580C;
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
