/* Catalog card bottle overlay — 2026-08-15. */

.page-catalog--v2 .product-card--editorial .product-card__media {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-catalog--v2 .product-card--editorial .product-card__media::after {
    display: none !important;
    content: none !important;
}

/* Crop the imported left-side inset while keeping the botanical artwork dominant. */
.page-catalog--v2 .product-card--editorial .catalog-product-art {
    position: relative;
    z-index: 1;
    width: 122% !important;
    max-width: none !important;
    height: 100% !important;
    margin-left: -22%;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: 68% center !important;
    transform: none !important;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .3s ease !important;
}

.page-catalog--v2 .product-card--editorial:hover .catalog-product-art {
    transform: scale(1.02) !important;
    filter: saturate(1.02);
}

.page-catalog--v2 .product-card--editorial .catalog-product-bottle {
    position: absolute !important;
    z-index: 4;
    right: 14px;
    bottom: 14px;
    width: min(29%, 96px) !important;
    height: min(50%, 178px) !important;
    max-width: none !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    background: transparent !important;
    border: 0 !important;
    filter: drop-shadow(0 13px 15px rgba(30, 49, 25, .24));
    transform: translateY(2px) !important;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .3s ease !important;
    pointer-events: none;
}

.page-catalog--v2 .product-card--editorial:hover .catalog-product-bottle {
    transform: translateY(-5px) rotate(-1deg) scale(1.035) !important;
    filter: drop-shadow(0 17px 18px rgba(30, 49, 25, .28));
}

@media (max-width: 760px) {
    .page-catalog--v2 .product-card--editorial .catalog-product-art {
        width: 116% !important;
        margin-left: -16%;
        object-position: 65% center !important;
    }

    .page-catalog--v2 .product-card--editorial .catalog-product-bottle {
        right: 10px;
        bottom: 10px;
        width: min(27%, 86px) !important;
        height: min(46%, 154px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-catalog--v2 .product-card--editorial .catalog-product-art,
    .page-catalog--v2 .product-card--editorial .catalog-product-bottle {
        transition: none !important;
    }
}
