/* Main card box */
.collection-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    margin-bottom: 20px !important;
}

/* Hover lift effect */
.collection-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.collection-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    border-radius: 0;
    /* no need extra rounding here */
}

/* Smooth zoom on hover */
.collection-box:hover .collection-img img {
    transform: scale(1.08);
}

/* Content styling */
.collection-content {
    padding: 22px 25px 30px;
}

.collection-content h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    /* margin-bottom: 4px; */
    color: #000;
}

.collection-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Remove padding & margins everywhere */
.slick-slide {
    margin: 0 !important;
    padding: 0 !important;
}

.slick-slider .col-md-4,
.slick-slider .col-sm-6 {
    padding: 0 !important;
}

/* Force slide to take full width inside slick */
.slick-slide>div {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Remove unwanted margin from slick container */
.slick-list {
    margin: 0 !important;
    padding: 0 !important;
}

.slide-item {
    width: 100%;
}

.card-img-top {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
