/* General Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    overflow-x: hidden;
}

/* Section Titles */
.section-subtitle {
    font-family: serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 2px;
    background-color: #333;
    margin: 0 auto 2rem;
}

/* Hero Carousel */
/* .hero-carousel {
    margin-top: 70px;
} */

.carousel-inner {
    height: auto;
}

.carousel-item {
    height: auto;
}

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

.carousel-caption {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    bottom: 35%;
    left: 23%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
}

.carousel-title {
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: #5b5b5b;
    margin-bottom: 10px;
}

.carousel-heading {
    font-family: 'Poppins-Bold', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1rem 0;
    text-transform: uppercase;
    color: #5b5b5b;
    line-height: 1.1;
}

.carousel-text {
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.btn-carousel {
    background-color: #fff;
    color: #333;
    padding: 12px 35px;
    border-radius: 23px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Poppins-Medium', sans-serif;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-block;
    border: 1px solid #fff;
}

.btn-carousel:hover {
    background-color: #a47f5f;
    color: #fff;
    border-color: #a47f5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Category Section */
.category-section {
    background-color: #fff;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.category-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-name {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn-category {
    background-color: #fff;
    color: #333;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-category:hover {
    background-color: #a47f5f;
    color: #fff;
}

/* New Arrivals Section */
.new-arrivals-section {
    background-color: #f8f9fa;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: auto;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: bottom 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    bottom: 20px;
}

.btn-view {
    background-color: #fff;
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #a47f5f;
    color: #fff;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.btn-view-all {
    background-color: #333;
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-all:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Promotional Banner */
.promo-banner {
    margin: 3rem 0;
}

.promo-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.promo-content {
    text-align: center;
    color: #fff;
}

.promo-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.promo-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.promo-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-promo {
    background-color: #fff;
    color: #333;
    padding: 12px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-promo:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Featured Section */
.featured-section {
    background-color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-carousel {
        margin-top: 70px;
    }

    .carousel-inner,
    .carousel-item {
        height: 450px;
    }

    .carousel-heading {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-image {
        height: 300px;
    }

    .product-image {
        height: 280px;
    }

    .promo-title {
        font-size: 3rem;
    }

    .promo-image {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .carousel-inner,
    .carousel-item {
        height: 350px;
    }

    .carousel-heading {
        font-size: 2rem;
    }

    .carousel-title {
        font-size: 0.85rem;
    }

    .carousel-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .category-image {
        height: 250px;
    }

    .category-name {
        font-size: 1.5rem;
    }

    .product-image {
        height: auto;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-text {
        font-size: 1rem;
    }

    .promo-image {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .carousel-inner,
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        padding: 1rem;
        bottom: 10%;
        margin-left: 14px;
    }

    .carousel-heading {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-card {
        margin-bottom: 1rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .btn-carousel,
    .btn-promo,
    .btn-view-all {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}