/* checkout_professional.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-burgundy: #891652;
    --primary-dark: #2B2842;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.08);
    --input-bg: #f9fafb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
}

.checkout-container {
    background: #fdf5f9;
    min-height: 100vh;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.professional-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    padding: 40px;
    height: 100%;
}

.checkout-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-title i {
    color: var(--primary-burgundy);
    font-size: 24px;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
    display: block;
}

/* Form Styling */
.form-group label {
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    background: var(--input-bg);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    height: 52px !important;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 4px rgba(137, 22, 82, 0.1);
    background: #fff;
}

/* Order Summary Styling */
.order-summary-card {
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e5e7eb;
    color: var(--text-main);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.rounded-4 {
    border-radius: 16px !important;
}

/* Phone Input Polish */
.iti {
    width: 100%;
    display: block;
    height: 52px !important;
}

.iti .form-control {
    padding-left: 95px !important; /* Ensure space for flag and code */
    border-radius: 12px !important;
    height: 52px !important;
    line-height: 52px;
}

.iti__flag-container {
    padding: 2px;
    border-radius: 12px 0 0 12px !important;
    height: 100%;
}

.iti--allow-dropdown .iti__selection {
    background: transparent;
    padding-left: 12px;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti__selected-flag {
    border-radius: 12px 0 0 12px !important;
    background-color: transparent !important;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-weight: 500;
    color: var(--text-main);
    margin-left: 8px;
}

.iti .form-control:focus {
    border-color: var(--primary-burgundy) !important;
    box-shadow: 0 0 0 4px rgba(137, 22, 82, 0.1) !important;
}

.product-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.product-mini-card img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.btn-burgundy {
    background-color: var(--primary-burgundy) !important;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-burgundy:hover {
    background-color: #6b1141 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(137, 22, 82, 0.2);
}

.input-group:focus-within {
    border-color: var(--primary-burgundy) !important;
    box-shadow: 0 0 0 3px rgba(137, 22, 82, 0.1);
}

.product-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
}

.product-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0 0;
}

/* Google Button */
.google-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.google-btn-modern:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

/* Payment Methods */
.payment-method-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option.active {
    border-color: var(--primary-burgundy);
    background: rgba(137, 22, 82, 0.04);
}

.coupon-section-modern {
    background: #fdf2f8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-row span:first-child {
    white-space: nowrap;
    margin-right: 15px;
}

.text-burgundy {
    color: var(--primary-burgundy) !important;
}

.btn-burgundy {
    background-color: var(--primary-burgundy) !important;
    border: none;
    color: white;
}

.activation-box {
    border: 1px solid var(--border-color);
    background: #fff;
    transition: all 0.3s ease;
}

.activation-box:hover {
    border-color: var(--primary-burgundy);
    box-shadow: 0 5px 15px rgba(137, 22, 82, 0.05);
}

.card-details-box {
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.btn-pay-professional {
    background: linear-gradient(135deg, #891652 0%, #6b1141 100%);
    color: #fff !important;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px rgba(137, 22, 82, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pay-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(137, 22, 82, 0.3);
    filter: brightness(1.1);
}

/* Hero Section (Blog-Style) */
.blog-hero {
    background: #fdf5f9;
    padding: 60px 0 50px;
    text-align: center;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(137, 22, 82, 0.05);
    margin-bottom: 0; /* Remove gap */
}

.blog-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
}

.blog-hero .breadcrumb-item, 
.blog-hero .breadcrumb-item a {
    color: #94a3b8;
    font-size: 13.5px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.blog-hero .breadcrumb-item.active {
    color: #891652;
    font-weight: 700;
}

.blog-hero .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 8px;
    color: #cbd5e1;
}

.blog-main-title {
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
    color: #891652;
    letter-spacing: -0.5px;
}

.checkout-container {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: #fdf5f9; /* Brand pink backdrop */
}

@media (max-width: 991px) {
    .blog-main-title {
        font-size: 32px;
    }
    .blog-hero {
        padding: 50px 0;
    }

    .professional-card{
        padding: 20px;
    }

    .checkout-container-row{
        gap: 15px;
    }
}
