.asmita-event-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    box-sizing: border-box;
}

.asmita-btn-primary {
    background: #222 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.asmita-btn-primary:hover {
    background: #444 !important;
    transform: translateY(-1px);
}

.asmita-btn-disabled {
    width: 100%;
    padding: 14px;
    background: #ebebeb !important;
    color: #999 !important;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
}

.asmita-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.asmita-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.asmita-modal-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.asmita-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
}

.asmita-close:hover {
    color: #222;
}

.asmita-form-group {
    margin-bottom: 18px;
}

.asmita-form-group label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.asmita-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.asmita-form-group input:focus {
    border-color: #222;
    outline: none;
    background: #fff;
}

.asmita-total-cost {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .asmita-event-container { padding: 0 15px; margin: 20px auto; }
}

/* ==========================================================================
   MINIMAL TOTAL AMOUNT DISPLAY OVERRIDES (High Specificity)
   ========================================================================== */

/* FORCE ROW STRUCTURE */
#asmitaBookingForm .form-row-2 { 
    display: block !important; 
    margin-bottom: 20px !important; 
    width: 100% !important; 
}

/* OVERRIDE ANY .form-group COLUMN STYLES */
#asmitaBookingForm .form-group.total-display { 
    background: #f8fafc !important; /* Minimal flat background */
    border-radius: 8px !important; 
    border: 1px solid #e2e8f0 !important; 
    padding: 16px 20px !important; 
    display: flex !important; 
    flex-direction: row !important; /* Forces Label left, Amount right */
    justify-content: space-between !important; 
    align-items: center !important; 
    height: auto !important; 
    box-sizing: border-box !important; 
    margin-bottom: 0 !important; 
    overflow: hidden !important; 
    box-shadow: none !important; 
}

/* MINIMAL LABEL WITH GREEN DOT */
#asmitaBookingForm .form-group.total-display label { 
    font-size: 12px !important; 
    text-transform: uppercase !important; 
    letter-spacing: 1px !important; 
    color: #64748b !important; 
    margin-bottom: 0 !important; 
    font-weight: 600 !important; 
    line-height: 1 !important; 
    display: flex !important; 
    align-items: center !important; 
    gap: 8px !important; 
}

#asmitaBookingForm .form-group.total-display label::before { 
    content: '' !important; 
    display: inline-block !important; 
    width: 8px !important; 
    height: 8px !important; 
    background: #10b981 !important; 
    border-radius: 50% !important; 
    box-shadow: 0 0 0 3px #d1fae5 !important; 
}

/* MINIMAL AMOUNT DISPLAY */
#asmitaBookingForm .form-group.total-display .total-amt { 
    display: flex !important; 
    justify-content: flex-end !important; 
    font-size: 28px !important; 
    font-weight: 800 !important; 
    color: #1e293b !important; 
    font-family: 'Montserrat', sans-serif !important; 
    line-height: 1 !important; 
    text-shadow: none !important; 
}

/* GLITCH-FREE ROLLER ANIMATION */
.price-roller { 
    display: flex !important; 
    flex-direction: column !important; 
    align-items: flex-end !important; 
    height: 28px !important; 
    overflow: hidden !important; 
    position: relative !important; 
}

.price-val { 
    display: flex !important; 
    align-items: center !important; 
    height: 28px !important; 
    line-height: 1 !important; 
    font-variant-numeric: tabular-nums !important; 
    white-space: nowrap !important; 
    letter-spacing: -0.5px !important; 
    transform: translateY(0) !important;
    transition: none !important; /* CRITICAL FIX: Overrides global transitions */
}

/* TRANSITION ONLY ON ROLLING STATE */
.price-roller.rolling .price-val { 
    transform: translateY(-28px) !important; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* PRICE CHECKING PULSE EFFECT */
@keyframes asmitaPricePulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
.asmita-pulse {
    animation: asmitaPricePulse 1.2s infinite ease-in-out !important;
}

@media (max-width: 480px) {
    #asmitaBookingForm .form-group.total-display { padding: 12px 16px !important; }
    #asmitaBookingForm .form-group.total-display .total-amt { font-size: 24px !important; }
    .price-roller, .price-val { height: 24px !important; }
    .price-roller.rolling .price-val { transform: translateY(-24px) !important; }
}