/*
BELA MASTER SCRIPT V3.0
Full Conversion Overhaul for Castaroma Oil
*/
/* 1. FONT & BASE */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');
body {
background-color: #f1f5f9 !important;
font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.bcl-form-wrapper {
background: #ffffff !important;
border-radius: 20px !important;
padding: 0 !important;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
border: 1px solid #e2e8f0 !important;
max-width: 480px !important;
margin: 20px auto !important;
overflow: hidden !important;
}
/* 2. THE COUNTDOWN TIMER BAR */
.bcl-form-wrapper::before {
content: "⚠️ TAWARAN PROMOSI AKAN TAMAT DALAM: 09:47 MINIT";
display: block;
background: #e11d48; /* Warna Merah Urgency */
color: white;
text-align: center;
padding: 12px;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.5px;
animation: flash 1.5s infinite;
}
@keyframes flash {
0% { opacity: 1; }
50% { opacity: 0.7; }
100% { opacity: 1; }
}
/* 3. HEADER & TITLE */
.bcl-form-title {
color: #064e3b !important; /* Emerald Green */
font-size: 22px !important;
font-weight: 800 !important;
text-transform: uppercase !important;
padding: 25px 20px 0 20px !important;
margin-bottom: 5px !important;
text-align: center !important;
}
/* 4. LABELS & INPUTS */
label {
font-weight: 700 !important;
color: #334155 !important;
margin-top: 15px !important;
padding: 0 20px !important;
display: block !important;
}
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
border-radius: 10px !important;
border: 2px solid #cbd5e1 !important;
padding: 12px !important;
margin: 5px 20px !important;
width: calc(100% - 40px) !important; /* Tolak margin kiri kanan */
background-color: #f8fafc !important;
font-size: 16px !important;
transition: 0.3s !important;
}
input:focus {
border-color: #059669 !important;
background-color: #fff !important;
outline: none !important;
}
/* 5. PRODUCT SELECTION */
.product-item {
border: 2px solid #e2e8f0 !important;
border-radius: 12px !important;
margin: 10px 20px !important;
padding: 15px !important;
background: #fff !important;
transition: 0.2s !important;
}
.product-item.active {
border-color: #059669 !important;
background-color: #f0fdf4 !important;
}
/* 6. SUBMIT BUTTON (THE CONVERTER) */
.btn-submit {
background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
border: none !important;
border-radius: 12px !important;
padding: 20px !important;
font-size: 18px !important;
font-weight: 800 !important;
color: #fff !important;
margin: 20px !important;
width: calc(100% - 40px) !important;
box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.3) !important;
cursor: pointer !important;
}
/* 7. TRUST SIGNALS (FOOTER) */
.bcl-form-footer {
background: #f8fafc !important;
padding: 20px !important;
text-align: center !important;
border-top: 1px dashed #cbd5e1 !important;
}
/* 8. COD & COURIER BADGES */
.bcl-form-footer::after {
content: "🛡️ BARANG SAMPAI BARU BAYAR (COD) | 🚚 NINJAVAN | J&T | POSLAJU";
display: block;
margin-top: 10px;
font-size: 10px;
color: #64748b;
font-weight: 700;
}
/* Mobile Adjustments */
@media (max-width: 600px) {
.bcl-form-wrapper { margin: 10px !important; }
}