/* ===== Product Comparison Posters 0afede6f ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

.pcp-0afede6f-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

/* ===== TIMER ===== */
.pcp-0afede6f-timer-wrap {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pcp-0afede6f-timer-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pcp-0afede6f-timer-header {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pcp-0afede6f-timer-icon {
    font-size: 36px;
    margin-bottom: 8px;
    animation: pcp0afede6fPulse 1.5s ease-in-out infinite;
}

.pcp-0afede6f-timer-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #d4af37;
    margin: 0 0 6px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pcp-0afede6f-timer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

.pcp-0afede6f-timer-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.pcp-0afede6f-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pcp-0afede6f-timer-digit {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 75px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pcp-0afede6f-timer-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pcp-0afede6f-timer-sep {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    animation: pcp0afede6fBlink 1s step-end infinite;
}

/* ===== CARDS GRID — SIDE BY SIDE ===== */
.pcp-0afede6f-cards-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
}

/* ===== CARD ===== */
.pcp-0afede6f-card {
    background: linear-gradient(180deg, #0f0f1a 0%, #141428 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pcp-0afede6f-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.pcp-0afede6f-card--featured {
    border: 2px solid #d4af37;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), 0 0 80px rgba(212, 175, 55, 0.05);
}

.pcp-0afede6f-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.25);
}

.pcp-0afede6f-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    background: linear-gradient(45deg, #d4af37, #f0d060, #d4af37, #b8962e);
    background-size: 300% 300%;
    animation: pcp0afede6fGlow 3s ease infinite;
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
}

/* ===== BADGE ===== */
.pcp-0afede6f-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #d4af37, #f0d060);
    color: #0f0f1a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* ===== CARD INNER ===== */
.pcp-0afede6f-card-inner {
    padding: 35px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
}

.pcp-0afede6f-pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 4px 0;
    letter-spacing: 1px;
}

.pcp-0afede6f-pkg-qty {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== IMAGE ===== */
.pcp-0afede6f-img-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcp-0afede6f-img-wrap::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pcp-0afede6f-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.pcp-0afede6f-card:hover .pcp-0afede6f-img-wrap img {
    transform: scale(1.08) rotate(-2deg);
}

/* ===== PRICING ===== */
.pcp-0afede6f-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.pcp-0afede6f-orig-price {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.pcp-0afede6f-sale-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.pcp-0afede6f-savings {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* ===== FEATURES ===== */
.pcp-0afede6f-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    width: 100%;
}

.pcp-0afede6f-feature {
    font-size: 13px;
    color: #cccccc;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.pcp-0afede6f-feature:last-child {
    border-bottom: none;
}

.pcp-0afede6f-check {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
}

/* ===== BUTTON ===== */
.pcp-0afede6f-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f0d060);
    color: #0f0f1a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    margin-top: auto;
}

.pcp-0afede6f-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pcp-0afede6f-btn:hover::before {
    left: 100%;
}

.pcp-0afede6f-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: #0f0f1a;
    text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes pcp0afede6fPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes pcp0afede6fBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pcp0afede6fGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pcp-0afede6f-cards-grid {
        gap: 16px;
    }
    .pcp-0afede6f-card--featured {
        transform: scale(1.02);
    }
    .pcp-0afede6f-card--featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
    .pcp-0afede6f-card-inner {
        padding: 28px 18px 24px;
    }
    .pcp-0afede6f-sale-price {
        font-size: 26px;
    }
    .pcp-0afede6f-img-wrap {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .pcp-0afede6f-cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .pcp-0afede6f-card {
        max-width: 400px;
        width: 100%;
        flex: none;
    }
    .pcp-0afede6f-card--featured {
        transform: scale(1);
    }
    .pcp-0afede6f-card--featured:hover {
        transform: translateY(-8px);
    }
    .pcp-0afede6f-timer-digits {
        gap: 8px;
    }
    .pcp-0afede6f-timer-digit {
        font-size: 28px;
        padding: 8px 12px;
        min-width: 55px;
    }
    .pcp-0afede6f-timer-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .pcp-0afede6f-timer-sep {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pcp-0afede6f-timer-digit {
        font-size: 22px;
        padding: 6px 10px;
        min-width: 48px;
    }
    .pcp-0afede6f-timer-sep {
        font-size: 20px;
    }
    .pcp-0afede6f-sale-price {
        font-size: 26px;
    }
}
