/* 
 * Custom Styles for PrimaryCare Checkout
 * Curated HSL Color Scheme & Rich Typography
 */

:root {
    --pcc-primary: #1e3a8a; /* Deep Navy */
    --pcc-primary-rgb: 30, 58, 138;
    --pcc-primary-hover: #172554;
    --pcc-accent: #2563eb; /* Active Blue */
    --pcc-accent-light: #eff6ff; /* Soft Blue bg */
    --pcc-text-dark: #0f172a; /* Slate 900 */
    --pcc-text-muted: #64748b; /* Slate 500 */
    --pcc-bg-light: #f8fafc; /* Slate 50 */
    --pcc-border: #e2e8f0; /* Slate 200 */
    --pcc-card-bg: #ffffff;
    --pcc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --pcc-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --pcc-shadow-hover: 0 10px 25px rgba(30, 58, 138, 0.08);
    --pcc-font: 'Inter', system-ui, -apple-system, sans-serif;
}
a.pcc-btn-primary.pcc-btn-proceed {
    color: var(--pcc-card-bg);
}
ul.woocommerce-SavedPaymentMethods.wc-saved-payment-methods {
    padding-left: 0;
}
/* Base Wrapper Reset & Typography */
.pcc-checkout-wrapper {
    font-family: var(--pcc-font);
    color: var(--pcc-text-dark);
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------------------
   1. Multi-Step Progress Header
   ---------------------------------------------------- */
.pcc-steps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 10px 0;
}

.pcc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.pcc-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pcc-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--pcc-text-muted);
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pcc-step-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--pcc-border);
    margin: 0 16px;
    margin-top: -26px; /* Align line vertically with center of circles */
    transition: background-color 0.4s ease;
}

/* Completed Step Styling */
.pcc-step-completed .pcc-step-circle {
    background-color: var(--pcc-primary);
    border: 2px solid var(--pcc-primary);
    color: #ffffff;
}
.pcc-step-completed .pcc-step-label {
    color: var(--pcc-primary);
    font-weight: 600;
}

/* Active Step Styling */
.pcc-step-active .pcc-step-circle {
    background-color: var(--pcc-primary);
    border: 2px solid var(--pcc-primary);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.15);
    transform: scale(1.05);
}
.pcc-step-active .pcc-step-label {
    color: var(--pcc-primary);
    font-weight: 700;
}

/* Pending Step Styling */
.pcc-step-pending .pcc-step-circle {
    background-color: #ffffff;
    border: 2px solid var(--pcc-border);
    color: var(--pcc-text-muted);
}
.pcc-step-pending .pcc-step-label {
    color: var(--pcc-text-muted);
}

/* Completed Line Highlight */
.pcc-line-completed {
    background-color: var(--pcc-primary);
}

/* ----------------------------------------------------
   2. Sub-header & Navigation Links
   ---------------------------------------------------- */
.pcc-back-to-catalog {
    margin-bottom: 24px;
}

.pcc-back-to-catalog a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pcc-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pcc-back-to-catalog a:hover {
    color: var(--pcc-accent);
    transform: translateX(-2px);
}

.pcc-back-to-catalog svg {
    transition: transform 0.2s ease;
}

.pcc-cart-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--pcc-primary);
    margin: 0 0 28px 0;
    letter-spacing: -0.5px;
}

/* ----------------------------------------------------
   3. Main Grid Layout
   ---------------------------------------------------- */
.pcc-cart-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 900px) {
    .pcc-cart-layout-grid {
        grid-template-columns: 1.6fr 1fr;
    }
}

/* ----------------------------------------------------
   4. Left Column: Cart Items Cards
   ---------------------------------------------------- */
.pcc-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pcc-cart-item-card {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--pcc-shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pcc-cart-item-card:hover {
    border-color: rgba(30, 58, 138, 0.3);
    box-shadow: var(--pcc-shadow-hover);
    transform: translateY(-2px);
}

/* Item details styling */
.pcc-item-details {
    flex-grow: 1;
}

.pcc-item-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--pcc-primary);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.pcc-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pcc-item-title a:hover {
    color: var(--pcc-accent);
}

.pcc-item-meta-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pcc-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pcc-text-muted);
    font-size: 14px;
    font-weight: 500;
}

.pcc-meta-row.align-start {
    align-items: flex-start;
}

.pcc-meta-icon {
    color: var(--pcc-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    flex-shrink: 0;
}

.pcc-meta-icon.mt-2 {
    margin-top: 2px;
}

.pcc-meta-text {
    line-height: 1.4;
    color: #475569;
}

/* Right Area: Price and Deletion */
.pcc-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-height: 90px;
    flex-shrink: 0;
}

.pcc-item-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--pcc-text-dark);
}

.pcc-remove-btn {
    background: none;
    border: none;
    color: var(--pcc-text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.pcc-remove-btn:hover {
    color: #ef4444; /* Soft Red */
    background-color: #fef2f2;
    opacity: 1;
    transform: scale(1.1);
}

/* ----------------------------------------------------
   5. Right Column: Order Summary Card
   ---------------------------------------------------- */
.pcc-summary-card {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--pcc-shadow-sm);
}

.pcc-summary-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--pcc-text-dark);
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
}

.pcc-totals-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pcc-border);
    margin-bottom: 16px;
}

.pcc-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--pcc-text-muted);
    font-weight: 500;
}

.pcc-total-row .pcc-total-val {
    color: var(--pcc-text-dark);
    font-weight: 600;
}

.pcc-grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pcc-grand-total-row .pcc-total-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--pcc-primary);
}

.pcc-grand-total-row .pcc-total-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--pcc-accent);
}

/* Proceed button */
.pcc-action-button-wrapper {
    margin-bottom: 30px;
}

.pcc-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--pcc-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
}

.pcc-btn-primary:hover {
    background-color: var(--pcc-primary-hover);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
    transform: translateY(-1px);
}

.pcc-btn-primary:active {
    transform: translateY(1px);
}

.pcc-btn-primary svg {
    transition: transform 0.2s ease;
}

.pcc-btn-primary:hover svg {
    transform: translateX(4px);
}

/* Need Help Area */
.pcc-help-section {
    padding-top: 24px;
    border-top: 1px solid var(--pcc-border);
}

.pcc-help-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--pcc-text-muted);
    margin: 0 0 16px 0;
}

.pcc-help-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pcc-help-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pcc-text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.pcc-help-contact-row:hover {
    color: var(--pcc-accent);
}

.pcc-help-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--pcc-accent-light);
    color: var(--pcc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pcc-help-contact-row:hover .pcc-help-icon {
    background-color: var(--pcc-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.pcc-help-text {
    line-height: 1.2;
}

/* Empty states */
.pcc-empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--pcc-card-bg);
    border: 1px dashed var(--pcc-border);
    border-radius: 16px;
    width: 100%;
}

.pcc-empty-cart h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--pcc-primary);
    margin: 0 0 12px 0;
}

.pcc-empty-cart p {
    color: var(--pcc-text-muted);
    margin: 0 0 24px 0;
    font-size: 15px;
}

.pcc-empty-cart .pcc-btn-primary {
    max-width: 200px;
    margin: 0 auto;
}

/* Page Placeholder block for later steps */
.pcc-step-placeholder {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}
.pcc-step-placeholder h2 {
    color: var(--pcc-primary);
    margin-bottom: 12px;
}

/* Loading animations for AJAX operations */
.pcc-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pcc-loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.pcc-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--pcc-border);
    border-top: 3px solid var(--pcc-primary);
    border-radius: 50%;
    animation: pcc-spin 0.8s linear infinite;
}

@keyframes pcc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animating card removal */
.pcc-cart-item-card.removing {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: all 0.4s ease;
}

/* ----------------------------------------------------
   6. WooCommerce Billing Form & Input Styles (Step 2)
   ---------------------------------------------------- */
.pcc-billing-card {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--pcc-shadow-sm);
    margin-bottom: 24px;
}


/* Hide WooCommerce default Billing Details h3 inside our card, we have our own */
.pcc-billing-card .woocommerce-billing-fields > h3 {
    display: none !important;
}

/* Reset default customer details container */
#customer_details {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
}

/* Clean Input Styling */
.pcc-checkout-wrapper input[type="text"],
.pcc-checkout-wrapper input[type="email"],
.pcc-checkout-wrapper input[type="tel"],
.pcc-checkout-wrapper input[type="password"],
.pcc-checkout-wrapper select,
.pcc-checkout-wrapper textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid var(--pcc-border) !important;
    border-radius: 8px !important;
    font-family: var(--pcc-font) !important;
    font-size: 15px !important;
    color: var(--pcc-text-dark) !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    height: auto !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.pcc-checkout-wrapper input[type="text"]:focus,
.pcc-checkout-wrapper input[type="email"]:focus,
.pcc-checkout-wrapper input[type="tel"]:focus,
.pcc-checkout-wrapper input[type="password"]:focus,
.pcc-checkout-wrapper select:focus,
.pcc-checkout-wrapper textarea:focus {
    outline: none !important;
    border-color: var(--pcc-accent) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    background-color: #ffffff !important;
}

/* Labels and Form Row spacing */
.pcc-checkout-wrapper label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin-bottom: 6px !important;
    display: block !important;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Form Row spacing and defaults (Fallbacks) */
.pcc-checkout-wrapper .form-row {
    display: block !important; /* Override cansoft plugin's leaking global .form-row grid style */
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

.pcc-checkout-wrapper .form-row-first {
    width: 48% !important;
    float: left !important;
    clear: none !important;
}

.pcc-checkout-wrapper .form-row-last {
    width: 48% !important;
    float: right !important;
    clear: none !important;
}

.pcc-checkout-wrapper .form-row-wide {
    width: 100% !important;
    clear: both !important;
}

/* Modern Grid Layout for WooCommerce Billing Form */
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px 20px !important;
}

/* Explicit CSS visual order for fields to bypass WooCommerce locale DOM-reordering scripts */
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_first_name_field { order: 1 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_last_name_field { order: 2 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_company_field { order: 3 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_country_field { order: 4 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_city_field { order: 5 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_address_1_field { order: 6 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_address_2_field { order: 7 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_state_field { order: 8 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_postcode_field { order: 9 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_phone_field { order: 10 !important; }
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_email_field { order: 11 !important; }

.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper .form-row {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper {
    display: block !important;
    width: 100% !important;
}

.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper input[type="text"],
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper input[type="email"],
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper input[type="tel"],
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper input[type="password"],
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper select,
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 600px) {
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Full width fields (span 2) */
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_company_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_address_2_field {
        grid-column: span 2 !important;
    }
    
    /* Half width fields (span 1) */
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_first_name_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_last_name_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_country_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_city_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_state_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_postcode_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_phone_field,
    .pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper #billing_email_field {
        grid-column: span 1 !important;
    }
}

/* Premium Select2 overrides to match text inputs */
.pcc-checkout-wrapper .select2-container--default .select2-selection--single {
    border: 1px solid var(--pcc-border) !important;
    border-radius: 8px !important;
    height: 48px !important;
    padding: 0 !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
}

.pcc-checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--pcc-text-dark) !important;
    padding-left: 16px !important;
    padding-right: 36px !important;
    font-family: var(--pcc-font) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 46px !important;
}

.pcc-checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    width: 36px !important;
    right: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pcc-checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--pcc-text-muted) transparent transparent transparent !important;
    border-width: 6px 4px 0 4px !important;
}

.pcc-checkout-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--pcc-text-muted) transparent !important;
    border-width: 0 4px 6px 4px !important;
}

.pcc-checkout-wrapper .select2-container--default.select2-container--focus .select2-selection--single,
.pcc-checkout-wrapper .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--pcc-accent) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    outline: none !important;
}

.select2-dropdown {
    border: 1px solid var(--pcc-border) !important;
    border-radius: 8px !important;
    box-shadow: var(--pcc-shadow-md) !important;
    background-color: #ffffff !important;
    z-index: 99999 !important;
    overflow: hidden !important;
}

.select2-container--default .select2-results__option {
    padding: 10px 16px !important;
    font-family: var(--pcc-font) !important;
    font-size: 14px !important;
    color: var(--pcc-text-dark) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--pcc-primary) !important;
    color: #ffffff !important;
}

/* Disable WooCommerce clearfix pseudo-elements inside our checkout grid */
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper::before,
.pcc-checkout-wrapper .woocommerce-billing-fields__field-wrapper::after,
.pcc-checkout-wrapper .woocommerce-shipping-fields__field-wrapper::before,
.pcc-checkout-wrapper .woocommerce-shipping-fields__field-wrapper::after,
.pcc-checkout-wrapper .woocommerce-additional-fields__field-wrapper::before,
.pcc-checkout-wrapper .woocommerce-additional-fields__field-wrapper::after,
.pcc-checkout-wrapper .form-row::before,
.pcc-checkout-wrapper .form-row::after {
    display: none !important;
    content: none !important;
}

/* Fix Order Review Heading float issue from Twenty Twenty-One */
#order_review_heading {
    float: none !important;
    width: 100% !important;
    text-align: left !important;
    display: block !important;
    clear: both !important;
}

/* WooCommerce Order Review Table in Step 2 */
.pcc-summary-card table.shop_table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    border: none !important;
}

.pcc-summary-card table.shop_table th,
.pcc-summary-card table.shop_table td {
    padding: 12px 0 !important;
    border-top: none !important;
    border-bottom: 1px solid var(--pcc-border) !important;
    background: transparent !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.pcc-summary-card table.shop_table th {
    font-weight: 700 !important;
    color: var(--pcc-text-muted) !important;
}

.pcc-summary-card table.shop_table td.product-total,
.pcc-summary-card table.shop_table th.product-total {
    text-align: right !important;
}

.pcc-summary-card table.shop_table .cart-subtotal td,
.pcc-summary-card table.shop_table .order-total td {
    text-align: right !important;
    font-weight: 700 !important;
}

.pcc-summary-card table.shop_table .order-total td {
    color: var(--pcc-accent) !important;
    font-size: 18px !important;
}

/* Payments List */
.pcc-summary-card #payment ul.payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    border-bottom: 1px solid var(--pcc-border) !important;
}

.pcc-summary-card #payment ul.payment_methods li {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--pcc-border) !important;
    line-height: 1.4 !important;
}

.pcc-summary-card #payment ul.payment_methods li:last-child {
    border-bottom: none !important;
}

.pcc-summary-card #payment ul.payment_methods input {
    margin-right: 10px !important;
}

.pcc-summary-card #payment .payment_box {
    background-color: var(--pcc-bg-light) !important;
    border: 1px solid var(--pcc-border) !important;
    border-radius: 8px !important;
    padding: 12px !important;
    margin: 10px 0 0 0 !important;
    font-size: 13px !important;
    color: var(--pcc-text-muted) !important;
}

/* Place Order Button */
.pcc-summary-card #payment #place_order {
    background-color: var(--pcc-primary) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2) !important;
}

.pcc-summary-card #payment #place_order:hover {
    background-color: var(--pcc-primary-hover) !important;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* ----------------------------------------------------
   7. Step 2 (Billing & Payment) Styles
   ---------------------------------------------------- */

/* Back to Cart link */
.pcc-back-to-cart-step {
    margin-bottom: 24px;
}

.pcc-back-to-cart-step a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pcc-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pcc-back-to-cart-step a:hover {
    color: var(--pcc-accent);
    transform: translateX(-2px);
}

/* Billing Details Card */
/* (Base styles for .pcc-billing-card are now merged above in section 6) */

.pcc-billing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--pcc-border);
    padding-bottom: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.pcc-billing-header .pcc-section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--pcc-primary);
}

.pcc-required-notice {
    font-size: 12px;
    color: var(--pcc-text-muted);
}

/* Company toggle styles removed */

/* Participant Information Card Wrapper */
.pcc-participant-card-wrapper {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--pcc-shadow-sm);
    margin-bottom: 24px;
}

.pcc-participant-card-wrapper .pcc-section-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--pcc-primary);
    border-bottom: 2px solid var(--pcc-border);
    padding-bottom: 10px;
}

/* Info Banner */
.pcc-info-banner {
    display: flex;
    gap: 14px;
    background-color: #f0f6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.pcc-info-icon {
    color: var(--pcc-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pcc-info-text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #1e3a8a;
    font-weight: 500;
}

/* Participant Cards List */
.pcc-participant-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pcc-participant-card {
    background-color: #ffffff;
    border: 1px solid var(--pcc-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pcc-shadow-sm);
}

.pcc-participant-card-header {
    background-color: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid var(--pcc-border);
    display: flex;
    align-items: center;
    gap: 14px;
}

.pcc-participant-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--pcc-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pcc-participant-title {
    font-size: 14px;
    color: var(--pcc-text-dark);
    line-height: 1.4;
}

.pcc-participant-title strong {
    color: var(--pcc-primary);
}

.pcc-participant-card-fields {
    padding: 20px;
}

.pcc-participant-field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 600px) {
    .pcc-participant-field-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Additional Info Card */
.pcc-additional-info-card {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--pcc-shadow-sm);
}

.pcc-additional-info-card .pcc-section-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--pcc-primary);
    border-bottom: 2px solid var(--pcc-border);
    padding-bottom: 10px;
}

/* Right Column: Your Order Preview Items List */
.pcc-checkout-items-preview {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.pcc-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed var(--pcc-border);
    gap: 16px;
}

.pcc-preview-item:last-child {
    border-bottom: none;
}

.pcc-preview-item-info {
    flex-grow: 1;
}

.pcc-preview-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--pcc-text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.pcc-preview-item-meta {
    font-size: 12px;
    color: var(--pcc-text-muted);
    font-weight: 500;
}

.pcc-preview-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--pcc-text-dark);
    flex-shrink: 0;
}

/* Payment Methods Area Wrapper */
.pcc-checkout-payment-wrapper {
    margin-top: 24px;
}

.pcc-payment-method-card {
    background-color: var(--pcc-card-bg);
    border: 1px solid var(--pcc-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--pcc-shadow-sm);
}

.pcc-payment-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pcc-payment-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--pcc-text-dark) !important;
    margin: 0 !important;
}

.pcc-payment-logos {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pcc-payment-header-row .pcc-payment-logos .pcc-payment-logo-img {
    height: 20px !important;
    width: auto;
    object-fit: contain;
    border-radius: 3px;
}

/* Secure checkout text banner */
.pcc-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 20px;
    color: #15803d; /* Dark Green */
}

.pcc-secure-lock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcc-secure-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pcc-cancellation-policy-card {
    background-color: #fffbeb !important; /* Soft warm yellow/orange bg */
    border: 1px solid #fde68a !important; /* Thin amber border */
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin: 24px 0 !important;
    box-shadow: none !important;
}

.pcc-policy-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #9a3412 !important; /* Brown title */
    margin-bottom: 8px !important;
}

.pcc-policy-icon {
    color: #b45309 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pcc-policy-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.pcc-policy-text {
    margin: 0 !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: #9a3412 !important; /* Brown text */
    font-weight: 500 !important;
}

/* Terms checkbox wrapper and layout */
.woocommerce-terms-and-conditions-wrapper {
    margin: 20px 0 !important;
    display: block !important;
    text-align: left !important;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.woocommerce-terms-and-conditions-wrapper label.checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
    margin: 3px 0 0 0 !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid var(--pcc-border) !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    background-color: #ffffff !important;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #475569 !important; /* Muted Slate color */
    line-height: 1.4 !important;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text a {
    color: #2563eb !important; /* Blue color for link */
    text-decoration: underline !important;
    font-weight: 600 !important;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text a:hover {
    color: #1d4ed8 !important;
}

.woocommerce-terms-and-conditions-wrapper .required {
    color: #ef4444 !important; /* Red color for asterisk */
    font-weight: 700 !important;
    text-decoration: none !important;
    border: none !important;
}

/* What Happens After I Pay Styling */
.pcc-after-payment-wrapper {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin: 24px 0 !important;
}

.pcc-after-payment-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
}

.pcc-after-payment-check {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background-color: #dcfce7 !important;
    color: #15803d !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.pcc-after-payment-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important; /* Dark Slate */
}

.pcc-after-payment-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.pcc-after-payment-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.pcc-badge {
    display: inline-block !important;
    padding: 4px 10px !important;
    border-radius: 100px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}

.pcc-badge-rc {
    background-color: #d1fae5 !important; /* soft green bg */
    color: #065f46 !important; /* dark green text */
}

.pcc-badge-ws {
    background-color: #ffedd5 !important; /* soft orange bg */
    color: #9a3412 !important; /* dark orange text */
}

.pcc-badge-rc-blended {
    background-color: #dbeafe !important; /* soft blue bg */
    color: #1e40af !important; /* dark blue text */
}

.pcc-after-card-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.4 !important;
    width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.pcc-after-card-list {
    margin: 0 !important;
    padding-left: 18px !important;
    list-style-type: disc !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.pcc-after-card-list li {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #475569 !important; /* Slate 600 */
    font-weight: 500 !important;
}

/* Place Order Submit Wrapper styling */
.pcc-place-order-row {
    margin-top: 20px;
    width: 100%;
}

.pcc-place-order-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background-color: var(--pcc-primary) !important;
    color: #ffffff !important;
    width: 100% !important;
    padding: 16px !important;
    border-radius: 12px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.pcc-place-order-submit:hover {
    background-color: var(--pcc-primary-hover) !important;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35) !important;
    transform: translateY(-1px) !important;
}

.pcc-btn-lock {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Help footer details under the submit button */
.pcc-payment-help-footer {
    border-top: 1px solid var(--pcc-border) !important;
    padding-top: 24px !important;
    margin-top: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    text-align: center !important;
    width: 100% !important;
}

.pcc-help-question {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
}

.pcc-help-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.pcc-help-link:hover {
    color: var(--pcc-accent) !important;
}

.pcc-help-icon-sm {
    width: 18px !important;
    height: 18px !important;
    color: #475569 !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pcc-help-icon-sm svg {
    width: 18px !important;
    height: 18px !important;
}

.pcc-help-link:hover .pcc-help-icon-sm {
    color: var(--pcc-accent) !important;
    background: transparent !important;
}

/* Combined Sidebar Card Overrides */
.pcc-sidebar-combined-card {
    display: flex !important;
    flex-direction: column !important;
}

.pcc-sidebar-combined-card .pcc-order-review-section {
    padding-bottom: 12px !important;
}

.pcc-sidebar-combined-card .pcc-payment-method-card {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-top: 24px !important;
    border-top: 1px solid var(--pcc-border) !important;
    padding-top: 30px !important;
}

/* ----------------------------------------------------
   8. Thank You / Order Confirmation Page (Step 4)
   ---------------------------------------------------- */
.pcc-thankyou-wrapper {
    max-width: 1000px !important;
}

.pcc-thankyou-confirmed-banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 24px !important;
    margin-bottom: 40px !important;
}

.pcc-confirmed-icon-circle {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background-color: #dcfce7 !important;
    color: #10b981 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12) !important;
}

.pcc-confirmed-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--pcc-text-dark) !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.5px !important;
}

.pcc-confirmed-subtitle {
    font-size: 15.5px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    margin: 0 0 20px 0 !important;
    max-width: 550px !important;
    line-height: 1.5 !important;
}

.pcc-confirmed-order-pill {
    display: inline-block !important;
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    padding: 6px 16px !important;
    border-radius: 100px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
}

.pcc-thankyou-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    align-items: start !important;
}

@media (min-width: 900px) {
    .pcc-thankyou-grid {
        grid-template-columns: 1.5fr 1fr !important;
    }
}

.pcc-thankyou-card {
    background-color: var(--pcc-card-bg) !important;
    border: 1px solid var(--pcc-border) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: var(--pcc-shadow-sm) !important;
}

.pcc-thankyou-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border-bottom: 2px solid var(--pcc-border) !important;
    padding-bottom: 16px !important;
    margin-bottom: 28px !important;
}

.pcc-thankyou-card-icon {
    color: var(--pcc-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pcc-thankyou-card-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--pcc-text-dark) !important;
    margin: 0 !important;
}

.pcc-thankyou-card-title-sidebar {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--pcc-text-dark) !important;
    margin: 0 0 24px 0 !important;
    border-bottom: 2px solid var(--pcc-border) !important;
    padding-bottom: 16px !important;
    text-align: left !important;
}

.pcc-thankyou-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
}

.pcc-thankyou-step-item {
    display: flex !important;
    gap: 20px !important;
    align-items: flex-start !important;
}

.pcc-thankyou-step-number-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: #eff6ff !important;
    color: #2563eb !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.pcc-thankyou-step-content {
    flex-grow: 1 !important;
    text-align: left !important;
}

.pcc-thankyou-step-title-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.pcc-thankyou-step-title {
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: var(--pcc-text-dark) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.4 !important;
}

.pcc-thankyou-step-title-row .pcc-thankyou-step-title {
    margin-bottom: 0 !important;
}

.pcc-thankyou-step-text {
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.pcc-thankyou-step-bullets {
    margin: 0 !important;
    padding-left: 18px !important;
    list-style-type: disc !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.pcc-thankyou-step-bullets li {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #475569 !important;
    font-weight: 500 !important;
}

.pcc-thankyou-print-row {
    margin-top: 36px !important;
    padding-top: 24px !important;
    border-top: 1px solid var(--pcc-border) !important;
    text-align: left !important;
}

.pcc-btn-print {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background-color: #0f172a !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1) !important;
}

.pcc-btn-print:hover {
    background-color: #1e293b !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2) !important;
    transform: translateY(-1px) !important;
}

.pcc-btn-print:active {
    transform: translateY(1px) !important;
}

.pcc-thankyou-courses-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.pcc-thankyou-course-detail-card {
    background-color: #f8fafc !important;
    border: 1px solid var(--pcc-border) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    text-align: left !important;
}

.pcc-thankyou-course-detail-name {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: var(--pcc-text-dark) !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.4 !important;
}

.pcc-thankyou-course-detail-metadata {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.pcc-thankyou-detail-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: #475569 !important;
    font-weight: 500 !important;
}

.pcc-thankyou-detail-icon {
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.pcc-thankyou-participant-divider {
    height: 1px !important;
    background-color: var(--pcc-border) !important;
    margin: 16px 0 !important;
}

.pcc-thankyou-participant-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.pcc-thankyou-participant-title {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #64748b !important;
}

.pcc-thankyou-participant-name {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--pcc-text-dark) !important;
}

.pcc-thankyou-total-divider {
    height: 1px !important;
    background-color: var(--pcc-border) !important;
    margin: 24px 0 !important;
}

.pcc-thankyou-totals-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.pcc-thankyou-totals-label {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #475569 !important;
}

.pcc-thankyou-totals-value {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--pcc-accent) !important;
}

.pcc-thankyou-failed-card {
    text-align: center !important;
    padding: 30px !important;
    border: 1px solid #fecaca !important;
    background-color: #fef2f2 !important;
    border-radius: 16px !important;
    margin-top: 24px !important;
}

.pcc-thankyou-empty-order {
    text-align: center !important;
    padding: 40px 20px !important;
    border: 1px dashed var(--pcc-border) !important;
    border-radius: 16px !important;
    background-color: var(--pcc-card-bg) !important;
    margin-top: 24px !important;
}


