.carousel-item {
    background-position: center;
    background-size: cover;
    height: 100vh;
    min-height: 600px
}

.carousel-caption {
    color: #000;
    position: absolute;
    text-align: left;
    top: 35%
}

.carousel-caption h5 {
    color: #666;
    font-size: 1rem
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700
}

.carousel-caption p {
    color: #555;
    font-size: 1rem;
    max-width: 400px
}

.carousel-caption button {
    background: transparent;
    border: 1px solid #000;
    margin-top: 20px;
    padding: 10px 25px
}

.carousel-numbers {
    bottom: 20px;
    display: flex;
    gap: 20px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 10
}

.carousel-numbers span {
    color: #000;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: .6;
    transition: opacity 0.3s, transform .3s
}

.carousel-numbers span.active {
    opacity: 1;
    transform: scale(1.2)
}

.heading-title {
    color: #151515;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow .3s
}

.tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px
}

.tab-title {
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 20px;
    transition: .3s
}

.tab-title.active,
.tab-title:hover {
    background: #333;
    color: #fff
}

.tabs-content .tab-content {
    display: none
}

.tabs-content .tab-content.active {
    display: block
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.product-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: calc(25% - 15px);
    background: #fff;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.product-item img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 200px;
}

.product-item h4 {
    margin: 10px 0 6px 0;
    font-size: 1rem;
    color: #151515;
    font-weight: 700;
}

.product-item p {
    margin: 0 0 8px 0;
    color: #6c757d;
    font-weight: 600;
}

/* Product card hover lift and overlay CTA */
.product-item {
    transition: transform .2s ease, box-shadow .2s ease;
}
.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.product-media { position: relative; }
.overlay-cta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
}
.product-item:hover .overlay-cta { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
.variant-badge {
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    padding: .25rem .4rem;
}

/* Responsive columns: 4 columns desktop, 3 tablet, 2 mobile wide */
@media (max-width: 992px) {
    .product-item { width: calc(33.333% - 15px); }
}
@media (max-width: 768px) {
    .product-item { width: 70%; }
}

@media (max-width: 768px) {
    .product-grid {
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px
    }

    .product-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 70%
    }

    .product-grid::-webkit-scrollbar {
        height: 6px
    }

    .product-grid::-webkit-scrollbar-thumb {
        background: #0000004d;
        border-radius: 3px
    }

    .tabs-content {
        overflow: hidden
    }
}

.hero-banner {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 500px;
    position: relative
}

.hero-banner h1,
.hero-banner h2 {
    letter-spacing: 2px;
    text-transform: uppercase
}

.hero-banner .btn {
    font-weight: 600;
    padding: 10px 30px
}

.shop-now-btn {
    border-color: #000 !important;
    border-radius: 0;
    padding: 12px 30px
}

.video-banner-section {
    position: relative
}

.video-banner-section .play-button {
    align-items: center;
    background: #00000080;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 60px;
    height: 100px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background .3s;
    width: 100px
}

.video-banner-section .play-button:hover {
    background: #000000b3
}

.category-banner-section {
    display: flex;
    justify-content: center;
    padding: 50px 0
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.category-item {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    overflow: hidden;
    position: relative
}

.category-item img {
    border-radius: 8px;
    object-fit: cover;
    transition: transform .3s ease;
    width: 250px
}

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

.category-overlay {
    background: #ffffffb7;
    border-radius: 6px;
    color: #000;
    font-weight: 700;
    left: 50%;
    opacity: 0;
    padding: 10px 20px;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease
}

.category-item:hover .category-overlay {
    opacity: 1
}

.reviews-section .stars {
    font-size: 1.5rem;
    letter-spacing: 2px
}

.review-box {
    transition: transform .3s ease, box-shadow .3s ease
}

.review-box:hover {
    box-shadow: 0 8px 20px #0000001a;
    transform: scale(1.02)
}

#reviewCarousel .carousel-inner {
    display: block !important
}

#reviewCarousel .carousel-item {
    height: auto;
    min-height: 0;
    padding: 14px 0
}

#reviewCarousel .slide-content {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%
}

#reviewCarousel .review-box {
    margin: 0 auto;
    max-width: 640px;
    transition: transform .28s ease, box-shadow .28s ease;
    width: 100%
}

#reviewCarousel .review-box:hover {
    box-shadow: 0 10px 30px #00000014;
    transform: translateY(-4px)
}

#reviewCarousel .stars {
    font-size: 1.25rem;
    letter-spacing: 2px
}

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
    height: 44px;
    opacity: .65;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .18s ease;
    width: 44px
}

#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
    filter: invert(1)
}

#reviewCarousel .carousel-indicators [data-bs-target] {
    background-color: #ccc;
    border-radius: 50%;
    height: 10px;
    margin: 0 6px;
    width: 10px
}

#reviewCarousel .carousel-indicators .active {
    background-color: #333
}

@media (max-width: 576px) {
    #reviewCarousel .review-box {
        padding: 14px
    }

    #reviewCarousel .stars {
        font-size: 1.05rem
    }
}

.stylish-chair-img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    height: auto;
    object-fit: cover;
    transition: transform .4s ease;
    width: 100%
}

.stylish-chair-img:hover {
    transform: scale(0.95)
}
