/* =========================================
   Product Card V5 - "Luminous Tech"
   Features: Glassmorphism hints, Vibrant Gradients, Inner Badges
   ========================================= */

.product-card-v5 {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* Featured Card Styling */
.product-card-v5.featured {
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.15);
}

.product-card-v5.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Hover Effects */
.product-card-v5:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Header Area */
.v5-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.v5-title-area h5 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.v5-title-area p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Decorative Icon (Watermark) */
.v5-icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    color: #f1f5f9;
    transform: rotate(15deg);
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.product-card-v5:hover .v5-icon-bg {
    transform: rotate(0deg) scale(1.1);
    color: #e2e8f0;
}

.product-card-v5.featured .v5-icon-bg {
    color: #eff6ff;
}

.product-card-v5.featured:hover .v5-icon-bg {
    color: #dbeafe;
}

/* Badge (Fixed Clipping Issue) */
.v5-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
    align-self: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.product-card-v5.featured .v5-badge {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

/* Specs List */
.v5-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.v5-spec-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #334155;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.v5-spec-item:last-child {
    border-bottom: none;
}

.v5-spec-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 12px;
    font-size: 0.9rem;
    background: #f8fafc;
    color: #64748b;
    transition: all 0.3s ease;
}

.product-card-v5:hover .v5-spec-item i {
    background: #eff6ff;
    color: #3b82f6;
}

.product-card-v5.featured .v5-spec-item i {
    color: #3b82f6;
    background: #eff6ff;
}

/* Footer Area */
.v5-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.v5-price {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.v5-price .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-right: 2px;
}

.v5-price .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.product-card-v5.featured .v5-price .amount {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v5-price .period {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-left: 4px;
    font-weight: 500;
}

/* Action Button */
.v5-btn {
    padding: 10px 24px;
    border-radius: 12px;
    border: none;
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.v5-btn i {
    transition: transform 0.3s ease;
}

.product-card-v5.featured .v5-btn {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.v5-btn:hover {
    background: #0f172a;
    color: #fff;
    transform: translateY(-2px);
}

.v5-btn:hover i {
    transform: translateX(4px);
}

.product-card-v5.featured .v5-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
