.section-header {
    margin-bottom: 30px;
    position: relative;
}

.section-header .title {
    color: #232323;
    font-size: 20px;
    margin-bottom: 14px;
    position: relative;
    text-transform: uppercase;

}

.section-header .title:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
}

.section-header .title .text {
    display: inline-block;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    max-width: 100%;
    width: 420px;
}

.section-header .view_all {
    color: #3c3c3c;
    font-weight: 400;
    margin-bottom: 20px !important;
    display: inline-block;
    border-bottom: 1px solid #000000;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .info {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}

@media (max-width: 768px),
(max-height: 480px) {
    .hero .info {
        display: none;
    }

    .hero {
        min-height: 30vh;
    }

    .hero .carousel-item img {
        object-fit: inherit;
    }
}

.hero .info h2 {
    margin-bottom: 35px;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    color: #ffffff;

}

/* 
.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: #000000;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
} */

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 20px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .hero.dark-background .info .btn-get-started {
        padding: 10px 20px;
    }
}

.hero .info p {
    color: color-mix(in srgb, #364d59, transparent 20%);
    color: #ffffff;
    margin-bottom: 35px;
}

.hero .info .btn-get-started {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    transition: 0.5s;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    width: 190px;
    text-transform: uppercase;
}

.hero .info .btn-get-started:hover {
    background: #821F40;
    color: #ffffff;
    border: 2px solid #821F40;
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
}

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

.hero .carousel-item img::before {
    content: "";
    background-color: color-mix(in srgb, #000000, transparent 80%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, #ffffff, transparent 80%);
    color: color-mix(in srgb, #ffffff, transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

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



/* Spotlight Section Styles */
.spotlight-section .card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
}

.spotlight-section .card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.spotlight-section .card-img {
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease, opacity 0.3s ease;
}

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

.spotlight-section .card-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.3s ease;
}

.spotlight-section .card:hover .card-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.spotlight-section .card-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;

}



.spotlight-section .shop-now {
    color: #821F40;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    text-transform: uppercase;

    transform: translateY(-100%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    width: auto;
    min-width: 190px;
}

.spotlight-section .card:hover .card-img-overlay .shop-now {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
}

.spotlight-section .shop-now:hover {
    background-color: #821F40;
    color: #ffffff;
}

@media (max-width: 767px) {
    .spotlight-section .card {
        height: 200px;
    }
}

.seemore a {
    margin: 0 10px;
}

.seemore a {
    color: #000000;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #000000;
    background-color: transparent;
    text-transform: uppercase;

    width: auto;
    min-width: 190px;
}

.seemore a:hover {
    background-color: #821F40;
    border: 2px solid #821F40;
    color: #fff;
}

.banner-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.banner-item::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.banner-item .banner-heading {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.banner-item .shopbtn {
    color: #821F40;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 40px;
    transition: 0.5s;
    margin-top: 20px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    width: auto;
    min-width: 190px;
    display: inline-block;
}

.banner-item .shopbtn:hover {
    background-color: #821F40;
    color: #ffffff;
}

/*product*/
.kc-product-section .card {
    border: 0;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 0;
    transition: all 0.5s ease-in;
}

.kc-product-section .card figure {
    overflow: hidden;
    margin: 0;
    position: relative;
    height: 300px;
    transition: all 0.5s ease-in;
}

.kc-product-section .card figure img {
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: all 0.5s ease-in;
}

.kc-product-section .card:hover figure img {
    transform: scale(1.1);
}

.kc-product-section .card .label-group {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.kc-product-section .card .custom-badge {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.kc-product-section .card .btn-icon-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
}

.kc-product-section .card:hover .btn-icon-group {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
}

.kc-product-section .card .btn-icon {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

.kc-product-section .card .btn-icon:hover {
    background-color: rgba(255, 255, 255, 1);
}

.kc-product-section .card .product-title {
    font-size: 16px;
    color: #333;

}

.kc-product-section .card:hover .product-title a {
    text-decoration: underline;
}

.kc-product-section .card .price-box {
    margin-top: 0.5rem;
}

.kc-product-section .card .product-price {
    font-size: 16px;
    color: #c0392b;
    font-weight: bold;
}

.kc-product-section .card .old-price {
    text-decoration: line-through;
    color: #888;
}

.kc-product-section .card .discount {
    font-weight: bold;
}

.kc-product-section .card .btn-quickview {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    transition: 0.5s;
    border: 2px solid #821F40;
    background-color: #821F40;
    text-transform: uppercase;

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.5s ease-in;
}

.kc-product-section .card .btn-quickview:hover {
    background-color: #000000;
    border: 2px solid #000000;
}

.kc-product-section .card:hover .btn-quickview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}


@media (max-width: 767px) {
    .kc-product-section .card figure {
        height: 150px;
    }

    .kc-product-section .card .product-title {
        font-size: 14px;
    }

    .kc-product-section .card .discount {
        display: block;
    }

    .seemore a {
        min-width: 100px;
    }

    .kc-product-section .card .card-product-size span {
        display: block;
    }

    .kc-product-section .card .card-body .card-product-size {
        display: block;
    }
}

.kc-product-section .card .card-product-size {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.kc-product-section .card .card-product-size ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.kc-product-section .card .card-product-size span {
    font-size: 14px;
    font-weight: 700;
}

.kc-product-section .card .card-product-size ul li.item-size {
    display: block;
    padding: 0 10px;
    text-align: center;
    border: 1px solid #dedede;
    font-weight: 100;
    font-size: 12px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background-color: #000000;
}

.testimonials .testimonial-item {
    background-color: #ffffff;
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 20px 10px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;

    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #d1d1d1;
    background-color: #821F40;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;

}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, #3d4348, transparent 40%);
    margin: 0;

}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;

    font-size: 16px;
}


.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color:
        color-mix(in srgb, #821F40, transparent 50%);
    font-size: 20px;
    line-height: 0;
}

.testimonials .owl-dots {
    margin-top: 20px;
    position: relative;
    text-align: center;
}

.testimonials .owl-carousel button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 5px;
    opacity: 1;
    background-color:
        color-mix(in srgb, #ffffff, transparent 20%);
}

.testimonials .owl-carousel button.owl-dot.active {
    background-color:
        color-mix(in srgb, #821F40, transparent 0%);
}

.tp-blog-area .card {
    transition: all 0.5s ease-in;
}

.tp-blog-area .card figure {
    overflow: hidden;
    margin: 0;
    position: relative;
    height: 300px;
    transition: all 0.5s ease-in;
}

.tp-blog-area .card figure img {
    height: 100%;
    width: 100%;
    transition: all 0.5s ease-in;
}

.tp-blog-area .card:hover figure img {
    transform: scale(1.1);
}


.tp-blog-area .card:hover a {
    color: #821F40;
}

