:root {
    --brand-orange: #fbad17;
    --brand-orange-soft: #fff4db;
    --brand-orange-dark: #d8920f;

    --accent-green: #18503b;
    --accent-green-soft: #edf7f2;

    --brand-dark: #3b3a3d;
    --text-muted: #727179;

    --border-soft: #e8e8ea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 40px auto 0 !important;
    background: white;
    padding: 30px !important;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

h1 {
    color: #fbac07;
    margin-bottom: 10px;
    font-size: 24px;
}

.subtitle {
    margin-bottom: 30px;
    font-size: 14px;
}

/* ===== SEARCH SECTION ===== */
.search-section {
    margin-bottom: 30px;
}

.search-section h2 {
    color: #fbac07;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.search-section p {
    color: rgba(0, 0, 0);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.search-simple {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.search-input-main {
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input-main::placeholder {
    color: #95a5a6;
}

.search-input-main:focus {
    outline: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-search-main {
    padding: 12px 30px;
    background: #fbad17;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-search-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-results {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

#btnSelesai:disabled,
#btnSelesai[disabled] {
    background: #e2e8f0 !important;
    background-color: #e2e8f0 !important;
    background-image: none !important;
    border-color: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
}

#btnTambahPeserta {
    background: #ffffff;
    color: var(--brand-dark);
    border: 1px solid var(--border-soft);
}

#btnTambahPeserta:hover {
    background: var(--brand-orange-soft);
    border-color: #ffe0a3;
}

#btnTambahPeserta:disabled,
#btnTambahPeserta[disabled] {
    background: #e2e8f0 !important;
    background-color: #e2e8f0 !important;
    background-image: none !important;
    border-color: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ===== PATIENT CARD ===== */
.patient-card {
    background: white;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    transition: all 0.3s;
}

.patient-card:hover {
    border-color: #e8e8e8;
    transform: translateY(-3px)
}

.patient-card h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.patient-card p {
    color: #7f8c8d;
    font-size: 13px;
    margin: 3px 0;
}

.patient-card .badge {
    display: inline-block;
    padding: 3px 10px;
    background: #27ae60;
    color: white;
    border-radius: 12px;
    font-size: 11px;
    margin-top: 5px;
    cursor: pointer;
}

.patient-card .badge:hover {
    background: #229954;
}

/* ===== DIVIDER ===== */
.divider {
    background: white;
    padding: 14px 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
}

.divider span {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 600;
}

/* Radio Card Style */
.radio-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.radio-card:hover {
    border-color: #fbac07;
    background: #fffbf0;
}

.radio-card input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-card input[type="radio"]:checked + .radio-card-content {
    color: #fbac07;
}

.radio-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-card-content i {
    font-size: 24px;
    margin-bottom: 5px;
}

.radio-card-content strong {
    font-size: 16px;
}

.radio-card-content small {
    color: #7f8c8d;
    font-size: 13px;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .radio-group {
        grid-template-columns: 1fr;
    }
}

/* ===== FORM SECTION ===== */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border 0.3s;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
    cursor: pointer;
}

/* ===== DYNAMIC FIELD ===== */
.dynamic-field {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.dynamic-field input {
    flex: 1;
    min-width: 200px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-add {
    background: #fbac07;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-add:hover {
    background: #e69d06;
}

.btn-remove {
    background: #e74c3c;
    color: white;
    padding: 10px 15px;
}

.btn-remove:hover {
    background: #c0392b;
}

.btn-primary {
    background: #fbad17;
    color: black;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #b98929;
}

/* ===== PARTICIPANT FORM ===== */
.participant-form {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    background: #fafafa;
}

.participant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 10px;
}

.participant-header h3 {
    color: #2c3e50;
    font-size: 20px;
    margin: 0;
}

.btn-add-participant {
    width: 100%;
    padding: 18px 20px;
    background: #f1f1f1;
    color: #9e9e9e;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin: 30px 0 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-add-participant:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
}

.btn-add-participant:active {
    transform: translateY(0);
}

.btn-remove-participant {
    padding: 8px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove-participant:hover {
    background: #c0392b;
}

/* ===== ROW LAYOUT ===== */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-box {
    background-color: #fef2f2;   /* soft red */
    border-left: 4px solid #ef4444; /* red */
    padding: 12px 16px;
    border-radius: 6px;
    color: #7f1d1d; /* teks merah gelap biar kontras */
    font-size: 14px;
    margin-top: 10px;
    grid-column: 1 / -1;
}

/* ===== LOADING & NO RESULTS ===== */
.loading {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-size: 14px;
}

/* ===== VAKSIN GRID ===== */
.vaksin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: normal;
    font-size: 14px;
}

.checkbox-item:hover {
    background: #f5f5f5;
    border-color: #3498db;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
    width: auto;
}

.checkbox-item input[type="checkbox"]:checked {
    accent-color: #3498db;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* TABLET - 1024px */
@media (max-width: 1024px) {   
    .vaksin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        gap: 30px;
    }
}

/* TABLET - 768px */
@media (max-width: 768px) {  
    /* Container */
    .container {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .search-section h2 {
        font-size: 18px;
    }
    
    /* Search */
    .search-simple {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .btn-search-main {
        width: 100%;
        padding: 14px;
    }
    
    /* Row */
    .row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Vaksin Grid */
    .vaksin-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    /* Participant */
    .participant-form {
        padding: 15px;
    }
    
    .participant-header h3 {
        font-size: 18px;
    }
    
    .btn-add-participant {
        padding: 16px;
        font-size: 15px;
    }
}

/* MOBILE - 480px */
@media (max-width: 480px) {   
    /* Container */
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 18px;
    }
    
    .subtitle {
        font-size: 13px;
    }
    
    .search-section h2 {
        font-size: 16px;
    }
    
    .search-section p {
        font-size: 13px;
    }
    
    /* Form */
    input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn-primary {
        padding: 14px;
        font-size: 15px;
    }
    
    .btn-primary:disabled {
        background: #cccccc;
        color: #666666;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .btn-secondary:disabled {
        background: #e0e0e0;
        color: #999999;
        cursor: not-allowed;
        opacity: 0.6;
    }

    /* Radio Group */
    .radio-group {
        gap: 15px;
    }
    
    /* Dynamic Field */
    .dynamic-field {
        flex-direction: column;
        gap: 8px;
    }
    
    .dynamic-field input {
        min-width: 100%;
    }
    
    .dynamic-field .btn-remove {
        width: 100%;
    }
    
    /* Participant */
    .participant-form {
        padding: 12px;
    }
    
    .participant-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .participant-header h3 {
        font-size: 16px;
    }
    
    .btn-remove-participant {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Patient Card */
    .patient-card {
        padding: 12px;
    }
    
    .patient-card h4 {
        font-size: 15px;
    }
    
    .patient-card p {
        font-size: 12px;
    }
}

/* EXTRA SMALL - 360px */
@media (max-width: 360px) {  
    .container {
        padding: 15px 12px;
    }
    
    .search-input-main,
    .btn-search-main {
        font-size: 14px;
    }
}
/* ========== PRODUCT SELECTION STYLING ========== */

/* Search Box Layanan */
.search-box-layanan {
    width: 100%;
    max-width: 800px;
    padding: 12px 15px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    background: white;
    margin: 0 auto;
}

.search-box-layanan:focus {
    outline: none;
    border-color: #fbac07;
    box-shadow: 0 0 0 3px rgba(251, 172, 7, 0.1);
}

/* Category Accordion */
.category-accordion {
    margin-top: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    border-bottom: 1px solid #e0e0e0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    color: #333;
}

.category-header:hover {
    background: #fff8e1;
}

.category-header i {
    transition: transform 0.3s;
    color: #fbac07;
    font-size: 14px;
}

.category-content {
    padding: 10px 20px;
    background: white;
}

/* Product Checkbox */
.product-checkbox {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.product-checkbox:hover {
    background: #fffbf0;
}

.product-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #fbac07;
}

.product-checkbox span {
    color: #333;
    font-size: 14px;
}

/* Selected Badges */
.selected-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fffbf0;
    border-radius: 10px;
    border: 2px solid #fbac07;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbac07 0%, #f59e0b 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    animation: fadeInBadge 0.3s;
}

.product-badge button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.product-badge button:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Total Info */
.total-info {
    margin-top: 15px;
    padding: 12px;
    background: #fffbf0;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #fbac07;
}

.total-info strong {
    color: #fbac07;
    font-size: 18px;
    font-weight: 600;
}

/* Animation */
@keyframes fadeInBadge {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-box-layanan,
    .category-accordion,
    .selected-badges,
    .total-info {
        max-width: 100%;
    }
    
    .category-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .product-checkbox {
        padding: 8px;
    }
    
    .product-badge {
        font-size: 12px;
        padding: 6px 10px;
    }
}

#emailContainer,
#phoneContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group input {
    flex: 1;
}

.input-group button {
    width:44px;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #fecaca;
    background: #fee2e2;
    color: #b91c1c;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}

.input-group button:hover {
    background: #e04848;
}

.form-group .btn-secondary {
    margin-top: 8px;
    font-size: 13px;
    padding: 6px 12px;
}

.booking-info-banner {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-left: 5px solid var(--brand-orange);
    padding: 20px 22px;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 8px 22px rgba(59, 58, 61, 0.05);

    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    align-items: center;
}

.booking-info-title {
    width: 100%;
    margin: 0 0 2px 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-dark);
}

.booking-info-title i {
    color: var(--accent-green);
}

.booking-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
}

.booking-info-item i {
    color: var(--brand-orange);
}

/* ===== SERVICE SECTION - SIMPLE & RAPI ===== */
.service-section {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
    border: 1px solid #eaeef2;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #edf2f7;
}

/* ===== SEARCH BOX ===== */
.search-box-layanan {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dce2e7;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
}

.search-box-layanan:focus {
    border-color: #2c7da0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44,125,160,0.05);
}

/* ===== SELECTED BADGES ===== */
.selected-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eef2f6;
}

.badge-selected {
    background: #e9f2f7;
    color: #2c7da0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-selected i {
    cursor: pointer;
    color: #7f8c8d;
    font-size: 0.8rem;
}

.badge-selected i:hover {
    color: #e74c3c;
}

/* ============================================
   SERVICE.CSS - Styling untuk Layanan & Paket
   ============================================ */

/* ===== PRODUCT TABS ===== */
.product-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    background: #f8fafc;
    color: #475569;
}

.tab-btn i {
    font-size: 16px;
    color: #94a3b8;
}

.tab-btn.active {
    background: white;
    color: #1e293b;
    border-color: #fbac07;
    border-bottom: 2px solid white;
    z-index: 1;
}

.tab-btn.active i {
    color: #fbac07;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 8px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

.tab-btn.active .tab-count {
    background: #fff4db;
    color: #92400e;
}

/* ===== CATEGORY ACCORDION ===== */
.category-accordion {
    margin-top: 20px;
}

.category-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
    transition: all 0.2s ease;
}

.category-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.category-header:hover {
    background: #f1f5f9;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.category-title i {
    font-size: 16px;
    color: #64748b;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 8px;
    background: #fbac07;
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}

.category-header .fa-chevron-down {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.category-content {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    background: white;
    display: none;
}

/* ===== PRODUCT ITEMS ===== */
.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0 !important;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #eee;
}

.product-item:hover {
    background: #fafafa;
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    cursor: pointer;
}

.product-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #fbac07;
    border-radius: 4px;
}

.checkmark {
    /* Optional: custom checkbox styling dapat ditambahkan di sini */
}

.product-name {
    font-weight: 500;
    color: #1e293b;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.product-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-left: auto;
}

.product-code {
    color: #64748b;
    font-size: 11px;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.product-price {
    color: #3b3a3d;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

/* ===== SELECTED BADGES ===== */
.selected-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    align-items: center;
}

.badges-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-right: 4px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.2s ease;
}

.product-badge:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.product-badge button {
    background: none;
    border: none;
    color: #64748b;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.product-badge button:hover {
    background: #fee;
    color: #dc2626;
}

.badge-layanan {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
    box-shadow: 0 2px 4px rgba(0,0,0, 0.06);
}

.badge-paket {
    background: #edf7f2;
    border: 1px solid #cfe8dc;
    color: #18503b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

/* ===== SEARCH BOX ===== */
.search-box-layanan {
    width: 100%;
    padding: 12px 16px;
    padding-left: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.search-box-layanan:focus {
    outline: none;
    border-color: #fbac07;
    box-shadow: 0 0 0 3px rgba(251, 172, 7, 0.1);
}

/* ===== TOTAL INFO ===== */
.total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff4db;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #fde68a;
}

.total-info strong {
    color: #92400e;
    font-size: 18px;
    margin-left: 5px;
    font-weight: 700;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 12px;
    color: #64748b;
    font-size: 15px;
}

.empty-state i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.empty-state p {
    margin: 8px 0 0 0;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .product-tabs {
        gap: 6px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1;
        justify-content: center;
    }
    
    .tab-btn i {
        font-size: 14px;
    }
    
    .category-header {
        padding: 14px 16px;
    }
    
    .category-title {
        font-size: 14px;
    }
    
    .category-content {
        padding: 12px;
    }
    
    .product-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .product-checkbox {
        width: 100%;
    }
    
    .product-meta {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    
    .selected-badges {
        padding: 12px;
        gap: 6px;
    }
    
    .product-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .badges-label {
        width: 100%;
        margin-bottom: 4px;
    }
    
    .total-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 14px;
    }
    
    .search-box-layanan {
        padding: 10px 14px;
        padding-left: 38px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .tab-count {
        font-size: 10px;
        min-width: 18px;
        height: 18px;
        padding: 0 6px;
    }
    
    .category-title {
        font-size: 13px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 13px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-content {
    animation: fadeIn 0.3s ease;
}

.product-badge {
    animation: fadeIn 0.2s ease;
}

/* ===== SCROLLBAR STYLING ===== */
.category-content::-webkit-scrollbar {
    width: 6px;
}

.category-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.category-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.category-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* GRID CONTAINER */
#searchResults .search-results-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px;
  margin-top: 15px;
}

/* CARD */

#searchResults .search-results-grid .patient-card {
  width: auto !important;
  margin-bottom: 0 !important;
  border-left: 4px solid #FBAD17;
  display: grid;
}

.search-results-grid .patient-card .btn {
  width: 100%;
}

.patient-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.patient-card:hover {
  transform: translateY(-3px);
}

/* TEXT */
.patient-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
  color: #3b3a3d;
}

.patient-card p {
  margin: 2px 0;
  font-size: 13px;
  color: #555;
}

/* BUTTON */
.patient-card .btn {
  background: white;
  color: #3b3a3d;
  border: 1.5px solid #3b3a3d;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 500;
  transition: 0.2s ease;
}

.patient-card .btn:hover {
  background: #3b3a3d;
  color: white;

/* RESPONSIVE */
@media (max-width: 600px) {
  #searchResults .search-results-grid {
    grid-template-columns: 1fr;
  }
}


//ubah pesanan jadi ga accordion lagi
#categoryAccordion .category-header {
    display: none !important;
}

#categoryAccordion .category-content {
    display: block !important;
}

#categoryAccordion .category-item {
    border: none !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

#categoryAccordion .product-item {
    min-height: 44px !important;
    height: auto !important;
    padding: 6px 10px !important;
    margin: 0 !important;

    border: none !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    display: flex !important;
    align-items: center !important;
}

#categoryAccordion .product-checkbox {
    padding: 0 !important;
    margin: 0 !important;
    min-height: unset !important;

    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

#categoryAccordion .product-name {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important; /* maksimal 2 baris */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
}

#categoryAccordion .product-meta {
    flex-shrink: 0 !important;
    margin-left: 12px !important;
    align-self: center !important;
}

#categoryAccordion .product-price {
    font-size: 14px !important;
    white-space: nowrap !important;

}

#categoryAccordion .category-content {
    padding: 0 !important;
}

#categoryAccordion .product-checkbox {
    flex: 1 !important;
    min-width: 0 !important;
}

#categoryAccordion .checkmark {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
}

//recommended badge
.recommended-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #FBAD17;
    color: #3b3a3d;
    font-size: 11px;
    font-weight: 600;
}

/* ===== ORDER ACCORDION LAYANAN / PAKET ===== */

#categoryAccordion .category-header {
    display: flex !important;
}

#categoryAccordion .category-content {
    display: none;
    padding: 0 !important;
}

#categoryAccordion .category-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    background: #ffffff !important;
    overflow: hidden;
}

#categoryAccordion .category-header {
    padding: 15px 18px !important;
    background: #f8fafc !important;
    cursor: pointer;
}

#categoryAccordion .category-header:hover {
    background: #fff7e6 !important;
}

#categoryAccordion .category-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

#categoryAccordion .category-badge {
    background: #fff4db;
    color: #92400e;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 12px;
    font-weight: 700;
}

#categoryAccordion .search-result-list {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

#categoryAccordion .product-item {
    min-height: 48px !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid #eef2f6 !important;
}

#categoryAccordion .product-item:last-child {
    border-bottom: none !important;
}

@media (max-width: 768px) {
    .order-search-filter {
        grid-template-columns: 1fr 42px;
    }

    .filter-toggle-btn {
        width: 42px;
        height: 42px;
    }

    .filter-group label {
        width: 100%;
        margin-right: 0;
    }
}

/* ===== FILTER PANEL COLUMNS ===== */

/* ===== CLEAN ORDER FILTER UI ===== */

.order-search-filter {
    display: grid !important;
    grid-template-columns: 1fr 44px !important;
    gap: 10px !important;
    align-items: center !important;
}

.filter-toggle-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #dce2e7;
    background: #ffffff;
    color: #3b3a3d;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}

.filter-toggle-btn:hover {
    background: #fff4db;
    border-color: #fbad17;
}

/* panel */
#orderFilterPanel {
    margin-top: 12px !important;
    padding: 18px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
    max-height: 420px;
    overflow-y: auto;
}

/* section */
#orderFilterPanel .filter-group {
    margin-bottom: 18px !important;
}

#orderFilterPanel .filter-group:last-child {
    margin-bottom: 0 !important;
}

#orderFilterPanel .filter-group h4 {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #3b3a3d !important;
    margin: 0 0 10px 0 !important;
}

/* usia */
#orderFilterPanel .filter-group:first-child {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

#orderFilterPanel .filter-group:first-child h4 {
    width: 100% !important;
}

/* komponen grid */
#orderFilterPanel #komponenProdukFilters {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

/* checkbox pill */
#orderFilterPanel label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    line-height: 1.25 !important;
    transition: 0.2s ease !important;
}

#orderFilterPanel label:hover {
    background: #fff7e6 !important;
    border-color: #fbad17 !important;
    color: #92400e !important;
}

#orderFilterPanel input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
    accent-color: #fbad17 !important;
    flex-shrink: 0 !important;
}

/* selected state modern browser */
#orderFilterPanel label:has(input[type="checkbox"]:checked) {
    background: #fff4db !important;
    border-color: #fbad17 !important;
    color: #92400e !important;
}

/* mobile */
@media (max-width: 768px) {
    #orderFilterPanel #komponenProdukFilters {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .order-search-filter {
        grid-template-columns: 1fr 42px !important;
    }

    #orderFilterPanel {
        padding: 14px !important;
        max-height: 360px;
    }

    #orderFilterPanel #komponenProdukFilters {
        grid-template-columns: 1fr !important;
    }

    #orderFilterPanel label {
        border-radius: 12px !important;
    }
}


///CSS ALAMAT

.address-section {
    margin-top: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-header h3 {
    margin: 0;
    color: #1f2937;
}

.section-header p {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 13px;
}

.address-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.address-card .remove-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: #fee2e2;
    color: #b91c1c;
    cursor: pointer;
}

.address-card .remove-btn:hover {
    background: #fecaca;
}

.address-primary-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: #374151;
}

.address-card button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.address-view-card {
    border-left: 4px solid #f59e0b;
}

.address-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.address-view-header h4 {
    margin: 0;
}

.address-badge-primary {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.address-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.address-card-actions .btn {
    flex: 1;
}

.btn-danger-soft {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.btn-danger-soft:hover {
    background: #fecaca;
}

.address-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
}

.address-card-grid > .address-item {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    min-width: 0;
}

@media (max-width: 768px) {
    .address-card-grid {
        grid-template-columns: 1fr;
    }
}


//autocomplete wrapper

.autocomplete-wrapper {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}

.autocomplete-wrapper input {
    width: 100%;
    border: none !important;
    outline: none;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.autocomplete-dropdown {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    color: black;
}

.autocomplete-item:hover {
    background: #f8fafc;
}

.textarea-disabled-soft {
    background: #f3f4f6;
    color: #6b7280;
}

.service-address-card {
    cursor: default;
    transition: 0.2s ease;
    border-left: 4px solid #fbad17
}

.service-address-card.selected-service-address {
    border: 2px solid #fbad17;
    background: linear-gradient(135deg, #fffaf0, #ffffff);
    box-shadow: 0 10px 24px rgba(251, 173, 23, 0.18);
}

.service-address-card.selected-service-address::after {
    content: "Alamat layanan dipilih";
    display: inline-block;
    margin-top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf7f2;
    color: #18503b;
    font-size: 12px;
    font-weight: 600;
}

.service-address-grid {
    margin-top: 14px;
}

.product-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.product-main {
    flex: 1;
    min-width: 0;
}

.product-title-row {
    display: flex;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #3b3a3d;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-price {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
    font-weight: 700;
    color: #18503b;
    font-size: 14px;
}

.package-components {
    margin-top: 6px;
}

.package-component-row {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .product-main {
        padding-right: 0 !important;
    }

    .product-price {
        position: static !important;
        display: block;
        text-align: left !important;
        margin-top: 4px;
    }

    .product-top-right {
        position: static !important;
        margin-top: 6px;
    }
}

.address-view-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #fbad17;
    border-radius: 14px;
    padding: 18px;
    margin-top: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.address-primary-badge {
    padding: 7px 14px;
    border-radius: 999px;
    background: #eef8f3;
    color: #18503b;
    border: 1px solid #cfe9db;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.address-card-body {
    font-size: 14px;
    line-height: 1.7;
    color: #3b3a3d;
    margin-bottom: 16px;
}

.address-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.address-card-actions .btn {
    width: 100%;
}

#registrationForm .order-validation-box {
    display: none;
    width: 100%;
    box-sizing: border-box;

    margin: 0 0 18px 0;
    padding: 14px 16px;

    border: 1px solid #fed7aa;
    border-left: 5px solid #fbad17;
    border-radius: 14px;

    background: #fff7ed;
    color: #9a3412;

    font-size: 14px;
    line-height: 1.55;
    box-shadow: 0 6px 18px rgba(251, 173, 23, 0.10);
}

#registrationForm .order-validation-box strong {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0 0 8px 0;

    color: #9a3412;
    font-size: 14px;
    font-weight: 800;
}

#registrationForm .order-validation-box strong::before {
    content: "⚠";
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 999px;
    background: #fbad17;
    color: #3b3a3d;

    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

#registrationForm .order-validation-box ul {
    margin: 0;
    padding-left: 30px;
}

#registrationForm .order-validation-box li {
    margin: 4px 0;
    color: #7c2d12;
}

.public-patient-search {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.public-patient-search #searchName,
.public-patient-search #searchPublicKeyword {
    flex: 1 1 180px;
    min-width: 180px;
}

.public-patient-search #publicSearchType {
    flex: 0 0 auto;
    min-width: 160px;
}

.public-patient-search .btn-search-main {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Khusus width 430 - 620px */
@media (min-width: 430px) and (max-width: 620px) {
    .public-patient-search {
        display: grid !important;
        grid-template-columns: 155px minmax(0, 1fr) !important;
        gap: 8px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .public-patient-search #searchName {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .public-patient-search #publicSearchType {
        grid-column: 1 / 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .public-patient-search #searchPublicKeyword {
        grid-column: 2 / 3 !important;
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .public-patient-search .btn-search-main {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }
}

/* Di bawah 430px tetap stack semua */
@media (max-width: 429px) {
    .public-patient-search {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .public-patient-search #searchName,
    .public-patient-search #publicSearchType,
    .public-patient-search #searchPublicKeyword,
    .public-patient-search .btn-search-main {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }
}

.order-product-row {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    align-items: flex-start;
}

.order-product-row > input[type="checkbox"],
.order-product-row > .checkmark {
    grid-column: 1;
    grid-row: 1;
    margin-top: 3px;
}

.order-product-row .product-main {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
}

.order-product-row .product-topline {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
}

.order-product-row .product-name {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    font-weight: 600 !important;
    color: #3b3a3d !important;
    line-height: 1.35 !important;
}

.order-product-row .product-badge-area {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
    min-width: 0 !important;
}

.order-product-row .product-price-inline {
    display: inline-flex !important;
    align-items: center !important;
    font-weight: 700 !important;
    color: #18503b !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

.order-product-row .package-readable-box {
    width: 100%;
    box-sizing: border-box;
    margin-top: 2px;
    padding: 12px;
    border-radius: 14px;
    background: #fcfcfd;
    border: 1px solid #eef0f3;
}

.order-product-row .package-overview-wrapper,
.order-product-row .package-items-wrapper,
.order-product-row .package-items-list,
.order-product-row .package-item-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .order-product-row .product-topline {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .order-product-row .product-badge-area {
        align-items: flex-start;
        width: 100%;
    }

    .order-product-row .product-price-inline {
        display: block;
        white-space: normal;
    }

    .order-product-row .package-readable-box {
        width: 100%;
        margin-top: 4px;
    }
}

.order-product-row .recommended-badge {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
    background: #fff4d6 !important;
    color: #8a5a00 !important;
    border: 1px solid #fde2a7 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

input#searchLayanan {
    margin: 0 20px;
}
