/* Custom Pricing Section Styles */

.pricing-wrapper-custom {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: flex-start;
}

/* Right Side: Menu Cards */
.pricing-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-tab-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-tab-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.pricing-tab-item.active {
    border-color: #ED1C24;
    /* Using theme color pink */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tab-content-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.tab-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pricing-tab-item.active .tab-radio {
    border-color: #ED1C24;
    background-color: #ED1C24;
}

.tab-radio::after {
    content: '\2713';
    /* Checkmark */
    color: white;
    font-size: 14px;
    display: none;
}

.pricing-tab-item.active .tab-radio::after {
    display: block;
}

.tab-info h4 {
    margin: 0;
    font-size: 1.25rem;
    color: #231f20;
    font-weight: 500;
}

.tab-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
}

.tab-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #231f20;
}

/* Left Side: Details Pane */
.pricing-details {
    flex: 1;
    background: #f8fafc;
    border-radius: 4px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pricing-pane.active {
    display: block;
}

.pricing-pane h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #231f20;
}

.pricing-pane .pane-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.pricing-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-detail-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: none;
}

.pricing-detail-list li:last-child {
    border-bottom: none;
}

.detail-name {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #334155;
}

.detail-name::before {
    content: '\2713';
    color: #ED1C24;
    font-weight: bold;
}

.detail-price {
    font-weight: 600;
    color: #231f20;
    font-size: 1.1rem;
}

.detail-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-left: 28px;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .pricing-wrapper-custom {
        flex-direction: column-reverse;
        /* Menu on top on mobile */
    }

    .pricing-details {
        width: 100%;
    }

    .pricing-menu {
        width: 100%;
    }
}