/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1523380744952-b7e00e6e2ffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--primary-white);
    padding: 8rem 0 6rem;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--light-gray);
}

.hero-highlight {
    background: var(--primary-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category Card */
.category-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--primary-white);
    border: 1px solid var(--light-gray);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--primary-gold);
    z-index: 2;
    transition: height 0.3s ease;
}

.category-card:hover:before {
    height: 4px;
}

.category-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-name {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.5rem 1rem 0.5rem;
    margin: 0;
}

.category-count {
    color: var(--text-gray);
    padding: 0 1rem 1.5rem;
    font-size: 0.9rem;
}

/* Product Card (Limited for Home) */
.product-card {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: var(--primary-white);
    position: relative;
    border: 1px solid var(--light-gray);
}

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

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--primary-gold);
    z-index: 2;
    transition: height 0.3s ease;
}

.product-card:hover:before {
    height: 3px;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-front-img, .product-back-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-back-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
}

.product-image-container:hover .product-front-img {
    opacity: 0;
    transform: scale(1.1);
}

.product-image-container:hover .product-back-img {
    opacity: 1;
    transform: scale(1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(140, 111, 28, 0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(to right, #BF953F, #be9343, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.product-colors {
    display: flex;
    margin-bottom: 0.5rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid var(--light-gray);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--primary-gold-solid);
}

/* View All Button Container */
.view-all-container {
    text-align: center;
    margin: 2rem 0 3rem;
}

/* Image Slider */
.image-slider {
    margin: 4rem 0;
}

.slider-item {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.slider-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 228, 166, 0.1) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(140, 111, 28, 0.1) 100%);
    z-index: 1;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

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