.slider-section {
    padding: 2.5rem 0 3rem;
}

.slider-section .carousel-item {
    border-radius: 18px;
    overflow: hidden;
    background: var(--cream);
}

.slider-section .carousel-item .row {
    min-height: 500px;
    align-items: center;
}

.slider-section .carousel-item img {
    min-height: 300px;
}

.slider-section .carousel-item h3 {
    font-weight: 800;
    font-size: 1.8rem;
}

.slider-section .carousel-item p {
    color: var(--text-muted);
    font-size: .95rem;
    max-width: 400px;
}

.slider-section .carousel-item .price-tag {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--black);
}

.slider-section .carousel-item .price-tag small {
    font-weight: 500;
    font-size: .8rem;
    color: var(--text-muted);
}

.slider-section .carousel-control-prev-icon,
.slider-section .carousel-control-next-icon {
    background-color: var(--black);
    border-radius: 50%;
    padding: 1.2rem;
    background-size: 50%;
}

.slider-section .carousel-indicators [data-bs-target] {
    background-color: var(--black);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: .4;
    border: 1px solid var(--black);
}

.slider-section .carousel-indicators .active {
    opacity: 1;
    background-color: var(--black);
}

/* ---------- About / Hero ---------- */
.about-section {
    padding: 5rem 0;
}

.about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
}

.about-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--white);
    border-radius: 12px;
    padding: .9rem 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: .7rem;
}

.about-badge .num {
    font-weight: 800;
    font-size: 1.4rem;
}

.about-badge .lbl {
    font-size: .75rem;
    color: var(--text-muted);
}

.feature-row {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    flex: 1 1 150px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item h6 {
    font-weight: 700;
    margin-bottom: .15rem;
    font-size: .92rem;
}

.feature-item p {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Best sellers ---------- */
.bestsellers-section {
    background: var(--cream);
    padding: 5rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee2c8;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
}

.product-card .img-wrap {
    background: #F7F3E9;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--black);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 20px;
}

.product-card .body {
    padding: 1rem 1.1rem 1.2rem;
}

.product-card .cat {
    font-size: .72rem;
    color: var(--steel-dark);
    font-weight: 700;
}

.product-card h6 {
    font-weight: 700;
    margin: .3rem 0 .6rem;
    font-size: .98rem;
    min-height: 2.6em;
}

.product-card .price {
    font-weight: 800;
    font-size: 1rem;
}

.product-card .price small {
    font-weight: 500;
    font-size: .72rem;
    color: var(--text-muted);
}

.product-card .actions {
    display: flex;
    gap: .5rem;
    margin-top: .8rem;
}

.product-card .actions .btn {
    font-size: .78rem;
    padding: .4rem .6rem;
    border-radius: 7px;
    flex: 1;
    font-weight: 700;
}

.torob-link {
    color: var(--steel-dark);
    font-size: .78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border: 1.5px solid #ddd2ac;
}

.torob-link:hover {
    background: var(--cream-2);
}

/* ---------- Categories ---------- */
.categories-section {
    padding: 4rem 0;
}

.cat-card {
    border: 1px solid #ece3cd;
    border-radius: 14px;
    padding: 1.4rem 1.4rem 1.1rem;
    height: 100%;
    transition: border-color .2s ease;
}

.cat-card:hover {
    border-color: var(--black);
}

.cat-card .top {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .4rem;
}

.cat-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--black);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cat-card h5 {
    font-weight: 800;
    font-size: 1.02rem;
    margin: 0;
}

.cat-card .count {
    font-size: .75rem;
    color: var(--text-muted);
}

.cat-card .toggle-btn {
    border: none;
    background: none;
    color: var(--steel-dark);
    font-weight: 700;
    font-size: .82rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.cat-card .sub-list {
    margin-top: .7rem;
    padding-top: .7rem;
    border-top: 1px dashed #e6dcc0;
}

.cat-card .sub-list a {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--black);
    font-size: .86rem;
    padding: .32rem 0;
}

.cat-card .sub-list a:hover {
    color: var(--steel-dark);
}

.cat-card .sub-list a i {
    font-size: .6rem;
    color: var(--steel);
}

.toggle-btn i {
    transition: transform .25s ease;
}

.toggle-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* ---------- FAQ ---------- */
.faq-section {
    background: var(--cream);
    padding: 5rem 0;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd0a4;
}

.accordion-button {
    background: transparent;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    box-shadow: none !important;
    padding: 1.15rem .2rem;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background: transparent;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    color: var(--text-muted);
    font-size: .92rem;
    padding: 0 .2rem 1.3rem;
    line-height: 1.9;
}

@media (max-width: 991.98px) {

    .about-section,
    .bestsellers-section,
    .categories-section,
    .faq-section,
    .slider-section {
        padding: 3.2rem 0;
    }

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

    .slider-section .carousel-item h3 {
        font-size: 1.4rem;
    }
}