
/* =========================================
   Product Card V3 (Redesign)
   ========================================= */

.product-card-v3 {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.product-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

/* Featured Card Override */
.product-card-v3.featured {
    background: #0f172a; /* Slate 900 */
    border-color: #1e293b;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.product-card-v3.featured:hover {
    box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.3);
    border-color: #3b82f6;
}

/* Header Section */
.v3-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.v3-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.product-card-v3:hover .v3-icon {
    transform: scale(1.1) rotate(5deg);
}

.v3-title-group h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.v3-title-group p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Featured Text Overrides */
.product-card-v3.featured .v3-title-group h5 { color: #fff; }
.product-card-v3.featured .v3-title-group p { color: #94a3b8; }

/* Pricing Section */
.v3-pricing {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.product-card-v3.featured .v3-pricing {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.v3-price-tag {
    display: flex;
    align-items: baseline;
    color: #0f172a;
}

.product-card-v3.featured .v3-price-tag { color: #fff; }

.v3-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.v3-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.v3-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 6px;
}

.product-card-v3.featured .v3-period { color: #94a3b8; }

/* Features List */
.v3-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.v3-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #334155;
}

.product-card-v3.featured .v3-features li { color: #cbd5e1; }

.v3-features li i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Buttons */
.v3-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.v3-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.v3-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
    color: #fff;
}

.v3-btn-soft {
    background: #f1f5f9;
    color: #334155;
}

.v3-btn-soft:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.product-card-v3.featured .v3-btn-primary {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.product-card-v3.featured .v3-btn-primary:hover {
    background: #f8fafc;
    color: #2563eb;
}

/* Badge */
.v3-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.v3-badge i { color: #fbbf24; }

/* Decorative Elements */
.v3-decor-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: -1;
}

.product-card-v3.featured .v3-decor-blob {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}
