/* Editorial Hero Section with Background Image */
.necklace-hero-section {
    position: relative;
    background: url('/Image/CoverPage/necklace-01.jpg') no-repeat center center / cover;
    height: 480px;
    min-height: 480px;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .necklace-hero-section {
        height: 350px;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .necklace-hero-section {
        height: 220px;
        min-height: 220px;
    }
}

.lux-catalog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    transition: var(--transition-lux);
}
.lux-catalog-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.card-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
    background-color: var(--light-beige);
}
@media (max-width: 991px) {
    .card-img-wrap {
        height: 280px;
    }
}
@media (max-width: 576px) {
    .card-img-wrap {
        height: 240px;
    }
    .card-actions-overlay {
        opacity: 1;
        transform: translate(-50%, 0);
        bottom: 10px;
    }
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-lux);
}
.card-img-wrap .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.lux-catalog-card:hover .card-img-wrap img.main-img.has-hover {
    opacity: 0;
}
.lux-catalog-card:hover .card-img-wrap img.main-img:not(.has-hover) {
    transform: scale(1.05);
}
.lux-catalog-card:hover .card-img-wrap img.hover-img {
    opacity: 1;
    transform: scale(1.05);
}

/* Wishlist/Add Cart buttons overlay */
.card-actions-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    display: flex;
    gap: 10px;
    width: 85%;
    transition: var(--transition-lux);
    z-index: 3;
}
.lux-catalog-card:hover .card-actions-overlay {
    opacity: 1;
    transform: translate(-50%, 0);
}

.round-action-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--gold-accent);
    color: var(--text-charcoal);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.round-action-btn:hover {
    background-color: var(--gold-accent);
    color: var(--bg-white);
}
.round-action-btn.active {
    background-color: var(--gold-accent);
    color: var(--bg-white);
}
