/* ============================================================
   SPRAY TIDUR — style.css (FULL)
   Landing page mobile-first dengan tema putih & hijau
   Semua fitur: prefix +62, timeline 4 langkah, voucher toggle, notifikasi close
   ============================================================ */

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

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    padding-top: 60px;
    padding-bottom: 80px;
    -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-home {
    font-size: 13px;
    font-weight: 600;
    color: #4CAF50;
    text-decoration: none;
    cursor: pointer;
}

.header-home i {
    margin-right: 4px;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-brand {
    font-weight: 700;
    font-size: 17px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-track {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #4CAF50;
    cursor: pointer;
}

.header-track i {
    margin-right: 4px;
}

/* ===== STICKY FOOTER (dengan toggle voucher) ===== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 8px 16px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border-top: 1px solid #eee;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.voucher-toggle {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.voucher-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}
.voucher-sub {
    font-size: 10px;
    color: #888;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #4CAF50;
}
input:checked + .slider:before {
    transform: translateX(18px);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-price {
    text-align: right;
}
.footer-price-original {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    display: block;
}
.footer-price-discount {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
}
.btn-primary-footer {
    background: #4CAF50;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
}
.btn-primary-footer:active {
    transform: scale(0.95);
}

/* ===== NOTIFICATION POPUP (dengan tombol close) ===== */
.notification-popup {
    position: fixed;
    bottom: 90px;        /* ← posisi di bawah */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 400px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    padding-right: 36px;
    z-index: 999;
    border-left: 4px solid #4CAF50;
    animation: slideUp 0.5s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Tombol Close (X) */
.notif-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s;
}
.notif-close:hover {
    color: #333;
}

/* Animasi muncul */
@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.notif-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-icon {
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
}

.notif-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

/* ===== TRUST POPUP ===== */
.trust-popup {
    position: fixed;
    top: 70px;
    right: 16px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    padding: 16px 16px 30px;
}

.section {
    display: none;
}

.section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PRODUCT HEADER ===== */
.product-header {
    text-align: center;
    margin-bottom: 16px;
}

.product-image-placeholder img {
    width: 100%;
    border-radius: 16px;
    background: #e9ecef;
}

.product-title {
    font-size: 22px;
    font-weight: 800;
    margin: 12px 0 4px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
}

.product-sub {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 12px;
}

/* ===== BENEFITS ===== */
.product-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    background: #f1f8e9;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 12px 0 16px;
}

.benefit-item {
    font-size: 13px;
    font-weight: 500;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefit-item i {
    color: #4CAF50;
    font-size: 14px;
}

/* ===== GIMMICK BAR ===== */
.gimmick-bar {
    display: flex;
    justify-content: space-between;
    background: #fff3e0;
    padding: 10px 16px;
    border-radius: 12px;
    margin: 16px 0;
    font-size: 13px;
    font-weight: 600;
}

/* ===== PAKET ===== */
.package-section {
    background: #f1f8e9;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.package-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.package-name {
    font-weight: 600;
    font-size: 15px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.price-discount {
    font-weight: 700;
    font-size: 18px;
    color: #d32f2f;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 30px;
    padding: 4px 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.qty-control button {
    width: 30px;
    height: 30px;
    border: none;
    background: #e0e0e0;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s;
}

.qty-control button:active {
    transform: scale(0.9);
}

.qty-control span {
    font-size: 16px;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.package-note {
    font-size: 11px;
    color: #666;
    margin-top: 6px;
}

/* ===== FORM ===== */
.form-section h3 {
    margin-bottom: 12px;
}

#order-form input,
#order-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    background: #fafafa;
    transition: 0.2s;
}

#order-form input:focus,
#order-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
    background: #fff;
}

/* Search Kecamatan */
.search-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    display: none;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: 0.15s;
}

.search-result-item:hover {
    background: #f1f8e9;
}

.search-result-item .result-detail {
    font-size: 11px;
    color: #999;
}

/* ===== PHONE WRAPPER ===== */
.phone-wrapper {
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.2s;
}
.phone-wrapper:focus-within {
    border-color: #4CAF50;
}
.phone-prefix {
    padding: 12px 8px 12px 14px;
    background: #f0f0f0;
    font-weight: 600;
    color: #1a1a1a;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    flex-shrink: 0;
}
.phone-wrapper input {
    border: none !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    flex: 1;
    background: transparent !important;
    border-radius: 0 !important;
}
.phone-wrapper input:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===== PAYMENT & COURIER ===== */
.payment-section,
.courier-section {
    margin: 16px 0;
}

.payment-list,
.courier-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
}

.payment-item,
.courier-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    transition: 0.2s;
    border: 1.5px solid #eee;
}

.payment-item:hover,
.courier-item:hover {
    border-color: #4CAF50;
}

.payment-item.selected,
.courier-item.selected {
    border-color: #4CAF50;
    background: #e8f5e9;
}

.payment-item input[type="radio"],
.courier-item input[type="radio"] {
    display: none;
}

.payment-item .icon-box,
.courier-item .icon-box {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ddd;
}

.payment-item .icon-box img,
.courier-item .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.payment-item span:last-child,
.courier-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.courier-item.recommended {
    border-color: #FF9800;
    background: #fff8e1;
}

.recommended-badge {
    font-size: 11px;
    font-weight: 700;
    color: #e65100;
    background: #fff3e0;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 4px;
}

/* ===== RINGKASAN ===== */
.order-summary {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    margin: 16px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}

.summary-row:last-child {
    border-bottom: none;
}

.total-row {
    font-size: 18px;
    color: #d32f2f;
    border-top: 2px solid #d32f2f;
    padding-top: 10px;
    margin-top: 6px;
}

.voucher-row {
    margin: 8px 0;
}

.voucher-btn {
    background: #fff3e0;
    border: 1.5px dashed #FF9800;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #e65100;
    cursor: pointer;
    transition: 0.2s;
}

.voucher-btn:active {
    transform: scale(0.95);
}

.voucher-btn.used {
    background: #e8f5e9;
    border-color: #4CAF50;
    color: #2e7d32;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.btn-primary {
    background: #4CAF50;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    background: #e9ecef;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
}

.btn-secondary:active {
    transform: scale(0.97);
}

.btn-success {
    background: #25D366;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.btn-success:active {
    transform: scale(0.97);
}

/* ===== TESTIMONI ===== */
.testimonial-section {
    margin-top: 24px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
}

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

.testi-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 28px;
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
}

.testi-stars {
    color: #FFB300;
    font-size: 13px;
}

.testi-badge {
    color: #4CAF50;
    font-size: 12px;
    font-weight: 600;
}

.testi-product-photo {
    margin: 8px 0;
}

.testi-product-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
}

.testi-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-top: 4px;
}

.testimonial-view-all {
    text-align: center;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 1px solid #eee;
}

.testimonial-view-all span {
    font-size: 14px;
    color: #4CAF50;
    font-weight: 600;
    cursor: default;
}

.testimonial-count {
    color: #999 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    margin-left: 4px;
}

/* ===== POWERED BY ===== */
.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 16px 0;
    border-top: 1px solid #eee;
}

.powered-by span {
    font-size: 13px;
    color: #999;
}

.powered-logo {
    height: 28px;
    width: auto;
}

/* ===== PAYMENT PAGE ===== */
.payment-instruction {
    background: #f1f8e9;
    padding: 16px;
    border-radius: 16px;
    margin: 16px 0;
    font-size: 14px;
}

.payment-status {
    text-align: center;
    margin: 20px 0;
}

.spinner {
    border: 4px solid #e0e0e0;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* ===== PACKED PAGE ===== */
.success-icon {
    font-size: 60px;
    color: #25D366;
    text-align: center;
}

.order-details {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    margin: 16px 0;
}

.order-details p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 6px 0;
}
.order-details p:last-child {
    border-bottom: none;
}

.badge {
    background: #FF9800;
    color: #fff;
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.packed-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

/* ============================================================
   TRACKING PAGE
   ============================================================ */

.tracking-form {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    align-items: center;
}

.tracking-form .phone-wrapper {
    flex: 1;
    margin: 0;
}

.tracking-form .btn-primary {
    padding: 12px 20px;
    font-size: 15px;
    flex-shrink: 0;
    border-radius: 12px;
}

.tracking-result {
    margin-top: 20px;
}

/* Order list item */
.order-list-item {
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.order-list-item:hover {
    border-color: #4CAF50;
    background: #f9fcf9;
}
.order-list-item .oid {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}
.order-list-item .meta {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}
.order-list-item .status-chip {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    background: #e8f5e9;
    color: #2e7d32;
}
.order-list-item .status-chip.pending {
    background: #fff3e0;
    color: #e65100;
}

/* Tracking item */
.tracking-item {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
}

/* ===== TIMELINE 4 LANGKAH ===== */
.timeline-4 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 24px 0 12px;
    padding: 0 0;
}

.timeline-4::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
    border-radius: 2px;
}

.tl-progress-4 {
    position: absolute;
    top: 18px;
    left: 12.5%;
    height: 4px;
    background: #4CAF50;
    z-index: 1;
    border-radius: 2px;
    transition: width 0.5s ease;
    max-width: 80%;
    width: 0%;
}

.tl-step-4 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.tl-dot-4 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
    color: #999;
}

.tl-step-4.done .tl-dot-4 {
    border-color: #4CAF50;
    background: #4CAF50;
    color: #fff;
}

.tl-step-4.current .tl-dot-4 {
    border-color: #4CAF50;
    background: #fff;
    color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.tl-label-4 {
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    color: #999;
    text-align: center;
}
.tl-step-4.done .tl-label-4,
.tl-step-4.current .tl-label-4 {
    color: #1a1a1a;
    font-weight: 700;
}

/* ===== WAITING PAYMENT BOX ===== */
.waiting-payment-box {
    text-align: center;
    padding: 22px 10px;
    background: #FFF8E8;
    border-radius: 12px;
    margin: 18px 0;
}
.waiting-payment-box .wp-icon {
    font-size: 30px;
    margin-bottom: 6px;
}
.waiting-payment-box .wp-title {
    font-weight: 800;
    font-size: 16px;
    color: #A66A00;
}
.waiting-payment-box .wp-sub {
    font-size: 12.5px;
    color: #666;
    margin-top: 4px;
}

/* ===== RESI BOX ===== */
.resi-box {
    text-align: center;
    background: #e8f5e9;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}
.resi-box .k {
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
}
.resi-box .v {
    font-weight: 800;
    font-size: 18px;
    margin-top: 4px;
    color: #1a1a1a;
    word-break: break-all;
}

/* ===== WA BUTTON ===== */
.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 800;
    font-size: 14.5px;
    margin-top: 10px;
    transition: 0.2s;
}
.wa-btn:hover {
    opacity: 0.9;
}
.wa-btn .icon-box {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wa-btn .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== FORM MSG ===== */
.form-msg {
    font-size: 13.5px;
    color: #d32f2f;
    margin-top: 10px;
    display: none;
}
.form-msg.show {
    display: block;
}

/* ===== CARD ===== */
.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.card + .card {
    margin-top: 12px;
}
.section-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 4px;
}
.section-sub {
    font-size: 13px;
    color: #666;
    margin: 0 0 14px;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 380px) {
    .product-title {
        font-size: 19px;
    }
    .package-box {
        flex-direction: column;
        align-items: stretch;
    }
    .qty-control {
        align-self: center;
    }
    .payment-item,
    .courier-item {
        padding: 8px 12px;
    }
    .payment-item .icon-box,
    .courier-item .icon-box {
        width: 28px;
        height: 28px;
    }
    .tracking-form {
        flex-direction: column;
    }
    .tracking-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .phone-prefix {
        font-size: 12px;
        padding: 10px 6px 10px 10px;
    }
    .phone-wrapper input {
        padding: 10px 10px !important;
        font-size: 13px;
    }
    .tl-dot-4 {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .tl-label-4 {
        font-size: 10px;
    }
    .footer-inner {
        flex-wrap: wrap;
        gap: 4px;
    }
    .footer-right {
        width: 100%;
        justify-content: flex-end;
    }
    .btn-primary-footer {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}
.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.hidden {
    display: none !important;
}
