.elementor-866 .elementor-element.elementor-element-693e235{--display:flex;}.elementor-866 .elementor-element.elementor-element-698a3d1.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-866 .elementor-element.elementor-element-0bdadac{--display:flex;}.elementor-866 .elementor-element.elementor-element-aae6655{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-cf09fa5 *//* Styling dasar input */
.wpcf7 input[type="text"],
.wpcf7 textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 5px blue;
    box-sizing: border-box;
    margin-bottom: 1px; /* Ubah nilai ini sesuai kebutuhan */

}







/* Styling untuk form-row-double */
.form-row-double {
    display: flex;
    justify-content: space-between; /* Menjaga jarak antar kolom */
    flex-wrap: nowrap; /* Mencegah kolom berpindah ke baris baru */
    margin-bottom: 10px; /* Mengurangi jarak antar elemen */
}

/* Styling untuk kolom input */
.form-col-double {
    flex: 1; /* Membagi ruang secara merata */
    min-width: 100px; /* Atur lebar minimum agar tetap dalam satu baris */
    margin-right: 10px; /* Jarak antar kolom */
}

/* Menghapus margin kanan pada kolom terakhir */
.form-col-double:last-child {
    margin-right: 0;
}

/* Responsiveness untuk layar kecil */
@media (max-width: 600px) {
    .form-row-double {
        flex-direction: column; /* Ubah menjadi kolom pada layar kecil */
    }

    .form-col-double {
        min-width: 100%; /* Lebar penuh pada layar kecil */
        margin-right: 0; /* Menghapus margin pada kolom */
    }
}









/* Buat 1 baris 2 input */
.form-row-double {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Supaya tetap responsif di HP */
    margin: 1px 0; /* Atur jarak vertikal antara baris */
}

.form-col-double {
    flex: 1;
    min-width: 45%;
}

/* Styling untuk textarea agar tidak terlalu panjang */
textarea {
    width: 100%;
    height: 130px; /* Sesuaikan tinggi textarea */
    resize: vertical; /* Memungkinkan user untuk memperbesar jika perlu */
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-top: 1px; /* Ubah nilai ini sesuai kebutuhan */
    
}

/* Styling untuk radio button (Transaksi) */
.transaksi-group .radio-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.transaksi-group .radio-box {
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 2px solid #4CAF50;
    box-shadow: 0 0 5px green;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.transaksi-group .radio-box:hover {
    background-color: #e8f5e9;
}

.transaksi-group .radio-box img {
    width: auto;
    height: 30px;
}

/*======================================*/
/*Checkbox Box-Style*/
/*======================================*/

/* Container */
.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    gap: 10px;
}

/* Hilangkan margin bawaan */
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
}

/* Sembunyikan checkbox asli */
.wpcf7-form-control.wpcf7-checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Kotak */
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid red;
    border-radius: 10px;
    box-shadow: 0 0 5px red;
    background: #fff;
    cursor: pointer;
    transition: 0.2s;
}

/* Hover */
.wpcf7-form-control.wpcf7-checkbox label:hover .wpcf7-list-item-label {
    background: #ffecec;
}

/* Jika checked → kotak berubah */
.wpcf7-form-control.wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label {
    background: red;
    color: white;
    border-color: red;
    box-shadow: 0 0 8px red;
}


/*======================================*/
/*Checkbox Box-Style -  Stop*/
/*======================================*/


/* Styling untuk Aggregator (Lebar 100%, Box Shadow Orange) */
.Aggregator-group .radio-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.Aggregator-group .radio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 5px;
    border: 2px solid #FFA500;
    box-shadow: 0 0 5px orange;
    border-radius: 10px;
    cursor: pointer;
    min-height: 50px;
    background-color: #e8f5e9;
}

/* Icon dalam Aggregator & Transaksi */
.radio-box img {
    width: auto;
    height: 30px;
    object-fit: contain;
}

/* Responsiveness */
@media (max-width: 768px) {
    .form-col-double {
        min-width: 100%; /* Ubah menjadi 100% untuk responsif */
    }

    .radio-container {
        flex-direction: column;
    }
}

/* Tombol Kirim Laporan dengan Ikon */
.wpcf7-submit {
    background: linear-gradient(135deg, #25D366, #128C7E); /* Gradasi hijau WhatsApp */
    color: white;
    padding: 14px 24px; /* Lebih besar untuk kenyamanan */
    border: 3px solid white; /* Border putih 3px */
    border-radius: 99px; /* Bentuk tombol oval */
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase; /* Huruf kapital untuk kesan lebih tegas */
    text-align: center;
    width: 100%;
    height: 50px; /* Menyesuaikan tinggi tombol */
    display: flex;
    align-items: center; /* Sejajar vertikal */
    justify-content: center; /* Sejajar horizontal */
    gap: 2px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Shadow hitam */
}

/* Styling ikon dalam tombol */
.wpcf7-submit img {
    width: 70px;
    height: 50px;
    object-fit: contain;
}

/* Hover efek untuk tombol */
.wpcf7-submit:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: scale(1.02);
}


/*Khusus Untuk varian rasa*/
/*********************************************
  VARIAN RASA — GRID CARD
**********************************************/
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 10px 0 20px;
}

/* CARD AKTIF (jika select > 0) */
.grid-2 .card.active {
    border-color: #ff8b4a !important;
    box-shadow: 0 0 12px rgba(255,140,70,0.6) !important;
    background: #fff8f2;
}


/*********************************************
  CARD SETIAP RASA
**********************************************/
.grid-2 .card {
    background: #ffffff;
    border: 2px solid #e4e4e4;
    border-radius: 12px;
    padding: 14px 16px;
    transition: 0.25s ease;
    box-shadow: 0 0 5px black;
}

.grid-2 .card:hover {
    border-color: #ff8b4a;
    box-shadow: 5px 4px 10px rgba(255,140,70,0.18);
}

.grid-2 .card label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #444;
}

/*********************************************
  SELECT JUMLAH DALAM CARD RASA
**********************************************/
.grid-2 select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    font-size: 14px;
    background: #fafafa;
    transition: 0.25s ease;
}

.grid-2 select:focus {
    border-color: #ff7a3d;
    background: #fff7f1;
    outline: none;
}



/* --- WARNA STABILO UNTUK MASING-MASING RASA --- */

/* Dasar label */
.grid-2 .card label {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Pedas Sedang — stabilo merah terang */
.hl-pedas-sedang {
    background: #ffb3b3;       /* merah muda terang */
    color: #b30000;            /* merah tua */
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(0,0,0,0.08);
}

/* Tidak Pedas — stabilo hijau terang */
.hl-tidak-pedas {
    background: #b6ffb6;       /* hijau stabilo */
    color: #0e7a0e;
    box-shadow: 0 0 12px rgba(0, 200, 0, 0.4);
    border: 2px solid rgba(0,0,0,0.08);
}

/* Ekstra Pedas — stabilo maroon menyala */
.hl-ekstra-pedas {
    background: #FF6961;       /* merah pastel lebih terang */
    color: #7a0000;
    box-shadow: 0 0 12px rgba(150, 0, 0, 0.5);
    border: 2px solid rgba(0,0,0,0.08);
}

/* Tanpa Cabe — stabilo krem terang */
.hl-tanpa-cabe {
    background: #fff2b8;       /* kuning stabilo */
    color: #805c00;
    box-shadow: 0 0 12px rgba(255, 200, 0, 0.45);
    border: 2px solid rgba(0,0,0,0.08);
}





/*********************************************
  RESPONSIVE UNTUK HP
**********************************************/
@media (max-width: 480px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}/* End custom CSS */