.sb-images-carousel-section {
    background-color: var(--bg-color, #ffffff);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.sb-ic-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.sb-ic-image-box {
    position: relative;
    width: 100%;
}

.sb-ic-images-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.38/1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.sb-ic-img-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    clip-path: inset(0% round 16px);
}

.sb-ic-img-item.active {
    z-index: 2;
    animation: sbExpandMask 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sb-ic-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sb-ic-img-item.active img {
    animation: sbZoomOut 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sbExpandMask {
    from {
        clip-path: inset(50% round 16px);
    }

    to {
        clip-path: inset(0% round 16px);
    }
}

@keyframes sbZoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.sb-ic-content-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sb-ic-headings-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sb-ic-heading-item {
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.4;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sb-ic-heading-item.active {
    opacity: 1;
}

.sb-ic-heading {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: var(--highlight-color, #222222);
    transition: color 0.3s ease;
    flex: 1;
}

.sb-ic-heading-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight-color, #222222);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sb-ic-heading-item.active::after {
    transform: scaleX(1);
}

.sb-ic-descriptions-container {
    position: relative;
    min-height: 120px;
}

.sb-ic-desc-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sb-ic-desc-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sb-ic-desc-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

@media (max-width: 991px) {
    .sb-images-carousel-section {
        padding: 15px 0;
    }

    .sb-ic-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-ic-heading {
        font-size: 32px;
    }

    .sb-ic-descriptions-container {
        min-height: auto;
    }
}

.sb-ic-shop-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #000;
    color: #1a1a1a;
    padding: 5px 10px 5px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
    margin-left: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-15px);
}

.sb-ic-heading-item.active .sb-ic-shop-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.sb-ic-shop-btn .btn-bg {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.sb-ic-shop-btn .btn-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    color: #ffffff;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.sb-ic-shop-btn .btn-icon svg {
    width: 10px;
    height: 10px;
}

.sb-ic-shop-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.sb-ic-shop-btn:hover {
    color: #ffffff;
    border-color: #1a1a1a;
}

.sb-ic-shop-btn:hover .btn-bg {
    right: 0;
    top: 0;
    transform: translateY(0);
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.sb-ic-shop-btn:hover .btn-icon {
    transform: rotate(45deg);
}