/* Archivo: pressvik-booking/assets/css/pressvik-booking-utils.css */

/* ========================================================
   FRONTEND BOOKING SYSTEM UTILITIES
   ======================================================== */
.cp-gdpr-link { color: var(--cp-main) !important; font-weight: 700; text-decoration: none; border-bottom: 1px dashed var(--cp-main); transition: all 0.2s ease; }
.cp-gdpr-link:hover { color: var(--cp-main-hover) !important; border-bottom-style: solid; }
.cp-app-container { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #1e293b; max-width: 1200px; margin: 0 auto; line-height: 1.6; }

.cp-type-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; padding-bottom: 5px; }
@media (max-width: 600px) { .cp-type-tabs { flex-wrap: nowrap; justify-content: space-between; overflow: hidden; padding: 0; gap: 5px; } }
.cp-tab { padding: 12px 20px; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px; cursor: pointer; font-weight: 700; color: #64748b; transition: all 0.3s; white-space: nowrap; flex-shrink: 0; font-size: 0.95rem; text-align: center; }
@media (max-width: 600px) { .cp-tab { flex: 1; padding: 10px 5px; font-size: clamp(0.65rem, 2.5vw, 0.85rem); white-space: normal; display: flex; align-items: center; justify-content: center; line-height: 1.2; min-width: 0; } }
.cp-tab:hover { border-color: #cbd5e1; color: #0f172a; }
.cp-tab.active { background: var(--cp-main); border-color: var(--cp-main); color: #ffffff; box-shadow: none; } 

.cp-search-box { background: #ffffff; padding: 25px 20px; border-radius: 20px; box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05); margin-bottom: 50px; border: 1px solid #f1f5f9; box-sizing: border-box; }
@media (min-width: 768px){ .cp-search-box { padding: 30px; } }
.cp-search-form { display: grid; grid-template-columns: 1fr; gap: 15px; align-items: end; transition: all 0.3s ease; }
@media (min-width: 768px) { .cp-search-form { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; } } 

.cp-form-group { display: flex; flex-direction: column; gap: 8px; transition: all 0.3s ease; min-width: 0; }
.cp-form-group label { font-weight: 700; color: #475569; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.cp-input { height: 52px; padding: 0 15px; border: 2px solid #e2e8f0; border-radius: 12px; outline: none; transition: border-color 0.3s ease; width: 100%; box-sizing: border-box; font-size: 1rem; background: #ffffff; color: #0f172a; font-weight: 600; cursor: pointer; display: flex; align-items: center; font-family: inherit; }
.cp-input::placeholder { color: #94a3b8; font-weight: 500; }
.cp-input:disabled, .cp-input[readonly] { background: #f8fafc; color: #94a3b8; cursor: not-allowed; }
input.cp-input.flatpickr-input[readonly] { background: #ffffff; color: #0f172a; cursor: pointer; }
.cp-input:focus, .cp-input:hover { border-color: var(--cp-main); }

.cp-btn-search { background: var(--cp-main); color: white; border: none; padding: 0 20px; border-radius: 12px; font-weight: 800; font-size: 1rem; transition: all 0.3s ease; height: 52px; display: flex; justify-content: center; align-items: center; letter-spacing: 0.5px; width: 100%; cursor: pointer; box-sizing: border-box; }
.cp-btn-search:hover:not(:disabled) { background: var(--cp-main-hover); transform: translateY(-2px); box-shadow: 0 8px 20px var(--cp-main-light); }
.cp-btn-search:disabled { background: #cbd5e1; cursor: not-allowed; color: #94a3b8; }

.cp-loader { display: none; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-bottom-color: #fff; border-radius: 50%; animation: cp-spin 0.8s linear infinite; margin-right: 10px; }
@keyframes cp-spin { 100% { transform: rotate(360deg); } }

.flatpickr-calendar { box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important; border: 1px solid #e2e8f0 !important; border-radius: 16px !important; padding: 15px !important; width: 330px !important; box-sizing: border-box !important; }
.flatpickr-days { width: 100% !important; }
.dayContainer { width: 100% !important; min-width: 100% !important; max-width: 100% !important; }
.flatpickr-months .flatpickr-month { color: #0f172a !important; fill: #0f172a !important; }
.flatpickr-current-month { font-weight: 800 !important; font-size: 1.2rem !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--cp-main) !important; border-color: var(--cp-main) !important; font-weight: bold; }

#cp_results_container { min-height: 200px; transition: opacity 0.3s ease; }
.cp-locked-section { pointer-events: none; opacity: 0.5; filter: grayscale(40%); transition: all 0.3s ease; user-select: none; }
.cp-section-title { font-size: 1.6rem; margin-bottom: 25px; color: #0f172a; font-weight: 900; letter-spacing: -0.5px; }

.cp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 45px; }
@media (min-width: 768px) { .cp-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .cp-grid { grid-template-columns: repeat(4, 1fr); } } 

.cp-card { border: 2px solid #e2e8f0; border-radius: 14px; cursor: pointer; transition: all 0.3s ease; background: #ffffff; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.cp-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: transparent; transition: background 0.3s; }
.cp-card:hover { border-color: #cbd5e1; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05); transform: translateY(-2px); } 
.cp-card.selected { border-color: var(--cp-main); background-color: var(--cp-main-light); } 
.cp-card.selected::before { background: var(--cp-main); }
.cp-card input { display: none; }
.cp-card.highlighted-promo { border-color: var(--cp-main); box-shadow: 0 0 10px var(--cp-main-light); }
.cp-card-promo-tag { font-size: 0.65rem; font-weight: 800; color: var(--cp-main); text-transform: uppercase; margin-bottom: 5px; display: inline-block; background: var(--cp-main-light); padding: 3px 6px; border-radius: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; box-sizing: border-box;}
.cp-card-content { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; overflow: hidden; }
@media (min-width: 768px) { .cp-card-content { padding: 20px; } }
.cp-card-title { font-weight: 800; font-size: clamp(0.85rem, 3vw, 1.1rem); color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } 
.cp-card-subtitle { color: #64748b; font-size: clamp(0.7rem, 2vw, 0.85rem); font-weight: 500; display: block; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-card-price { color: #0f172a; font-weight: 900; font-size: clamp(1.1rem, 4vw, 1.35rem); margin-top: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.cp-card-price span { font-size: 0.6em; font-weight: 600; color: #64748b; text-transform: uppercase; }
.cp-card-price.discounted { color: #10b981; }
.cp-card-price s { font-size: 0.75rem; color: #94a3b8; font-weight: normal; margin-right: 5px; }

.cp-thumb-wrapper { margin: 0 15px 15px 15px; height: 120px; border-radius: 12px; overflow: hidden; display: flex; flex-shrink: 0; position: relative; }
@media (min-width: 768px) { .cp-thumb-wrapper { margin: 0 20px 20px 20px; height: 140px; } }
.cp-thumb { width: 100%; height: 100%; }

.cp-modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); justify-content: center; align-items: center; padding: 15px; box-sizing: border-box; } 
.cp-modal-card { background: #ffffff; border-radius: 20px; max-width: 900px; width: 100%; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 25px 50px rgba(0,0,0,0.15); position: relative; }
.cp-modal-close { position: absolute; top: 15px; right: 15px; color: #ffffff; background: var(--cp-main); font-size: 26px; font-weight: bold; cursor: pointer; transition: all 0.2s ease; line-height: 0; padding-bottom: 3px; z-index: 100000; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 4px 10px var(--cp-main-light); }

.cp-modal-left { position: relative; width: 100%; flex-shrink: 0; background: #ffffff; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid #e2e8f0; height: 40vh; }
.cp-modal-slide { width: 100%; height: 100% !important; object-fit: cover; display: none; }
.cp-modal-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.9); color: #000000; border: none; font-size: 1rem; width: 36px; height: 36px; cursor: pointer; border-radius: 50%; z-index: 10; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.cp-modal-nav:hover { background: #ffffff !important; color: var(--cp-main) !important; }
#cp_modal_prev { left: 15px; }
#cp_modal_next { right: 15px; }

.cp-modal-right { padding: 25px; overflow-y: auto; flex-grow: 1; background: #ffffff; }
.cp-modal-desc-box { font-size: 0.95rem; color: #475569; margin-top: 15px; line-height: 1.6; }

@media (min-width: 768px) { 
    .cp-modal-card { flex-direction: row; min-height: 50vh; }
    .cp-modal-left { width: 50%; max-height: 90vh; height: auto; border-bottom: none; border-right: 1px solid #e2e8f0; } 
    .cp-modal-slide { max-height: 90vh; height: auto; } 
    .cp-modal-right { width: 50%; padding: 40px; } 
}

.cp-room-group { background: #f8fafc; padding: 20px 15px; border-radius: 16px; margin-bottom: 35px; border: 1px solid #e2e8f0; }
@media (min-width: 768px) { .cp-room-group { padding: 30px; border-radius: 20px; } }
.cp-room-group-title { margin: 0 0 20px 0; font-size: 1.15rem; color: #1e293b; font-weight: 800; }

.cp-checkout { background: #ffffff; padding: 25px 20px; border-radius: 20px; border: 1px solid #e2e8f0; box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05); margin-top: 50px; box-sizing: border-box; }
@media (min-width: 768px) { .cp-checkout { padding: 40px; } }
.cp-btn-submit { display: flex; justify-content: center; align-items: center; padding: 18px; background: #e2e8f0; color: #94a3b8; border: none; border-radius: 12px; font-weight: 900; font-size: 1.05rem; cursor: not-allowed; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; width: 100%; box-sizing: border-box;} 
.cp-btn-submit.active { background: var(--cp-main); color: #ffffff; cursor: pointer; box-shadow: 0 8px 20px var(--cp-main-light); }
.cp-btn-submit.active:hover { background: var(--cp-main-hover); transform: translateY(-2px); }
.cp-btn-ghost { background: #f1f5f9; color: #475569; border: 2px solid #e2e8f0; border-radius: 12px; font-weight: 800; font-size: 1.05rem; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; cursor: pointer; padding: 18px; text-transform: uppercase; letter-spacing: 1px; width: 100%; box-sizing: border-box; }
.cp-btn-ghost:hover { background: #e2e8f0; color: #0f172a; }

.cp-flex-buttons { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; width: 100%; }
@media (min-width: 600px) { .cp-flex-buttons { flex-direction: row; } }

.cp-summary-list { list-style: none; padding: 0; margin: 0 0 25px 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; padding-top: 20px; padding-bottom: 20px; }
.cp-summary-list li { padding: 10px 0; display: flex; justify-content: space-between; align-items: flex-start; color: #0f172a; font-size: 1rem; flex-wrap: wrap; }
.cp-summary-list li strong { font-weight: 800; }
.cp-total { font-size: 1.2rem; font-weight: 900; text-align: right; color: #0f172a; } 
.cp-msg-box { padding: 15px 20px; border-radius: 12px; margin-bottom: 25px; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cp-error-msg { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
#cp_error { display: none; } 
.cp-success-msg { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.cp-warning-msg { background: #fff7ed; color: #d97706; border: 1px solid #fde68a; } 
.cp-msg-close { cursor: pointer; font-size: 1.2rem; line-height: 1; padding: 5px; opacity: 0.6; transition: opacity 0.2s; }
.cp-msg-close:hover { opacity: 1; }

.cp-timer-box { background: #fff3cd; color: #b45309; padding: 15px; border-radius: 12px; font-weight: 700; text-align: center; margin-bottom: 20px; border: 1px solid #fde68a; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.1rem; }
.cp-timer-box span { font-variant-numeric: tabular-nums; }

#cp_stripe_modal { z-index: 100001; }
#cp_stripe_modal .cp-modal-card { max-width: 400px; padding: 40px 25px; text-align: center; display: flex; flex-direction: column; align-items: center; }
#cp_stripe_modal_icon { font-size: 50px; margin-bottom: 15px; line-height: 1;}

/* ========================================================
   BACKEND DISCOUNT MANAGER UTILITIES
   ======================================================== */
.cpdm-container { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #1e293b; max-width: 1100px; margin: 0 auto; line-height: 1.6; }
.cpdm-main-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 35px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.cpdm-main-tabs::-webkit-scrollbar { display: none; }
.cpdm-main-tab { padding: 14px 24px; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px; cursor: pointer; font-weight: 700; color: #64748b; transition: all 0.3s; white-space: nowrap; display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.cpdm-main-tab:hover { border-color: #cbd5e1; color: #0f172a; }
.cpdm-main-tab.active { background: var(--cp-main); border-color: var(--cp-main); color: #ffffff; } 
.cpdm-box { background: #ffffff; padding: 35px; border-radius: 20px; box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05); margin-bottom: 50px; border: 1px solid #f1f5f9; display: none; }
.cpdm-box.active { display: block; animation: cpdmFadeIn 0.3s ease; }
@keyframes cpdmFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.cpdm-table { width: 100%; border-collapse: collapse; text-align: left; }
.cpdm-table th { padding: 15px 10px; font-weight: 800; color: #475569; border-bottom: 2px solid #e2e8f0; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.cpdm-table td { padding: 18px 10px; border-bottom: 1px solid #f1f5f9; color: #334155; font-size: 1rem; vertical-align: middle; font-weight: 500; }
.cpdm-table tr:hover td { background: #f8fafc; }
.cpdm-badge { padding: 5px 12px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; display: inline-block; }
.cpdm-badge-active { background: var(--cp-main-light); color: var(--cp-main); border: 1px solid var(--cp-main-light); } 
.cpdm-code { font-family: monospace; font-weight: 800; background: #f1f5f9; padding: 6px 12px; border-radius: 8px; color: var(--cp-main); letter-spacing: 1px; }
.cpdm-action-btn { background: transparent; border: none; cursor: pointer; font-size: 1.1rem; color: #94a3b8; transition: color 0.2s; padding: 5px; }
.cpdm-action-btn:hover { color: var(--cp-main); }
.cpdm-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 768px) { .cpdm-grid { grid-template-columns: 1fr 1fr; } }
.cpdm-group { display: flex; flex-direction: column; gap: 8px; }
.cpdm-group.full { grid-column: 1 / -1; }
.cpdm-label { font-weight: 700; color: #475569; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.cpdm-input { height: 52px; padding: 0 18px; border: 2px solid #e2e8f0; border-radius: 12px; outline: none; transition: border-color 0.3s ease; width: 100%; box-sizing: border-box; font-size: 1rem; background: #ffffff; color: #0f172a; font-weight: 600; appearance: none; font-family: inherit; }
.cpdm-input::placeholder { color: #94a3b8; font-weight: 500; }
.cpdm-input:focus, .cpdm-input:hover { border-color: var(--cp-main); }
.cpdm-btn-save { background: var(--cp-main); color: white; border: none; padding: 0 30px; border-radius: 12px; font-weight: 800; font-size: 1.1rem; transition: all 0.3s ease; height: 56px; display: flex; justify-content: center; align-items: center; letter-spacing: 0.5px; width: 100%; max-width: 350px; cursor: pointer; margin: 40px auto 0; text-transform: uppercase; }
.cpdm-btn-save:hover { background: var(--cp-main-hover); transform: translateY(-2px); box-shadow: 0 8px 20px var(--cp-main-light); }

#cpdm_inventory_box { background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 16px; padding: 30px; display: none; margin-top: 15px; }
.cpdm-inv-tabs { display: flex; gap: 12px; margin-bottom: 25px; border-bottom: 2px solid #e2e8f0; padding-bottom: 15px; overflow-x: auto; scrollbar-width: none; }
.cpdm-inv-tabs::-webkit-scrollbar { display: none; }
.cpdm-inv-tab { cursor: pointer; font-weight: 800; color: #94a3b8; padding: 8px 15px; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.cpdm-inv-tab:hover { color: #0f172a; background: #e2e8f0; }
.cpdm-inv-tab.active { color: #ffffff; background: #0f172a; }
.cpdm-inv-content { display: none; max-height: 400px; overflow-y: auto; padding-right: 10px; }
.cpdm-inv-content.active { display: block; }
.cpdm-inv-item { display: flex; align-items: center; gap: 12px; background: #ffffff; padding: 15px; border: 2px solid #e2e8f0; border-radius: 12px; cursor: pointer; transition: all 0.2s; font-weight: 600; color: #0f172a; margin-bottom: 10px; }
.cpdm-inv-item:hover { border-color: #cbd5e1; transform: translateY(-1px); }
.cpdm-inv-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--cp-main); cursor: pointer; }
.cpdm-master-group { margin-bottom: 20px; background: #ffffff; border: 2px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.cpdm-master-header { background: #f8fafc; padding: 15px; border-bottom: 1px solid #e2e8f0; font-weight: 800; color: #0f172a; display: flex; align-items: center; gap: 10px; cursor:pointer; }
.cpdm-master-children { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cpdm-master-header input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--cp-main); cursor: pointer; }


/* ========================================================
   ACCORDION UTILITIES
   ======================================================== */
/* Ocultar el contenido por defecto */
.cp-accordion-content {
    display: none;
}

/* Mostrar el contenido cuando tiene la clase 'open' */
.cp-accordion-content.open {
    display: block;
    /* Opcional: puedes añadir animaciones aquí si lo deseas */
}

/* Animar la rotación del icono de la flecha */
.cp-chevron {
    transition: transform 0.3s ease;
}

/* Girar la flecha cuando el acordeón está abierto */
.cp-chevron.open {
    transform: rotate(180deg);
}


/* ========================================================
   PMS COMMAND CENTER, TIMELINE & DASHBOARD CORE UTILITIES
   ======================================================== */
.pms-wrapper-global, .pms-wrapper-global * { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important; }

/* SPACING (REM & PX MIX) */
.p-0 { padding: 0; } .p-\[0\.25rem\] { padding: 0.25rem; } .p-\[1\.5rem\] { padding: 1.5rem; } .p-\[3px\] { padding: 3px; } .p-\[4px\] { padding: 4px; } .p-4 { padding: 4px; } .p-5 { padding: 5px; } .p-10 { padding: 10px; } .p-\[10px\] { padding: 10px; } .p-15 { padding: 15px; } .p-\[15px\] { padding: 15px; } .p-20 { padding: 20px; } .p-\[20px\] { padding: 20px; } .p-25 { padding: 25px; } .p-30 { padding: 30px; } .p-\[30px\] { padding: 30px; }
.px-8 { padding-left: 8px; padding-right: 8px; } .px-10 { padding-left: 10px; padding-right: 10px; } .px-\[1rem\] { padding-left: 1rem; padding-right: 1rem; } .px-\[1\.25rem\] { padding-left: 1.25rem; padding-right: 1.25rem; } .px-\[6px\] { padding-left: 6px; padding-right: 6px; } .px-\[10px\] { padding-left: 10px; padding-right: 10px; } .px-12 { padding-left: 12px; padding-right: 12px; } .px-\[12px\] { padding-left: 12px; padding-right: 12px; } .px-15 { padding-left: 15px; padding-right: 15px; } .px-\[15px\] { padding-left: 15px; padding-right: 15px; } .px-20 { padding-left: 20px; padding-right: 20px; } .px-\[20px\] { padding-left: 20px; padding-right: 20px; }
.py-2 { padding-top: 2px; padding-bottom: 2px; } .py-\[2px\] { padding-top: 2px; padding-bottom: 2px; } .py-4 { padding-top: 4px; padding-bottom: 4px; } .py-6 { padding-top: 6px; padding-bottom: 6px; } .py-\[6px\] { padding-top: 6px; padding-bottom: 6px; } .py-8 { padding-top: 8px; padding-bottom: 8px; } .py-\[8px\] { padding-top: 8px; padding-bottom: 8px; } .py-10 { padding-top: 10px; padding-bottom: 10px; } .py-\[10px\] { padding-top: 10px; padding-bottom: 10px; } .py-12 { padding-top: 12px; padding-bottom: 12px; } .py-\[12px\] { padding-top: 12px; padding-bottom: 12px; } .py-15 { padding-top: 15px; padding-bottom: 15px; }
.pb-10 { padding-bottom: 10px; } .pb-\[1rem\] { padding-bottom: 1rem; } .pb-\[15px\] { padding-bottom: 15px; } .pb-\[20px\] { padding-bottom: 20px; }
.pt-10 { padding-top: 10px; } .pt-\[8px\] { padding-top: 8px; } .pt-\[10px\] { padding-top: 10px; } .pt-\[15px\] { padding-top: 15px; }
.pl-\[1rem\] { padding-left: 1rem; } .pl-\[15px\] { padding-left: 15px; }
.pr-\[2\.5rem\] { padding-right: 2.5rem; } .pr-\[30px\] { padding-right: 30px; }

.m-0 { margin: 0; } .mx-4 { margin-left: 4px; margin-right: 4px; } .mx-auto { margin-left: auto; margin-right: auto; } .ml-5 { margin-left: 5px; } .ml-10 { margin-left: 10px; } .ml-auto { margin-left: auto; } .mr-3 { margin-right: 3px; } .mr-5 { margin-right: 5px; } .mr-\[5px\] { margin-right: 5px; } .mr-8 { margin-right: 8px; } .mr-10 { margin-right: 10px; }
.mt-0 { margin-top: 0; } .mt-\[-50px\] { margin-top: -50px; } .mt-\[-10px\] { margin-top: -10px; } .mt-2 { margin-top: 2px; } .mt-\[2px\] { margin-top: 2px; } .mt-\[5px\] { margin-top: 5px; } .mt-15 { margin-top: 15px; } .mt-20 { margin-top: 20px; } .mt-\[20px\] { margin-top: 20px; }
.mb-5 { margin-bottom: 5px; } .mb-\[5px\] { margin-bottom: 5px; } .mb-8 { margin-bottom: 8px; } .mb-\[8px\] { margin-bottom: 8px; } .mb-10 { margin-bottom: 10px; } .mb-\[10px\] { margin-bottom: 10px; } .mb-\[12px\] { margin-bottom: 12px; } .mb-15 { margin-bottom: 15px; } .mb-\[15px\] { margin-bottom: 15px; } .mb-\[1\.5rem\] { margin-bottom: 1.5rem; } .mb-20 { margin-bottom: 20px; } .mb-\[20px\] { margin-bottom: 20px; } .mb-25 { margin-bottom: 25px; } .mb-\[25px\] { margin-bottom: 25px; } .mb-30 { margin-bottom: 30px; }

/* SIZING */
.w-full { width: 100%; } .w-1 { width: 1px; } .w-\[1rem\] { width: 1rem; } .w-\[15px\] { width: 15px; } .w-40 { width: 40px; } .w-45 { width: 45px; } .w-\[50px\] { width: 50px; } .w-\[60px\] { width: 60px; } .w-\[200px\] { width: 200px; } .w-\[220px\] { width: 220px; } .w-\[320px\] { width: 320px; } .w-\[340px\] { width: 340px; } .w-85vw { width: 85vw; }
.min-w-\[60px\] { min-width: 60px; } .min-w-140 { min-width: 140px; } .min-w-\[150px\] { min-width: 150px; } .min-w-\[160px\] { min-width: 160px; } .min-w-\[200px\] { min-width: 200px; } .min-w-\[220px\] { min-width: 220px; } .min-w-400 { min-width: 400px; } .min-w-600 { min-width: 600px; } .min-w-max { min-width: max-content; }
.max-w-400 { max-width: 400px; } .max-w-\[1200px\] { max-width: 1200px; } .max-w-\[1400px\] { max-width: 1400px; }
.h-full { height: 100%; } .h-\[1rem\] { height: 1rem; } .h-20 { height: 20px; } .h-\[38px\] { height: 38px; } .h-40 { height: 40px; } .h-\[40px\] { height: 40px; } .h-45 { height: 45px; } .h-\[50px\] { height: 50px; }
.min-h-\[400px\] { min-height: 400px; } .max-h-\[70vh\] { max-height: 70vh; }

/* POSITIONING & Z-INDEX */
.absolute { position: absolute; } .relative { position: relative; } .fixed { position: fixed; } .sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.left-0 { left: 0; } .top-0 { top: 0; } .left-\[200px\] { left: 200px; } .left-\[220px\] { left: 220px; } .top-\[6px\] { top: 6px; } .top-\[8px\] { top: 8px; } .bottom-\[-6px\] { bottom: -6px; } .left-1\/2 { left: 50%; }
.z-10 { z-index: 10; } .z-\[1\] { z-index: 1; } .z-\[5\] { z-index: 5; } .z-\[10\] { z-index: 10; } .z-\[20\] { z-index: 20; } .z-\[30\] { z-index: 30; } .z-\[40\] { z-index: 40; } .z-99999 { z-index: 99999; } .z-\[9999\] { z-index: 9999; } .z-\[99999\] { z-index: 99999; }

/* FLEXBOX & GRID */
.flex { display: flex; } .flex-col { flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .flex-1 { flex: 1 1 0%; } .flex-shrink-0 { flex-shrink: 0; } 
.justify-between { justify-content: space-between; } .justify-center { justify-content: center; } .items-center { align-items: center; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; }
.grid { display: grid; } .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* GAPS */
.gap-\[0\.5rem\] { gap: 0.5rem; } .gap-\[1rem\] { gap: 1rem; } .gap-\[1\.5rem\] { gap: 1.5rem; } .gap-\[2rem\] { gap: 2rem; }
.gap-8 { gap: 8px; } .gap-\[5px\] { gap: 5px; } .gap-\[8px\] { gap: 8px; } .gap-10 { gap: 10px; } .gap-\[10px\] { gap: 10px; } .gap-15 { gap: 15px; } .gap-\[15px\] { gap: 15px; } .gap-20 { gap: 20px; } .gap-\[30px\] { gap: 30px; } .gap-\[40px\] { gap: 40px; }

/* BORDERS & RADIUS */
.border { border-width: 1px; border-style: solid; } .border-b { border-bottom-width: 1px; border-bottom-style: solid; } .border-t { border-top-width: 1px; border-top-style: solid; } .border-r { border-right-width: 1px; border-right-style: solid; } .border-dashed { border-style: dashed; } .border-none { border-style: none; }
.border-slate-200 { border-color: #e2e8f0; } .border-\[\#e2e8f0\] { border-color: #e2e8f0; } .border-slate-100 { border-color: #f1f5f9; } .border-\[\#f1f5f9\] { border-color: #f1f5f9; } .border-red-200 { border-color: #fecaca; } .border-amber-200 { border-color: #fde68a; } .border-\[\#334155\] { border-color: #334155; } .border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-l-\[6px\] { border-left-width: 6px; } .border-r-\[6px\] { border-right-width: 6px; } .border-t-\[6px\] { border-top-width: 6px; }
.border-l-transparent { border-left-color: transparent; } .border-r-transparent { border-right-color: transparent; } .border-t-\[\#0f172a\] { border-top-color: #0f172a; }

.rounded-\[0\.5rem\] { border-radius: 0.5rem; } .rounded-\[1rem\] { border-radius: 1rem; } .rounded-6 { border-radius: 6px; } .rounded-\[4px\] { border-radius: 4px; } .rounded-\[6px\] { border-radius: 6px; } .rounded-8 { border-radius: 8px; } .rounded-\[8px\] { border-radius: 8px; } .rounded-10 { border-radius: 10px; } .rounded-\[10px\] { border-radius: 10px; } .rounded-12 { border-radius: 12px; } .rounded-\[12px\] { border-radius: 12px; } .rounded-16 { border-radius: 16px; } .rounded-\[16px\] { border-radius: 16px; } .rounded-t-16 { border-top-left-radius: 16px; border-top-right-radius: 16px; } .rounded-20 { border-radius: 20px; } .rounded-\[20px\] { border-radius: 20px; } .rounded-full { border-radius: 9999px; }

/* SHADOWS */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); } .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); } .shadow-card-sm { box-shadow: 0 5px 15px rgba(0,0,0,0.02); } .shadow-card { box-shadow: 0 10px 30px rgba(0,0,0,0.03); } .shadow-modal { box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.shadow-\[0_2px_5px_rgba\(0\,0\,0\,0\.02\)\] { box-shadow: 0 2px 5px rgba(0,0,0,0.02); } .shadow-\[0_2px_5px_rgba\(0\,0\,0\,0\.1\)\] { box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .shadow-\[0_4px_6px_-1px_rgba\(0\,0\,0\,0\.05\)\] { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); } .shadow-\[0_10px_25px_rgba\(0\,0\,0\,0\.2\)\] { box-shadow: 0 10px 25px rgba(0,0,0,0.2); } .shadow-\[0_10px_30px_rgba\(0\,0\,0\,0\.03\)\] { box-shadow: 0 10px 30px rgba(0,0,0,0.03); } .shadow-\[2px_0_5px_rgba\(0\,0\,0\,0\.02\)\] { box-shadow: 2px 0 5px rgba(0,0,0,0.02); } .shadow-\[2px_2px_5px_rgba\(0\,0\,0\,0\.02\)\] { box-shadow: 2px 2px 5px rgba(0,0,0,0.02); }

/* TYPOGRAPHY */
.font-\[\'Poppins\'\] { font-family: 'Poppins', sans-serif; }
.font-500 { font-weight: 500; } .font-600 { font-weight: 600; } .font-\[600\] { font-weight: 600; } .font-700 { font-weight: 700; } .font-\[700\] { font-weight: 700; } .font-800 { font-weight: 800; } .font-\[800\] { font-weight: 800; } .font-900 { font-weight: 900; } .font-\[900\] { font-weight: 900; }
.uppercase { text-transform: uppercase; } .tracking-1px { letter-spacing: 1px; } .tracking-\[1px\] { letter-spacing: 1px; } .whitespace-nowrap { white-space: nowrap; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .no-underline { text-decoration: none; } .leading-1 { line-height: 1; } .leading-\[1\] { line-height: 1; } .leading-\[1\.2\] { line-height: 1.2; } .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.text-0-75rem { font-size: 0.75rem; } .text-\[0\.65rem\] { font-size: 0.65rem; } .text-\[0\.7rem\] { font-size: 0.7rem; } .text-\[0\.75rem\] { font-size: 0.75rem; } .text-0-8rem { font-size: 0.8rem; } .text-\[0\.8rem\] { font-size: 0.8rem; } .text-0-85rem { font-size: 0.85rem; } .text-\[0\.85rem\] { font-size: 0.85rem; } .text-0-9rem { font-size: 0.9rem; } .text-\[0\.9rem\] { font-size: 0.9rem; } .text-0-95rem { font-size: 0.95rem; } .text-1rem { font-size: 1rem; } .text-\[1rem\] { font-size: 1rem; } .text-1-1rem { font-size: 1.1rem; } .text-\[1\.1rem\] { font-size: 1.1rem; } .text-1-2rem { font-size: 1.2rem; } .text-1-4rem { font-size: 1.4rem; } .text-1-8rem { font-size: 1.8rem; } .text-\[1\.5rem\] { font-size: 1.5rem; } .text-2rem { font-size: 2rem; } .text-2-5rem { font-size: 2.5rem; } .text-3rem { font-size: 3rem; }

/* COLORS (Background & Text) */
.text-slate-900 { color: #0f172a; } .text-\[\#0f172a\] { color: #0f172a; } .text-slate-700 { color: #334155; } .text-\[\#334155\] { color: #334155; } .text-slate-600 { color: #475569; } .text-\[\#475569\] { color: #475569; } .text-slate-500 { color: #64748b; } .text-\[\#64748b\] { color: #64748b; } .text-slate-400 { color: #94a3b8; } .text-\[\#94a3b8\] { color: #94a3b8; } .text-emerald-500 { color: #10b981; } .text-\[\#10b981\] { color: #10b981; } .text-red-500 { color: #ef4444; } .text-\[\#ef4444\] { color: #ef4444; } .text-red-700 { color: #b91c1c; } .text-\[\#b91c1c\] { color: #b91c1c; } .text-blue-500 { color: #3b82f6; } .text-violet-500 { color: #8b5cf6; } .text-amber-500 { color: #f59e0b; } .text-amber-600 { color: #d97706; } .text-amber-700 { color: #b45309; } .text-white { color: #ffffff; } .text-\[\#ffffff\] { color: #ffffff; } .text-main { color: var(--cp-main); } .text-\[var\(--cp-main\)\] { color: var(--cp-main) !important; }

.bg-white { background-color: #ffffff; } .bg-\[\#ffffff\] { background-color: #ffffff; } .bg-slate-50 { background-color: #f8fafc; } .bg-\[\#f8fafc\] { background-color: #f8fafc; } .bg-\[\#f8fafc\]\/50 { background-color: rgba(248, 250, 252, 0.5); } .bg-slate-100 { background-color: #f1f5f9; } .bg-\[\#f1f5f9\] { background-color: #f1f5f9; } .bg-slate-200 { background-color: #e2e8f0; } .bg-emerald-50 { background-color: #ecfdf5; } .bg-emerald-100 { background-color: #d1fae5; } .bg-emerald-500 { background-color: #10b981; } .bg-\[\#10b981\] { background-color: #10b981; } .bg-red-50 { background-color: #fef2f2; } .bg-\[\#fef2f2\] { background-color: #fef2f2; } .bg-red-100 { background-color: #fee2e2; } .bg-red-500 { background-color: #ef4444; } .bg-blue-50 { background-color: #eff6ff; } .bg-violet-50 { background-color: #f5f3ff; } .bg-amber-50 { background-color: #fffbeb; } .bg-amber-100 { background-color: #fef3c7; } .bg-\[\#f59e0b\] { background-color: #f59e0b; } .bg-black-60 { background-color: rgba(15, 23, 42, 0.6); } .bg-\[\#0f172a\] { background-color: #0f172a; } .bg-\[\#1e293b\] { background-color: #1e293b; } .bg-\[\#334155\] { background-color: #334155; } .bg-\[\#94a3b8\] { background-color: #94a3b8; } .bg-transparent { background-color: transparent; } .bg-main { background-color: var(--cp-main); } .bg-\[var\(--cp-main\)\] { background-color: var(--cp-main) !important; } .bg-main-light { background-color: var(--cp-main-light); } .bg-inherit { background-color: inherit; } 

.accent-\[var\(--cp-main\)\] { accent-color: var(--cp-main) !important; }

/* STATES & HOVERS */
.hover\:bg-slate-50:hover { background-color: #f8fafc; } .hover\:bg-\[\#f8fafc\]:hover { background-color: #f8fafc; } .hover\:bg-slate-200:hover { background-color: #e2e8f0; } .hover\:bg-\[\#e2e8f0\]:hover { background-color: #e2e8f0; } .hover\:bg-slate-300:hover { background-color: #cbd5e1; } .hover\:bg-emerald-200:hover { background-color: #a7f3d0; } .hover\:bg-emerald-600:hover { background-color: #059669; } .hover\:bg-red-200:hover { background-color: #fecaca; } .hover\:bg-red-600:hover { background-color: #dc2626; } .hover\:bg-slate-700:hover { background-color: #334155; }
.hover\:text-slate-900:hover { color: #0f172a; } .hover\:text-\[\#0f172a\]:hover { color: #0f172a; } .hover\:text-slate-600:hover { color: #475569; } .hover\:text-emerald-600:hover { color: #059669; } .hover\:text-red-600:hover { color: #dc2626; } .hover\:text-main:hover { color: var(--cp-main); } .hover\:text-amber-600:hover { color: #d97706; }
.hover\:border-\[\#cbd5e1\]:hover { border-color: #cbd5e1; }
.hover\:opacity-90:hover { opacity: 0.9; } .hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.last\:border-0:last-child { border-width: 0; }

/* MISC TRANSITIONS & DISPLAY */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; } .duration-300 { transition-duration: 300ms; }
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.scale-95 { --tw-scale-x: .95; --tw-scale-y: .95; } .scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); } .-translate-y-full { --tw-translate-y: -100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); } .translateX\(-50\%\) { transform: translateX(-50%); }

.opacity-0 { opacity: 0; }
.overflow-hidden { overflow: hidden; } .overflow-x-auto { overflow-x: auto; } .overflow-auto { overflow: auto; } .snap-x { scroll-snap-type: x mandatory; } .snap-center { scroll-snap-align: center; }
.hidden { display: none; } .block { display: block; } .inline-block { display: inline-block; } .invisible { visibility: hidden; }
.cursor-pointer { cursor: pointer; } .pointer-events-none { pointer-events: none; }
.appearance-none { appearance: none; -webkit-appearance: none; -moz-appearance: none; } .select-none { user-select: none; }
.border-collapse { border-collapse: collapse; }

/* OVERRIDES PARA FULLCALENDAR */
.fc-theme-standard td, .fc-theme-standard th, .fc-theme-standard .fc-scrollgrid { border-color: #e2e8f0 !important; }
.fc-col-header-cell-cushion { padding: 12px 0 !important; font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 800; color: #475569; text-transform: uppercase; }
.fc-daygrid-day-number { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; color: #0f172a; padding: 8px !important; }
.fc-day-today { background-color: #f8fafc !important; }
.fc-h-event { border: none !important; border-radius: 4px !important; }
.fc-event-main { font-family: 'Poppins', sans-serif; }

/* TIMELINE CUSTOM SCROLLBARS */
.js-gantt-scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.js-gantt-scroll::-webkit-scrollbar-track { background: #f8fafc; border-radius: 4px; }
.js-gantt-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; border: 2px solid #f8fafc; }
.js-gantt-scroll::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.js-gantt-scroll { scrollbar-width: thin; scrollbar-color: #cbd5e1 #f8fafc; }

/* TIMELINE MOBILE RESPONSIVENESS */
.cp-gantt-y-axis { width: 100px; min-width: 100px; }
.cp-gantt-x-axis { padding-left: 100px; }
.cp-gantt-track { left: 100px; }
.cp-gantt-y-pad { padding-left: 10px; padding-right: 10px; font-size: 0.7rem; }

/* RESPONSIVE BREAKPOINTS */
.order-first { order: -9999; }

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; } .sm\:flex-nowrap { flex-wrap: nowrap; } .sm\:items-center { align-items: center; } .sm\:w-auto { width: auto; } .sm\:gap-\[1\.5rem\] { gap: 1.5rem; } .sm\:gap-\[2rem\] { gap: 2rem; } .sm\:flex-none { flex: none; } .sm\:order-none { order: 0; }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; } .md\:items-center { align-items: center; } .md\:w-auto { width: auto; } .md\:w-\[60px\] { width: 60px; } .md\:text-\[0\.65rem\] { font-size: 0.65rem; } .md\:text-\[1rem\] { font-size: 1rem; } .md\:p-\[30px\] { padding: 30px; } .md\:p-\[40px\] { padding: 40px; } .md\:grid { display: grid; } .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .md\:gap-15 { gap: 15px; } .md\:gap-20 { gap: 20px; } .md\:px-20 { padding-left: 20px; padding-right: 20px; } .md\:ml-10 { margin-left: 10px; } .md\:justify-center { justify-content: center; } .md\:block { display: block; } .md\:inline-block { display: inline-block; } .md\:text-1-8rem { font-size: 1.8rem; }
    .cp-gantt-y-axis { width: 220px; min-width: 220px; }
    .cp-gantt-x-axis { padding-left: 220px; }
    .cp-gantt-track { left: 220px; }
    .cp-gantt-y-pad { padding-left: 20px; padding-right: 20px; font-size: 0.85rem; }
}

@media (min-width: 1024px) {
    .lg\:flex-row { flex-direction: row; } .lg\:flex-nowrap { flex-wrap: nowrap; } .lg\:items-center { align-items: center; } .lg\:w-auto { width: auto; } .lg\:gap-\[1\.5rem\] { gap: 1.5rem; } .lg\:gap-\[2rem\] { gap: 2rem; } .lg\:px-\[0px\] { padding-left: 0px; padding-right: 0px; } .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
    .xl\:flex-row { flex-direction: row; } .xl\:items-center { align-items: center; } .xl\:w-auto { width: auto; } .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ========================================================
   CHECKOUT PREMIUM UTILITIES (RESPONSIVE & REM SCALING)
   ======================================================== */
.max-w-\[1000px\] { max-width: 1000px; }
.max-w-\[450px\] { max-width: 450px; }
.w-\[80px\] { width: 80px; }
.h-\[80px\] { height: 80px; }
.w-\[90px\] { width: 90px; }
.h-\[90px\] { height: 90px; }
.rounded-\[24px\] { border-radius: 24px; }
.p-\[40px\] { padding: 40px; }
.p-\[50px\] { padding: 50px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.bg-\[\#0f172a\]\/80 { background-color: rgba(15, 23, 42, 0.8); }
.backdrop-blur-\[8px\] { backdrop-filter: blur(8px); }
.text-\[3\.5rem\] { font-size: 3.5rem; }
.hover\:shadow-\[0_10px_25px_var\(--cp-main-light\)\]:hover { box-shadow: 0 10px 25px var(--cp-main-light); }

.cp-pay-wrapper { margin-top: 4rem; margin-bottom: 4rem; display: flex; flex-direction: column; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15); max-width: 1000px; margin-left: auto; margin-right: auto; background: #ffffff; }
.cp-pay-left { width: 100%; background-color: #0f172a; color: #ffffff; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; box-sizing: border-box; }
.cp-pay-right { width: 100%; background-color: #ffffff; padding: 2rem; display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; }

@media (min-width: 768px) {
    .md\:w-\[40\%\] { width: 40%; }
    .md\:w-\[60\%\] { width: 60%; }
    .md\:p-\[50px\] { padding: 50px; }
    
    .cp-pay-wrapper { flex-direction: row; margin-top: 6rem; margin-bottom: 6rem; }
    .cp-pay-left { width: 40%; padding: 3rem; }
    .cp-pay-right { width: 60%; padding: 3rem; }
}

.cp-pay-title { font-size: 1.8rem; font-weight: 900; line-height: 1.2; margin-top: 0; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cp-pay-title { font-size: 2.2rem; margin-bottom: 2rem; } }

.cp-pay-total-val { font-size: 2.2rem; font-weight: 900; line-height: 1; }
@media (min-width: 768px) { .cp-pay-total-val { font-size: 2.5rem; } }

.cp-modal-fullscreen { position: fixed; inset: 0; background-color: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px); z-index: 99999; display: none; align-items: center; justify-content: center; padding: 1.5rem; transition: opacity 0.3s; opacity: 0; }
.cp-modal-fullscreen.active { display: flex; opacity: 1; }
.cp-modal-fs-card { background: #ffffff; border-radius: 1.5rem; max-width: 450px; width: 100%; padding: 2.5rem; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,0.2); transform: scale(0.95); transition: transform 0.3s; }
.cp-modal-fs-card.active { transform: scale(1); }