﻿/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1e2b, #2c2f3f);
    min-height: 85vh;
    background-image: url('/images/slider_1.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: right;
    color: #0a0a0a;
    max-width: 600px;
}

    .hero-content h2 {
        font-size: 2.8rem;
        margin: 20px 0;
    }

.btn-gold {
    background: #c2a15b;
    padding: 12px 28px;
    border-radius: 40px;
    color: black;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-gold:hover {
        background: #dbb36e;
        transform: translateY(-3px);
    }

/* Search with live results */
.search-container {
    position: relative;
}

.live-results {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 8px;
}

.live-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.2s;
}

    .live-result-item:hover {
        background: #f9f6f0;
    }

.live-result-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 12px;
}

.live-result-info h4 {
    margin: 0;
    font-size: 0.9rem;
}

.live-result-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #c2a15b;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 24px;
    margin: 60px 0;
}

.feature {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .feature:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }

    .feature i {
        font-size: 2.5rem;
        color: #c2a15b;
        margin-bottom: 16px;
    }

/* Product Carousel */
.product-carousel {
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    margin: 10px;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 35px rgba(0,0,0,0.15);
    }

.product-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 18px;
    text-align: center;
}

.product-gender {
    font-size: 0.7rem;
    color: #c2a15b;
    background: #fef5e8;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
}

.product-title {
    font-weight: 700;
    margin: 10px 0;
    font-size: 0.95rem;
}

.product-price {
    color: #1f2a3e;
    font-weight: 600;
    margin: 12px 0;
}

.buy-link {
    background: #1f2a3e;
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    display: inline-block;
    text-decoration: none;
    transition: 0.2s;
}

    .buy-link:hover {
        background: #c2a15b;
        color: black;
    }

.owl-nav button {
    background: #1f2a3e !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 20px !important;
}

    .owl-nav button:hover {
        background: #c2a15b !important;
    }

/* Category Banners */
.category-banners {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    margin: 50px 0;
}

.banner {
    background-size: cover;
    border-radius: 32px;
    padding: 40px;
    min-height: 280px;
    position: relative;
    color: white;
    transition: 0.3s;
}

    .banner:hover {
        transform: scale(1.02);
    }

/* About Section */
.about-box {
    background: #f9f6f0;
    border-radius: 48px;
    padding: 48px;
    text-align: justify;
    margin: 50px 0;
    line-height: 1.8;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width:768px) {
    .category-banners {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }
}
