/* General Styles */
:root {
    --primary-color: #27ae60;
    --primary-dark: #2ecc71;
    --text-color: #333;
    --bg-color: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Header & Nav */
.navbar-nav .nav-link {
    color: #333;
    transition: color 0.3s;
    padding: 10px 15px !important;
}

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

.dropdown-item:hover {
    background-color: #eafaf1;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-swiper {
    width: 100%;
    height: 600px;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

/* Cards & Components */
.category-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    height: 100%;
}

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

.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(39, 174, 96, 0.15);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Buttons */
.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

/* Footer Links */
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Utility Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hover-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* Product Card Improvements */
.product-img-wrap {
    background: #f8f9fa;
    position: relative;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.color-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: default;
}

/* Group Hover Utilities */
.group {
    display: block;
    position: relative;
}

.group-hover\:opacity-50 {
    transition: opacity 0.3s ease;
}

.group:hover .group-hover\:opacity-50 {
    opacity: 0.5 !important;
}

.group-hover\:scale-110 {
    transition: transform 0.5s ease;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-swiper {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 30px;
        font-size: 24px;
    }
}

/* Product Detail Enhancements */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.08);
    border-color: rgba(39, 174, 96, 0.2);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #eafaf1;
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

.main-image-wrap {
    cursor: zoom-in;
}

/* Lightbox Arrows Customization */
#prevBtn, #nextBtn {
    transition: all 0.3s ease;
    background-color: rgba(0,0,0,0.6) !important;
}

#prevBtn:hover, #nextBtn:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1);
}

/* Force 2 columns on desktop for Features */
@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Modern Color Swatches */
.color-swatch-ring {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #eee;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.color-swatch {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.color-item:hover .color-swatch-ring {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.color-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

/* Modern Enquiry Card */
.enquiry-card {
    border-radius: 16px !important;
}

.enquiry-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-bottom: 0;
}

.modern-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.modern-form .form-control:focus {
    border-color: #334155;
    box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.1);
}

.enquiry-submit-btn {
    border-radius: 10px !important;
    transition: all 0.3s ease;
    background-color: #1e293b !important;
    border: none;
}

.enquiry-submit-btn:hover {
    background-color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
}
