/* xl - DESKTOP STYLES */ 
/* Container utama widget baru */
.extra-tour-details-widget {
    background: #fff;
    border-top: 1px solid #eee; /* Pemisah dengan kotak harga atas */
    padding: 20px;
    font-family: 'Open Sans', sans-serif; /* Font umum */
    color: #333;
    font-size: 14px;
}

/* Bagian Header Ikon (Flexible, Trusted, Guaranteed) */
.etd-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.etd-header-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.etd-header-item svg {
    width: 20px;
    height: 20px;
    fill: #ccc; /* Warna ikon abu-abu header */
    margin-bottom: 5px;
}

/* List Detail (Trip Style, Code, Route, Features) */
.etd-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.etd-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

/* Ikon di sebelah kiri list */
.etd-icon {
    flex-shrink: 0;
    width: 24px;
    margin-right: 12px;
    margin-top: 2px;
}

.etd-icon svg {
    width: 20px;
    height: 20px;
    fill: #5C98F2 /* Warna Pink/Merah sesuai gambar */
}

/* Teks Label dan Value */
.etd-text {
    font-size: 14px;
}

.etd-label {
    font-weight: 700;
    color: #000;
    font-family: 'Times New Roman', serif; /* Meniru gaya font serif di gambar */
}

.etd-value {
    color: #333;
    font-family: sans-serif;
}

.etd-note {
    font-style: italic;
    color: #555;
}

/* --- TAMBAHAN: Button Price Details --- */
.price-details-btn-wrapper {
    margin-top: 20px;
}

.price-details-btn {
    display: block;
    width: 100%;
    background-color: #0071e3; /* Warna Biru Tombol */
    color: #ffffff !important;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s;
    box-sizing: border-box; /* Agar padding tidak merusak lebar */
}

.price-details-btn:hover {
    background-color: #005bb5; /* Warna biru lebih gelap saat hover */
    color: #fff;
}

