/* ===== TRANG ĐỊA ĐIỂM DU LỊCH ===== */

/* Hero section */
.dddl-hero {
    position: relative;
    overflow: hidden;
}

.dddl-bg {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Search card */
.dddl-search-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #DDEEFF;
    border-radius: 16px;
    padding: 24px 28px;
    width: 480px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 10;
}

.dddl-search-title {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.4;
}

.dddl-search-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.dddl-input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dddl-input-wrap label {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.dddl-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border-radius: 8px;
    padding: 9px 12px;
}

.dddl-input i {
    color: #7ABEFA;
    font-size: 14px;
}

.dddl-input input {
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #000000;
    width: 100%;
    background: transparent;
}

.dddl-search-btn {
    background-color: #7ABEFA;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.dddl-search-btn:hover {
    opacity: 0.85;
}

/* ===== GỢI Ý ĐỊA ĐIỂM ===== */
.suggest-section {
    padding: 20px 135px 40px;
}

.suggest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.tag {
    padding: 7px 16px;
    border: 1.5px solid #7ABEFA;
    border-radius: 50px;
    font-size: 13px;
    color: #000000;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.tag:hover,
.tag.active {
    background-color: #DDEEFF;
    color: #7ABEFA;
    border-color: #7ABEFA;
}

/* Nút trái phải */
.dddl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.dddl-arrow:hover {
    background: rgba(255,255,255,1);
}

.dddl-arrow.left  { left: 12px; }
.dddl-arrow.right { right: 12px; }

/* ===== XEM THÊM ===== */
.see-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.see-more-btn:hover {
    color: #7ABEFA;
}

.see-more-btn i {
    font-size: 12px;
}

/* ===== SEARCH OVERLAY ===== */
.dddl-overlay {
    display: none;
    position: fixed;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
}

.dddl-overlay.show {
    display: block;
}

.dddl-overlay-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    text-decoration: none;
}

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

.dddl-overlay-item:hover {
    background: #f5f9ff;
}

.dddl-overlay-item img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.dddl-overlay-item-info {
    flex: 1;
    min-width: 0;
}

.dddl-overlay-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dddl-overlay-item-meta {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.dddl-overlay-item-meta i {
    font-size: 11px;
    color: #7ABEFA;
    margin-right: 3px;
}

.dddl-overlay-empty {
    padding: 20px;
    text-align: center;
    color: #aaa;
    font-size: 13px;
}
