.home-carousel {
    position: relative;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.home-carousel-heading { flex-wrap: nowrap; gap: 12px; }
.home-carousel-heading .section-title-1 { min-width: 0; }
.home-carousel-controls { display: flex; flex-shrink: 0; gap: 8px; margin-left: auto; }

.shop-category-slider .category-slide { padding: 0 10px; }
.shop-category-slider .cat-box a { display: block; }

.home-carousel-controls > .home-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #db760d;
    border-radius: 50%;
    background: #fff;
    color: #db760d;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-carousel-arrow span {
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.home-carousel-prev span { transform: translateX(2px) rotate(-135deg); }
.home-carousel-next span { transform: translateX(-2px) rotate(45deg); }
.home-carousel-controls > .home-carousel-arrow:hover { background: #db760d; color: #fff; }
.home-carousel-controls > .home-carousel-arrow:focus-visible { outline: 2px solid #db760d; outline-offset: 2px; }
.home-carousel-controls > .home-carousel-arrow.slick-disabled { opacity: 0.4; cursor: default; }
.home-carousel-controls > .home-carousel-arrow.slick-hidden { display: none; }

@media (max-width: 767px) {
    .home-carousel-controls > .home-carousel-arrow { width: 28px; height: 28px; }
}
