/* ─── CARD ─────────────────────────────────────── */
.pfc-card {
    width: 300px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}

/* ─── IMAGE AREA ───────────────────────────────── */
.pfc-img-wrap {
    position: relative;
    height: 230px;
    background: linear-gradient(150deg, #f7f0e8 0%, #ede2d2 55%, #e2d5c2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pfc-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(150, 120, 80, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.pfc-bottle {
    animation: pfc-floatBottle 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(6px 14px 20px rgba(80, 55, 30, 0.28));
}

@keyframes pfc-floatBottle {

    0%,
    100% {
        transform: translateY(0) rotate(-1.5deg);
    }

    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

/* ── Badges ───────────────────────────────────── */
.pfc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 10;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

/* Position Sale badge below OOS if both exist */
.pfc-badge--sale {
    background: #f93b26 !important;
    /* Offset if OOS is present, or I can use a container */
}

/* If you use a single badge container, this is better: */
.pfc-badge-wrap {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.pfc-badge-wrap .pfc-badge {
    position: static;
    /* Let the container handle positioning */
}

.pfc-badge--oos {
    background: #000 !important;
    color: #fff !important;
}

.pfc-fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    z-index: 5;
}

.pfc-fav-btn:hover {
    transform: scale(1.15);
}

.pfc-fav-btn.pfc-fav-active {
    background: #fff2f2;
}

.pfc-fav-btn svg {
    width: 17px;
    height: 17px;
    transition: all 0.3s ease;
}

.pfc-heart-path {
    fill: none;
    stroke: #b08060;
    stroke-width: 1.8;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.pfc-fav-btn.pfc-fav-active .pfc-heart-path {
    fill: #e05070;
    stroke: #e05070;
}

.pfc-fav-particles {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    pointer-events: none;
    z-index: 6;
}

.pfc-fav-particles .pfc-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e05070;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

/* ─── CONTENT AREA ─────────────────────────────── */
.pfc-content {
    padding: 18px 20px 20px;
}

.pfc-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.pfc-category a {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #c9a84c !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.pfc-category a:hover {
    color: #000 !important;
}

.pfc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #8a7060;
}

.pfc-stars {
    color: #c8955a;
    font-size: 11px;
    letter-spacing: 1px;
}

.pfc-rating-count {
    font-size: 10px;
    color: #bbb0a0;
}

.pfc-title a {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.2px !important;
    text-decoration: none !important;
    display: block !important;
    margin: 8px 0 !important;
    transition: color 0.3s ease !important;
}

.pfc-title a:hover {
    color: #000 !important;
}

.pfc-title em {
    font-style: normal;
    font-weight: 300;
    color: #7a6050;
}

.pfc-desc {
    font-size: 13.5px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    margin-bottom: 16px !important;
}

.pfc-notes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pfc-note-pill {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #8a6848;
    background: #f5eede;
    border: 0.5px solid #ddd0bc;
    border-radius: 20px;
    padding: 3px 10px;
}

.pfc-divider {
    height: 0.5px;
    background: #ede5d8;
    margin-bottom: 16px;
}

.pfc-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pfc-price-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0px !important;
}

.pfc-price-label {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c0a880;
    margin-bottom: 2px;
}

.pfc-price {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #111 !important;
    line-height: 1 !important;
    letter-spacing: -0.4px !important;
}

.pfc-price-was {
    font-size: 13px !important;
    color: #a0a0a0 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
    margin-top: 2px !important;
    letter-spacing: 0.2px !important;
}

/* ─── ADD TO CART BUTTON ────────────────────────── */
.pfc-cart-btn {
    color: #fff !important;
    flex: 1 !important;
    max-width: 140px !important;
    height: 48px !important;
    border-radius: 50px !important;
    background: #111 !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    text-decoration: none !important;
}

.pfc-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.pfc-cart-btn:hover {
    background: #000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.pfc-cart-btn:active {
    transform: scale(0.97);
}

.pfc-cart-btn.pfc-btn-loading {
    background: #3a2e20;
    pointer-events: none;
}

.pfc-btn-default {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pfc-btn-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #f5ead8;
}

.pfc-cart-icon {
    width: 16px;
    height: 16px;
}

.pfc-cart-icon path,
.pfc-cart-icon circle {
    stroke: #f5ead8;
}

.pfc-loading-dots {
    display: none;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pfc-loading-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f5ead8;
    display: block;
    animation: pfc-dot-bounce 0.9s ease-in-out infinite;
}

.pfc-loading-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.pfc-loading-dots span:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes pfc-dot-bounce {

    0%,
    80%,
    100% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.pfc-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    animation: pfc-ripple-out 0.6s linear;
    pointer-events: none;
}

@keyframes pfc-ripple-out {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ─── VOLUME SELECTOR ──────────────────────────── */
.pfc-vol-selector {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.pfc-vol-btn {
    font-size: 10.5px;
    font-weight: 400;
    color: #9a8070;
    background: #f8f3ec;
    border: 0.5px solid #ddd0bc;
    border-radius: 8px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.pfc-vol-btn:hover {
    background: #f0e8d8;
    border-color: #c8a878;
}

/* .pfc-vol-btn.pfc-vol-active {
    background: #1e1610;
    color: #f5ead8;
    border-color: #1e1610;
} */

.pfc-cart-btn.added::after {
    display: none !important;
}


.pfc-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.pfc-img-wrap a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}


@media (max-width:768px) {
    .pfc-card {
        width: 100% !important;
    }
}