/* ==============================
   HERO SLIDER SECTION
============================== */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* Dark overlay for slider text readability on light theme */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.2) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 24px;
    color: #ffffff; /* Override for hero */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    color: #dddddd; /* Override for hero */
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 16px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.slider-dots {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}


/* ==============================
   COLLECTION SECTION
============================== */
.collection {
    background-color: var(--bg-color);
}

#top-sellers {
    background-color: #fafafa;
}



.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.product-img-wrapper {
    height: 300px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.1));
}

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

.product-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-price {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}


/* ==============================
   ABOUT SECTION
============================== */
.about {
    background-color: var(--bg-color);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-slow);
}

.about-img-container:hover .about-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.glass-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.glass-card h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
}

.about-text {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-muted);
}


/* ==============================
   TESTIMONIALS SECTION
============================== */
.testimonials {
    background-color: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.author {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}
