.filomena-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 24px;
}

.filomena-product-card .product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.filomena-product-card .product-image > a {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #f1f0ea;
    aspect-ratio: 3 / 4;
}

.filomena-product-card .product-image .image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 20%, rgba(17, 24, 39, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.filomena-product-card .product-image .image-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Geist";
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.filomena-product-card .product-image:hover .image-overlay,
.filomena-product-card .product-image:focus-within .image-overlay {
    opacity: 1;
}

.filomena-product-card .product-image:hover img {
    transform: scale(1.05);
}

.filomena-product-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.45s ease;
}

.filomena-product-card .product-primary-image,
.filomena-product-card .product-hover-image {
    position: absolute;
    inset: 0;
}

.filomena-product-card .product-hover-image {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.7s ease, filter 0.45s ease;
}

.filomena-product-card .product-image.is-hover-image-ready:hover .product-hover-image,
.filomena-product-card .product-image.is-hover-image-ready:focus-within .product-hover-image {
    opacity: 1;
}

.filomena-product-card .product-image:hover img,
.filomena-product-card .product-image:focus-within img {
    filter: saturate(1.05);
}

.filomena-product-card .product-sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    background-color: #7bdcb5;
    color: #111827;
    font-family: "Geist";
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.filomena-product-card .product-sale-badge--out {
    background-color: rgba(17, 24, 39, 0.88);
    color: #ffffff;
}

.filomena-product-card .product-corner-accent {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-top: 1px solid #7bdcb5;
    border-right: 1px solid #7bdcb5;
    opacity: 0;
    transform: translate(6px, -6px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.filomena-product-card .product-image:hover .product-corner-accent,
.filomena-product-card .product-image:focus-within .product-corner-accent {
    opacity: 1;
    transform: translate(0, 0);
}

.filomena-product-card .product-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filomena-product-card .product-title {
    display: block;
    margin: 0;
    font-weight: 400;
    text-decoration: none;
    color: #111827;
    transition: color 0.3s ease;
}

.filomena-product-card:hover .product-title,
.filomena-product-card:focus-within .product-title {
    color: #4b5563;
}

.filomena-product-card .product-title h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 400;
}

.filomena-product-card .product-tags {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.filomena-product-card .product-tags > span {
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-family: "Geist";
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #96a0ae;
}

.filomena-product-card .product-tags > i {
    width: 4px;
    height: 4px;
    margin: 0 12px;
    border-radius: 50%;
    background-color: #7bdcb5;
    display: inline-block;
}

.filomena-product-card .product-divider {
    width: 100%;
    height: 1px;
    background-color: #d6d9de;
    transition: background-color 0.35s ease;
}

.filomena-product-card:hover .product-divider,
.filomena-product-card:focus-within .product-divider {
    background-color: #7bdcb5;
}

.filomena-product-card .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.filomena-product-card .product-footer .product-price {
    font-family: "Geist";
    font-size: 18px;
    font-weight: 400;
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.filomena-product-card .product-footer .product-price del {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 400;
}

.filomena-product-card .product-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: #111827;
    font-family: "Geist";
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: transparent;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filomena-product-card:hover .product-footer > a,
.filomena-product-card:focus-within .product-footer > a {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .filomena-product-card .product-title h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .filomena-product-card .product-card-content {
        gap: 14px;
    }

    .filomena-product-card .product-image > a {
        aspect-ratio: 4 / 5;
    }

    .filomena-product-card .product-footer > a {
        opacity: 1;
    }
}
