/* Baita Checkout - Premium Cart Page Stylesheet */

.bc-cart-page-wrapper {
    width: 100%;
    min-height: 80vh;
    padding-top: var(--bc-cart-padding-top, 40px) !important;
    padding-right: var(--bc-cart-padding-right, 24px) !important;
    padding-bottom: var(--bc-cart-padding-bottom, 40px) !important;
    padding-left: var(--bc-cart-padding-left, 24px) !important;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1E293B;
}

.bc-cart-page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header Area */
.bc-cart-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.bc-cart-page-header h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    color: #0F172A;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.bc-cart-btn-back-shop {
    color: #475569 !important;
    background: #F8FAFC !important;
    border: 1.5px solid #E2E8F0 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 10px 18px !important;
    border-radius: 99px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.bc-cart-btn-back-shop svg {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.bc-cart-btn-back-shop:hover {
    color: var(--bc-cart-primary) !important;
    background: #ffffff !important;
    border-color: var(--bc-cart-primary) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
}

.bc-cart-btn-back-shop:hover svg {
    transform: translateX(-3px) !important;
}

/* Free Shipping Progress Bar */
.bc-cart-shipping-progress-wrap {
    background: #ffffff;
    border-radius: var(--bc-cart-radius, 16px) !important;
    padding: 20px 24px;
    margin-bottom: var(--bc-cart-gap, 30px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
}

.bc-shipping-msg {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.bc-shipping-msg strong {
    color: #0F172A;
}

.bc-shipping-msg.success {
    color: #059669;
    font-weight: 600;
}

.bc-shipping-bar-container {
    height: 8px;
    background: #E2E8F0;
    border-radius: 99px;
    overflow: hidden;
    width: 100%;
}

.bc-shipping-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bc-cart-accent) 0%, #34D399 100%);
    border-radius: 99px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid Layout */
.bc-cart-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--bc-cart-gap, 30px);
    align-items: start;
}

@media (max-width: 991px) {
    .bc-cart-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Left Column: Items Card */
.bc-cart-items-card {
    background: #ffffff;
    border-radius: var(--bc-cart-radius, 16px) !important;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    padding: 8px 0;
}

.bc-cart-page-item {
    display: grid;
    grid-template-columns: 90px 1fr 130px 100px 48px;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #F1F5F9;
    transition: background-color 0.2s ease;
}

.bc-cart-page-item:last-child {
    border-bottom: none;
}

.bc-cart-page-item:hover {
    background-color: transparent;
}

@media (max-width: 600px) {
    .bc-cart-page-item {
        grid-template-columns: 80px 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 12px;
        padding: 16px;
    }
    
    .bc-cart-item-img-col {
        grid-column: 1;
        grid-row: 1;
    }
    
    .bc-cart-item-desc-col {
        grid-column: 2;
        grid-row: 1;
    }
    
    .bc-cart-item-actions-col {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }
    
    .bc-cart-item-qty-col {
        grid-column: 1 / span 3;
        grid-row: 2;
        justify-self: start;
        margin-top: 4px;
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .bc-cart-item-total-col {
        grid-column: 1 / span 3;
        grid-row: 3;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        border-top: 1px dashed #E2E8F0;
        margin-top: 4px;
        padding-right: 0 !important;
    }
    
    .bc-cart-item-total-col::before {
        content: "Subtotal do item";
        font-size: 11px;
        font-weight: 700;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .bc-cart-item-total-val {
        font-size: 15px !important;
        font-weight: 800 !important;
    }
}

.bc-cart-item-img-col img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.bc-cart-item-desc-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bc-cart-item-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.bc-cart-item-name a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bc-cart-item-name a:hover {
    color: var(--bc-cart-accent);
}

.bc-cart-item-attributes {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

.bc-cart-item-attributes p {
    margin: 2px 0;
}

.bc-cart-item-unit-price {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}

/* Quantity Stepper */
.bc-cart-qty-stepper {
    display: flex !important;
    align-items: center !important;
    border: 1.5px solid #CBD5E1 !important;
    border-radius: 99px !important;
    background: #ffffff !important;
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    overflow: hidden !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.bc-cart-qty-btn {
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 100% !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    line-height: 1 !important;
}

.bc-cart-qty-btn:hover {
    background-color: #F1F5F9 !important;
    color: #0F172A !important;
}

.bc-cart-qty-input {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;
    box-shadow: none !important;
}

.bc-cart-qty-input::-webkit-outer-spin-button,
.bc-cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.bc-cart-item-total-val {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
}

.bc-cart-item-remove-trigger {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    color: #94A3B8 !important;
    cursor: pointer !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.bc-cart-item-remove-trigger:hover {
    background-color: #FFE4E6 !important;
    color: #E11D48 !important;
}

/* Right Column: Summary Card */
.bc-cart-summary-card {
    background: #ffffff;
    border-radius: var(--bc-cart-radius, 16px) !important;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    padding: 24px;
    position: sticky;
    top: 24px;
}

.bc-cart-summary-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #0F172A;
    border-bottom: 1.5px solid #F1F5F9;
    padding-bottom: 12px;
}

.bc-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.bc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.bc-summary-row .value {
    color: #0F172A;
    font-weight: 700;
}

.bc-summary-row.total-row {
    font-size: 18px;
    border-top: 1.5px solid #F1F5F9;
    padding-top: 16px;
    color: #0F172A;
    font-weight: 800;
}

.bc-summary-row.total-row .value {
    font-size: 22px;
    color: var(--bc-cart-primary);
}

/* Coupon Row Styling */
.bc-summary-row.coupon-row {
    background: #ECFDF5;
    border: 1px dashed #34D399;
    border-radius: 8px;
    padding: 8px 12px;
}

.coupon-label {
    display: flex;
    align-items: center;
    color: #065F46;
    font-weight: 600;
}

.bc-remove-coupon-btn {
    background: transparent;
    border: none;
    color: #059669;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
    margin-left: 6px;
    padding: 0;
    line-height: 1;
}

.bc-remove-coupon-btn:hover {
    color: #D11A2A;
}

.coupon-value {
    color: #047857 !important;
}

/* Coupon Form */
.bc-cart-coupon-form-wrap {
    margin-bottom: 24px;
    border-bottom: 1.5px solid #F1F5F9;
    padding-bottom: 20px;
}

.bc-coupon-input-group {
    display: flex;
    gap: 8px;
}

#bc-cart-coupon-code {
    flex: 1;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}

#bc-cart-coupon-code:focus {
    border-color: var(--bc-cart-accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#bc-cart-apply-coupon-btn {
    border: 1.5px solid #CBD5E1 !important;
    border-radius: calc(var(--bc-cart-radius, 16px) - 6px) !important;
    background: #F8FAFC !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 0 16px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    height: auto !important;
}

#bc-cart-apply-coupon-btn:hover {
    background: #E2E8F0 !important;
    color: #0F172A !important;
}

.bc-coupon-feedback-message {
    font-size: 12px !important;
    margin-top: 6px !important;
    font-weight: 500 !important;
}

.bc-coupon-feedback-message.success {
    color: #10B981 !important;
}

.bc-coupon-feedback-message.error {
    color: #EF4444 !important;
}

/* CTA Checkout Button */
.bc-btn-proceed-checkout {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--bc-btn-bg, linear-gradient(135deg, var(--bc-cart-primary) 0%, var(--bc-cart-accent) 100%)) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px !important;
    border-radius: calc(var(--bc-cart-radius, 16px) - 4px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
}

.bc-btn-proceed-checkout:hover {
    background: var(--bc-btn-hover-bg, var(--bc-btn-bg, linear-gradient(135deg, var(--bc-cart-primary) 0%, var(--bc-cart-accent) 100%))) !important;
    filter: var(--bc-btn-hover-filter, brightness(1.08)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35) !important;
    color: #ffffff !important;
}

.bc-btn-proceed-checkout:active {
    transform: translateY(0) !important;
}

/* Security badges styling */
.bc-cart-security-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    border-top: 1.5px solid #F1F5F9;
    padding-top: 20px;
}

.bc-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.bc-badge-item svg {
    color: #94A3B8;
    flex-shrink: 0;
}

/* Empty Cart Page State */
.bc-cart-empty-page-state {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
}

.bc-cart-empty-page-state .bc-empty-icon {
    background: #FAF5FF;
    color: var(--bc-cart-accent);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.bc-cart-empty-page-state h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #0F172A;
}

.bc-cart-empty-page-state p {
    font-size: 15px;
    color: #64748B;
    margin: 0 0 30px 0;
}

.bc-btn-continue-shopping-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-cart-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bc-btn-continue-shopping-empty:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Loading overlays */
.bc-cart-page-container.loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Style theme's page title for premium aesthetics */
body.woocommerce-cart h1.entry-title,
body.woocommerce-cart h1.page-title,
body.woocommerce-cart .page-title-default h1,
body.woocommerce-checkout h1.entry-title,
body.woocommerce-checkout h1.page-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    font-weight: 800 !important;
    font-size: 32px !important;
    color: #0F172A !important;
    letter-spacing: -0.8px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

/* Hide duplicate inner titles or headings that the theme or WooCommerce might try to inject inside our custom container */
.bc-cart-page-wrapper h1.page-title,
.bc-cart-page-wrapper h1.entry-title,
.bc-cart-page-wrapper .page-title,
.bc-cart-page-wrapper .entry-title,
.bc-cart-page-wrapper h2.page-title {
    display: none !important;
}

/* Aggressive Theme Reset & Isolation */
.bc-cart-page-wrapper *,
.bc-cart-page-wrapper *::before,
.bc-cart-page-wrapper *::after {
    box-sizing: border-box !important;
}

.bc-cart-page-wrapper select,
.bc-cart-page-wrapper input,
.bc-cart-page-wrapper button,
.bc-cart-page-wrapper textarea {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}

/* Force theme typography alignment in the cart scope */
body.woocommerce-cart h1,
body.woocommerce-cart h2,
body.woocommerce-cart h3,
body.woocommerce-cart h4,
body.woocommerce-cart h5,
body.woocommerce-cart h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif !important;
}

/* Spacing safety margin on mobile to avoid WhatsApp / chat floating button overlaps */
@media (max-width: 768px) {
    .bc-cart-page-wrapper {
        padding-bottom: 120px !important;
    }
}

/* ==========================================================================
   Premium Product Details Modal popup
   ========================================================================== */

/* Body scroll lock when modal is active */
body.bc-modal-open {
    overflow: hidden !important;
}

/* Modal Backdrop */
.bc-modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 999999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.bc-modal-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Modal Box / Dialog */
.bc-modal-dialog {
    background: #ffffff !important;
    width: 100% !important;
    max-width: 680px !important;
    border-radius: var(--bc-cart-radius, 20px) !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transform: scale(0.9) translateY(20px) !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    max-height: 90vh !important;
}

.bc-modal-backdrop.active .bc-modal-dialog {
    transform: scale(1) translateY(0) !important;
}

/* Modal Header */
.bc-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 28px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    background: #ffffff !important;
}

.bc-modal-header h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #0F172A !important;
    letter-spacing: -0.4px !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}

.bc-modal-close {
    background: #F1F5F9 !important;
    border: none !important;
    color: #64748B !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.bc-modal-close:hover {
    background: #FFE4E6 !important;
    color: #E11D48 !important;
    transform: rotate(90deg) !important;
}

/* Modal Body */
.bc-modal-body {
    padding: 28px !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    max-height: calc(90vh - 80px) !important;
    box-sizing: border-box !important;
}

/* Product Info Block Inside Modal */
.bc-modal-item-product-info {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding-bottom: 24px !important;
    border-bottom: 1.5px dashed #E2E8F0 !important;
    margin-bottom: 24px !important;
}

.bc-modal-item-thumbnail img {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: 1.5px solid #E2E8F0 !important;
    background: #F8FAFC !important;
}

.bc-modal-item-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.bc-modal-product-name {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #0F172A !important;
    line-height: 1.4 !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}

.bc-modal-product-qty {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #64748B !important;
    background: #F1F5F9 !important;
    padding: 3px 10px !important;
    border-radius: 99px !important;
    align-self: flex-start !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}

/* Trigger Button styling inside Cart Card */
.bc-cart-item-details-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #F8FAFC !important;
    color: var(--bc-cart-primary) !important;
    border: 1.5px solid #E2E8F0 !important;
    padding: 8px 16px !important;
    border-radius: 99px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-top: 6px !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    width: fit-content !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}

.bc-cart-item-details-trigger svg {
    flex-shrink: 0 !important;
}

.bc-cart-item-details-trigger:hover {
    background: #ffffff !important;
    border-color: var(--bc-cart-primary) !important;
    box-shadow: 0 4px 12px rgba(var(--bc-cart-primary-rgb), 0.08) !important;
    transform: translateY(-1px) !important;
}

.bc-cart-item-details-trigger:active {
    transform: translateY(0) !important;
}

/* Flat Definition List Formatting inside Modal */
.bc-modal-fields-grid dl.variation {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #E2E8F0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.bc-modal-fields-grid dl.variation dt {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #64748B !important;
    letter-spacing: 0.05em !important;
    padding: 14px 20px 4px 20px !important;
    background: #F8FAFC !important;
    margin: 0 !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    border-bottom: none !important;
}

.bc-modal-fields-grid dl.variation dd {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    padding: 0 20px 14px 20px !important;
    background: #F8FAFC !important;
    border-bottom: 1px solid #E2E8F0 !important;
    margin: 0 !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}

.bc-modal-fields-grid dl.variation dd:last-of-type {
    border-bottom: none !important;
}

.bc-modal-fields-grid dl.variation dd p {
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Spacious Grid for Desktop */
@media (min-width: 768px) {
    .bc-modal-fields-grid dl.variation {
        display: grid !important;
        grid-template-columns: 200px 1fr !important;
        background: #ffffff !important;
    }

    .bc-modal-fields-grid dl.variation dt {
        background: #ffffff !important;
        padding: 18px 24px !important;
        border-bottom: 1px solid #F1F5F9 !important;
        font-size: 11px !important;
        display: flex !important;
        align-items: center !important;
    }

    .bc-modal-fields-grid dl.variation dd {
        background: #ffffff !important;
        padding: 18px 24px !important;
        border-bottom: 1px solid #F1F5F9 !important;
        font-size: 14px !important;
        display: flex !important;
        align-items: center !important;
    }

    .bc-modal-fields-grid dl.variation dt:last-of-type,
    .bc-modal-fields-grid dl.variation dd:last-of-type {
        border-bottom: none !important;
    }
}


