/*
 * File: teknos-style.css
 * Deskripsi: Aturan gaya untuk widget Teknos Tracking Order.
 * Catatan: Ini adalah file lengkap yang telah dioptimalkan.
 */

/* Import font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Aturan dasar untuk mengisolasi widget dari gaya tema lain */
.teknos-tracking-order-widget {
    all: unset;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.teknos-tracking-order-widget *,
.teknos-tracking-order-widget *:before,
.teknos-tracking-order-widget *:after {
    box-sizing: border-box;
}

/* Deklarasi variabel CSS untuk warna, font, dll. */
.teknos-tracking-order-widget {
    --bg-main: #FFFFFF;
    --primary-blue: #010e39;
    --text-light: #FFFFFF;
    --text-dark: #010e39;
    --text-subtle: #6B7280;
    --border-color: #E5E7EB;
    --success-color: #16A34A;
    --font-family: 'Poppins', sans-serif;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 4px 15px rgba(1, 14, 57, 0.2);
}

/* Gaya dasar untuk elemen umum di dalam widget */
.teknos-tracking-order-widget .container {
    width: 100%;
    max-width: 420px;
    margin: auto;
    padding: 0;
    background-color: transparent;
}

.teknos-tracking-order-widget .header-logo {
    width: 80px;
    height: auto;
    opacity: 1;
    margin-bottom: 24px;
}

.teknos-tracking-order-widget .search-view {
    background-color: var(--bg-main);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.teknos-tracking-order-widget .search-view h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.teknos-tracking-order-widget .search-view .subtitle {
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 24px;
}

.teknos-tracking-order-widget .status-message {
    text-align: center;
    padding: 16px;
    color: var(--text-subtle);
    font-size: 14px;
}

.teknos-tracking-order-widget .result-view {
    display: none;
}

/* ================================== */
/* KOTAK PENCARIAN & TOMBOL           */
/* ================================== */
.teknos-tracking-order-widget .search-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.teknos-tracking-order-widget .search-box input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    background-color: #E5E7EB;
    text-align: center;
    color: var(--text-dark);
}

.teknos-tracking-order-widget .search-box input::placeholder {
    color: #9CA3AF;
}

.teknos-tracking-order-widget .search-box button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 6px rgba(1, 14, 57, 0.2);
}

.teknos-tracking-order-widget .search-box button:hover {
    background-color: #011a63;
    transform: translateY(-2px);
}

/* ================================== */
/* RIWAYAT PENCARIAN                  */
/* ================================== */
.teknos-tracking-order-widget .search-history {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.teknos-tracking-order-widget .history-item {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-blue);
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
}

.teknos-tracking-order-widget .history-item .icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    fill: var(--text-light);
}

.teknos-tracking-order-widget .history-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.teknos-tracking-order-widget .history-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.teknos-tracking-order-widget .history-item p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
    align-items: flex-start;
}

.teknos-tracking-order-widget .history-item .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    font-size: 18px;
}

.teknos-tracking-order-widget .history-item .close-btn:hover {
    opacity: 1;
}

/* ================================== */
/* TAMPILAN HASIL                     */
/* ================================== */
.teknos-tracking-order-widget .details-header {
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.teknos-tracking-order-widget .header-top {
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.teknos-tracking-order-widget .header-top h1 {
    font-size: 24px;
    font-weight: 600;
}

.teknos-tracking-order-widget .header-top p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.teknos-tracking-order-widget .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 16px;
}

.teknos-tracking-order-widget .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.teknos-tracking-order-widget .info-item .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.9;
}

.teknos-tracking-order-widget .info-item-content h3 {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.teknos-tracking-order-widget .info-item-content p {
    font-size: 13px;
    font-weight: 500;
}

/* ================================== */
/* PELACAK PROGRES                    */
/* ================================== */
.teknos-tracking-order-widget .progress-tracker {
    position: relative;
    background-color: var(--bg-main);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.teknos-tracking-order-widget .progress-item {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 50px;
    padding-left: 45px;
    margin-bottom: 10px;
}

.teknos-tracking-order-widget .progress-item:last-child {
    margin-bottom: 0;
}

.teknos-tracking-order-widget .timeline {
    position: absolute;
    left: 10px;
    top: 25px;
    height: calc(100% - 5px);
    width: 2px;
    background-color: var(--primary-blue);
    z-index: 1;
}

.teknos-tracking-order-widget .progress-item:last-child .timeline {
    display: none;
}

.teknos-tracking-order-widget .progress-marker {
    position: absolute;
    left: 0;
    top: 12px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: var(--bg-main);
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.teknos-tracking-order-widget .progress-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    flex-shrink: 0;
    margin-right: 12px;
}

.teknos-tracking-order-widget .progress-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.teknos-tracking-order-widget .progress-content p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-subtle);
    line-height: 1.4;
}

.teknos-tracking-order-widget .progress-item:not(.done) .progress-marker {
    border-color: var(--border-color);
}

.teknos-tracking-order-widget .progress-item:not(.done) .progress-content h4,
.teknos-tracking-order-widget .progress-item:not(.done) .progress-content p,
.teknos-tracking-order-widget .progress-item:not(.done) .progress-icon {
    opacity: 0.5;
}

.teknos-tracking-order-widget .progress-item.done .progress-marker {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.teknos-tracking-order-widget .progress-item.done .timeline {
    background-color: var(--primary-blue);
}

/* ================================== */
/* TOMBOL KEMBALI                     */
/* ================================== */
.teknos-tracking-order-widget .back-button-container {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.teknos-tracking-order-widget .back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: transform 0.2s;
}

.teknos-tracking-order-widget .back-button:hover {
    transform: scale(1.05);
}

/* ================================== */
/* ANIMASI                            */
/* ================================== */
.teknos-tracking-order-widget .loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

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

.teknos-tracking-order-widget .loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 10px 0;
}

.teknos-tracking-order-widget .loading-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.teknos-tracking-order-widget .loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.teknos-tracking-order-widget .loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from { transform: translateY(0); opacity: 0.6; }
    to { transform: translateY(-8px); opacity: 1; }
}

/* ================================== */
/* TOMBOL WHATSAPP                    */
/* ================================== */
.teknos-tracking-order-widget .whatsapp-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.teknos-tracking-order-widget .whatsapp-button:hover {
    transform: scale(1.1);
}

.teknos-tracking-order-widget .whatsapp-button svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.teknos-tracking-order-widget .whatsapp-button .popup-text {
    position: absolute;
    right: 75px;
    bottom: 5px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 12px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.teknos-tracking-order-widget .whatsapp-button:hover .popup-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.teknos-tracking-order-widget .whatsapp-button .popup-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 18px solid var(--primary-blue);
    border-bottom: 15px solid transparent;
}

/* ================================== */
/* MEDIA QUERIES                      */
/* ================================== */
@media (max-width: 480px) {
    .teknos-tracking-order-widget {
        padding: 10px;
    }

    .teknos-tracking-order-widget .search-view {
        padding: 24px 16px;
    }

    .teknos-tracking-order-widget .search-view h1 {
        font-size: 20px;
    }

    .teknos-tracking-order-widget .search-view .subtitle {
        font-size: 12px;
    }

    .teknos-tracking-order-widget .search-box button {
        padding: 5px 10px;
    }

    .teknos-tracking-order-widget .info-grid {
        grid-template-columns: 1fr;
    }

    .teknos-tracking-order-widget .whatsapp-button .popup-text {
        right: 75px;
        bottom: 7px;
        font-size: 11px;
        padding: 10px 15px;
        border-radius: 12px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .teknos-tracking-order-widget .whatsapp-button .popup-text::after {
        border-top: 11.6px solid transparent;
        border-left: 15px solid var(--primary-blue);
        border-bottom: 11.6px solid transparent;
    }
}

/* --- GAYA TAMBAHAN UNTUK TAMPILAN BARU --- */

/* --- TAMPILAN TIPE 2: GRADIENT & MODERN --- */
.teknos-tracking-order-widget.search-view-type_2 {
    --primary-color: #010e39; /* Variabel lokal untuk tema ini */
    background: #f0f4f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.search-view-type_2 .search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-view-type_2 h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.search-view-type_2 .search-input-wrapper {
    flex-direction: column;
    gap: 1rem;
    position: relative;
    top: -15px;
}

.search-view-type_2 .search-input-wrapper input {
    width: 100%;
    border-radius: 50px;
    padding: 15px 25px;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

.search-view-type_2 .search-input-wrapper input:focus {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.search-view-type_2 .search-input-wrapper button {
    width: 100%;
    border-radius: 50px;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary-color), #5a9bff);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-view-type_2 .whatsapp-btn {
    background: #25d366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
    font-size: 1rem;
}

.search-view-type_2 .history-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.search-view-type_2 .progress-tracker {
    display: grid;
    gap: 15px;
}

.search-view-type_2 .progress-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-view-type_2 .progress-item .timeline {
    display: none;
}

.search-view-type_2 .progress-marker {
    width: 30px;
    height: 30px;
    background-color: #e0e6ec;
    border-radius: 50%;
    transition: background-color 0.4s;
}

.search-view-type_2 .progress-item.done .progress-marker {
    background-color: #12b76a;
}

.search-view-type_2 .progress-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- TAMPILAN TIPE 3: MINIMALIS & CLEAN --- */
.teknos-tracking-order-widget.search-view-type_3 {
    --primary-color: #010e39;
    padding: 0;
    background-color: #f9fafc;
    box-shadow: none;
    border-radius: 12px;
    overflow: hidden;
}

.search-view-type_3 .search-header {
    background-color: var(--primary-color);
    padding: 3rem 2rem 5rem;
    text-align: center;
    color: #fff;
}

.search-view-type_3 .search-header h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #fff;
}

.search-view-type_3 .search-header p {
    color: rgba(255, 255, 255, 0.85);
}

.search-view-type_3 .logo-image {
    filter: invert(1);
    width: 120px;
    margin-bottom: 1.5rem;
}

.search-view-type_3 .search-input-wrapper {
    padding: 0 2rem;
    margin-top: -45px;
}

.search-view-type_3 .search-input-wrapper input {
    border: 1px solid #ddd;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.search-view-type_3 .search-input-wrapper button {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--primary-color);
}

.search-view-type_3 .history-section {
    padding: 0 2rem;
}

.search-view-type_3 #resultView {
    padding: 2rem;
}

.search-view-type_3 .order-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.search-view-type_3 .summary-item {
    background-color: #fff;
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-view-type_3 .progress-tracker {
    border-left: 2px solid #ddd;
    padding-left: 20px;
    margin-left: 25px;
}

.search-view-type_3 .progress-item {
    gap: 20px;
    align-items: center;
    padding-bottom: 2.5rem;
}

.search-view-type_3 .progress-marker {
    background-color: transparent;
    border: 3px solid var(--primary-color);
    width: 22px;
    height: 22px;
}

.search-view-type_3 .progress-item.done .progress-marker {
    background-color: var(--primary-color);
}

.search-view-type_3 .timeline {
    display: none;
}

.search-view-type_3 .progress-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.search-view-type_3 .progress-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.search-view-type_3 .progress-content p {
    font-size: 0.9rem;
}

/* --- TAMPILAN TIPE 4: GELAP & TEGAS --- */
.teknos-tracking-order-widget.search-view-type_4 {
    --primary-color: #4299e1;
    padding: 3rem;
    background-color: #1a202c;
    color: #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-view-type_4 .search-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.search-view-type_4 .search-input-wrapper {
    gap: 15px;
}

.search-view-type_4 .search-input-wrapper input {
    background-color: #2d3748;
    color: #e2e8f0;
    border: none;
    box-shadow: none;
    padding: 15px 20px;
}

.search-view-type_4 .search-input-wrapper button {
    background-color: var(--primary-color);
    box-shadow: none;
    padding: 15px;
}

.search-view-type_4 .history-item,
.search-view-type_4 .order-summary .summary-item,
.search-view-type_4 .progress-item {
    background-color: #2d3748;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-view-type_4 .summary-item p {
    color: #a0aec0;
}

.search-view-type_4 .progress-marker {
    background-color: #4a5568;
}

.search-view-type_4 .progress-item.done .progress-marker {
    background-color: var(--primary-color);
}


/* --- TAMPILAN TIPE 5: LEMBUT & MINIMALIS --- */
.teknos-tracking-order-widget.search-view-type_5 {
    --primary-color: #4c66f5;
    padding: 3rem;
    background-color: #f7f7f9;
    color: #4a5568;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.search-view-type_5 .search-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d3748;
}

.search-view-type_5 .search-input-wrapper input {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
}

.search-view-type_5 .search-input-wrapper button {
    border-radius: 12px;
    padding: 16px;
    background-color: var(--primary-color);
}

.search-view-type_5 .history-item,
.search-view-type_5 .order-summary .summary-item,
.search-view-type_5 .progress-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.search-view-type_5 .progress-marker {
    background-color: #e2e8f0;
}

.search-view-type_5 .progress-item.done .progress-marker {
    background-color: var(--primary-color);
}

.search-view-type_5 .progress-item .timeline {
    display: none;
}


/* --- TAMPILAN TIPE 6: PROFESIONAL & ELEGAN --- */
.teknos-tracking-order-widget.search-view-type_6 {
    --primary-color: #0d6efd;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.search-view-type_6 .search-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 2rem;
}

.search-view-type_6 .search-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: #212529;
}

.search-view-type_6 .search-input-wrapper {
    gap: 10px;
}

.search-view-type_6 .search-input-wrapper input {
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #ced4da;
    box-shadow: none;
}

.search-view-type_6 .search-input-wrapper button {
    border-radius: 0;
    padding: 14px;
    background-color: #495057;
}

.search-view-type_6 .progress-tracker {
    border-left: 2px solid #ced4da;
    padding-left: 2rem;
    margin-left: 1.5rem;
}

.search-view-type_6 .progress-item {
    background: none;
    box-shadow: none;
    align-items: flex-start;
}

.search-view-type_6 .progress-marker {
    background-color: #adb5bd;
    width: 20px;
    height: 20px;
}

.search-view-type_6 .progress-item.done .progress-marker {
    background-color: var(--primary-color);
}


/* --- TAMPILAN TIPE 7: KARTU MINIMALIS --- */
.teknos-tracking-order-widget.search-view-type_7 {
    --primary-color: #283747;
    padding: 2rem;
    background-color: #f4f7f9;
    border-radius: 12px;
}

.search-view-type_7 > div {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.search-view-type_7 .search-input-wrapper {
    margin-bottom: 2rem;
    padding: 0;
}

.search-view-type_7 .search-input-wrapper input {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.search-view-type_7 .search-input-wrapper button {
    border-radius: 8px;
    padding: 12px;
    background-color: var(--primary-color);
}

.search-view-type_7 .history-section {
    padding: 2rem;
    background-color: #fff;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.search-view-type_7 #resultView {
    padding: 2.5rem;
}


/* --- TAMPILAN TIPE 8: PENUH WARNA & MODERN --- */
.teknos-tracking-order-widget.search-view-type_8 {
    --primary-color: #6a11cb;
    padding: 2.5rem;
    background-color: #f0f4f8;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.search-view-type_8 .search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-view-type_8 .search-input-wrapper input {
    background-color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.search-view-type_8 .search-input-wrapper button {
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}

.search-view-type_8 .whatsapp-btn {
    background: linear-gradient(45deg, #12d385, #12a66d);
    border-radius: 50px;
}

.search-view-type_8 .progress-marker {
    background-color: #e2e8f0;
}

.search-view-type_8 .progress-item.done .progress-marker {
    background: linear-gradient(45deg, #12d385, #12a66d);
}


/* --- TAMPILAN TIPE 9: BULAT & RAMAH --- */
.teknos-tracking-order-widget.search-view-type_9 {
    --primary-color: #ff6f61;
    padding: 3rem;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.search-view-type_9 .search-header h2 {
    font-size: 2rem;
    color: #333;
}

.search-view-type_9 .search-input-wrapper input {
    border-radius: 50px;
    border: 2px solid #e0e0e0;
}

.search-view-type_9 .search-input-wrapper button {
    border-radius: 50px;
    background-color: var(--primary-color);
}

.search-view-type_9 .history-item,
.search-view-type_9 .order-summary .summary-item {
    border-radius: 20px;
    background-color: #f7f7f9;
}

.search-view-type_9 .progress-tracker {
    border-left: 2px dashed #e0e0e0;
    padding-left: 2rem;
}

.search-view-type_9 .progress-marker {
    background-color: #f7f7f9;
    border: 2px solid #ccc;
    width: 24px;
    height: 24px;
}

.search-view-type_9 .progress-item.done .progress-marker {
    background-color: #88d8b0;
}


/* --- TAMPILAN TIPE 10: GLASSMORPHISM --- */
.teknos-tracking-order-widget.search-view-type_10 {
    --primary-color: #011a63;
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.search-view-type_10 h2,
.search-view-type_10 h3 {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.search-view-type_10 p {
    color: rgba(255, 255, 255, 0.9);
}

.search-view-type_10 .search-input-wrapper input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}

.search-view-type_10 .search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-view-type_10 .search-input-wrapper button {
    background-color: #fff;
    color: var(--primary-color);
}

.search-view-type_10 .history-item {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    color: #fff;
}

.search-view-type_10 .progress-marker {
    background: rgba(255, 255, 255, 0.5);
    border: none;
}

.search-view-type_10 .progress-item.done .progress-marker {
    background-color: var(--primary-color);
}