.insta-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.insta-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

/* Zoom image on hover */
.insta-box:hover .insta-img {
    transform: scale(1.05);
}

/* Overlay */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
    border-radius: 20px;
}

/* Show overlay on hover */
.insta-box:hover .insta-overlay {
    opacity: 1;
}

/* Instagram icon */
.insta-overlay i {
    font-size: 40px;
    color: #fff;
}

/* Make swiper arrows look like Instagram-style circles */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);   /* white circle */
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
}

/* Replace default arrow icons */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #555;                /* grey arrow */
    font-weight: bold;
}

/* Position arrows slightly inside the slide */
.swiper-button-prev {
    left: 15px;
}
.swiper-button-next {
    right: 15px;
}

/* Optional: hide arrows on small screens */
@media (max-width: 576px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}


.category-box {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.cat-img-wrap {
    position: relative;
}

.cat-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.4s ease;
}

/* Overlay (semi-dark layer) */
.cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* prevents blocking click */
    border-radius: 6px;
}

/* Text */
.cat-title {
    color: #fff;
    font-size: 18px;
    /*font-weight: 700;*/
    /*text-transform: uppercase;*/
    text-align: center;
    margin: 0;
}

/* Hover zoom effect */
.category-box:hover img {
    transform: scale(1.08);
}


/* Main card container */
.product-card-anya {
    text-align: center;
    padding-bottom: 10px;
    background: #FFD;
}

/* Image box */
.anya-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

/* Image full cover */
.anya-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Quick View button */
.quick-view-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    /*background: #d61e5b;*/
    background: #fff;
    color: #6b0042;
    padding: 10px 25px;
    border-radius: 3px;
    border: 1px solid #6b0042;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover: image zoom + button up */
.anya-img-box:hover img {
    transform: scale(1.06);
}

.anya-img-box:hover .quick-view-btn {
    bottom: 45%;
    color: #6b0042;
}

/* Product Title */
.anya-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Price */
.anya-price {
    color: #cc1b1b;
    font-size: 17px;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 576px) {
    .anya-title {
        font-size: 15px;
    }
    .anya-price {
        font-size: 14px;
    }
}