@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

.collections-section-widget {
    padding-right: 8%;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.collections-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.collections-left {
    padding-right: 20px;
}

.collections-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
}

.page-num.active {
    color: #333;
}

.page-line {
    width: 150px;
    height: 1px;
    background: #e46d47;
    transition: all 0.5s ease;
}

.collections-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 80px;
    max-width: 400px;
}

.collections-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.coll-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 8px 8px 30px;
    background: #333;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.coll-cta-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    background: #e46d47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: white;
}

.coll-cta:hover {
    background: #444;
}

/* Right Slider */
.collections-right {
    position: relative;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.collections-swiper {
    overflow: visible !important;
}

.product-card {
    height: auto !important;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    color: #fff;
    cursor: grab;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transform: scale(0.85);
    opacity: 0.8;
}

.product-card.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}
.collections-right .swiper-slide-next .card-image {
    height: 484px !important;
}
.card-image {
    width: 100%;
    height: 545px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-category {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.card-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
}

.card-overlay h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.1;
}

.card-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 320px;
}

.coll-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coll-card-btn-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    background: #e46d47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.coll-card-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.collections-nav {
    display: flex;
    gap: 15px;
    margin-top: -45px;
    margin-left: auto;
    width: fit-content;
    margin-right: 18.5%;
    position: relative;
    z-index: 10;
}

.coll-nav-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.coll-prev {
    background: #ffffff !important;
    color: #333 !important;
}

.coll-next {
    background: #e46d47 !important;
    color: #fff !important;
}

.coll-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .collections-left {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .collections-desc {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .collections-nav {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .collections-section-widget {
        padding: 60px 4%;
    }

    .card-image {
        height: 450px;
        padding: 30px;
    }

    .card-category {
        font-size: 2rem;
    }

    .card-overlay h3 {
        font-size: 1.8rem;
    }
}