.custom-tour-filter-bar {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 24px 18px 18px 18px;
    margin: 24px auto 32px auto;
    max-width: 1200px;
    align-items: center;
    gap: 0 24px;
}
.ctf-col {
    flex: 1 1 180px;
    min-width: 160px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ctf-label {
    color: #888;
    font-size: 1.05em;
    margin-bottom: 4px;
    font-weight: 600;
}
#ctf-search-btn {
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0 8px;
    font-size: 0.93em;
    font-weight: 800;
    cursor: pointer;
    height: 32px;
    min-width: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#ctf-search-btn:hover {
    background: #ff8800;
}
.ctf-search-btn-col {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.ctf-results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    justify-content: flex-start;
}
.ctf-result-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 18px 16px 14px 16px;
    width: 240px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.ctf-result-card:hover {
    box-shadow: 0 6px 24px rgba(255,136,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.ctf-result-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.ctf-result-card h3 {
    font-size: 1.13em;
    font-weight: 700;
    color: #222;
    margin: 8px 0 6px 0;
}
.ctf-card-price {
    color: #ff8800;
    font-weight: 900;
    font-size: 1.13em;
    margin-top: 4px;
}
.price-aed {
    color: #ff8800;
    font-weight: 900;
    font-size: 1.13em;
    margin-left: 2px;
}
.ctf-no-results {
    margin: 32px 0;
    color: #888;
    font-size: 1.15em;
    text-align: center;
}
@media (max-width: 900px) {
    .custom-tour-filter-bar {
        flex-direction: column;
        gap: 0;
        padding: 18px 8px 12px 8px;
    }
    .ctf-col {
        width: 100%;
        min-width: 0;
        margin-bottom: 10px;
    }
    .ctf-search-btn-col {
        width: 100%;
        justify-content: center;
    }
    .ctf-results-grid {
        justify-content: center;
    }
}
@media (max-width: 700px) {
    #ctf-search-btn {
        padding: 0 4px;
        min-width: 36px;
        height: 28px;
        font-size: 0.90em;
    }
}

.custom-tour-filter-bar.fancy-bar {
    display: flex;
    flex-wrap: nowrap;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    padding: 32px 24px;
    margin: 24px auto 24px auto;
    max-width: 1200px;
    align-items: center;
    gap: 0 32px;
    overflow: visible;
    min-height: 0;
}
.fancy-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background: #fff;
    border: none;
    margin: 0 0;
    position: relative;
    text-align: center;
}
.fancy-col:last-child {
    border: none;
}
.ctf-label {
    color: #888;
    font-size: 1.13em;
    margin-bottom: 2px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.ctf-value {
    color: #222;
    font-size: 1.22em;
    font-weight: 800;
    margin-bottom: 0;
    margin-top: 0;
    display: block;
    letter-spacing: 0.01em;
}
.ctf-icon {
    position: static;
    margin: 16px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ctf-icon svg {
    width: 28px;
    height: 28px;
    stroke: #e6a100;
    display: block;
}
.fancy-search-col {
    background: #e6a100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 180px;
    border-radius: 12px;
    height: 64px;
    margin-left: 32px;
    box-shadow: 0 2px 8px rgba(230,161,0,0.10);
}
#ctf-search-btn {
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 36px;
    font-size: 1.18em;
    font-weight: 700;
    cursor: pointer;
    height: 64px;
    min-width: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#ctf-search-btn:hover {
    background: #ff8800;
}
.ctf-search-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}
.fancy-col select,
.fancy-col .ctf-duration-inputs,
.fancy-col .ctf-price-inputs {
    display: none;
    margin-top: 6px;
}
.fancy-col.active select,
.fancy-col.active .ctf-duration-inputs,
.fancy-col.active .ctf-price-inputs {
    display: block;
}
.fancy-col.active .ctf-value {
    display: none;
}
.fancy-col {
    cursor: pointer;
}
.fancy-col input,
.fancy-col select {
    font-size: 1.08em;
    padding: 8px 12px;
    border: 1.5px solid #ffd6a0;
    border-radius: 8px;
    background: #fffaf5;
    margin-top: 4px;
    width: 100%;
}
.fancy-col input:focus,
.fancy-col select:focus {
    border: 1.5px solid #ff8800;
    outline: none;
}
.fancy-col[data-filter="duration"] {
    min-width: 0;
    max-width: 180px;
    flex: 1 1 0;
}
.ctf-duration-inputs {
    display: none;
    margin-top: 6px;
}
.fancy-col.active .ctf-duration-inputs {
    display: block;
}
.ctf-duration-inputs input {
    font-size: 1.08em;
    padding: 8px 12px;
    border: 1.5px solid #ffd6a0;
    border-radius: 8px;
    background: #fffaf5;
    margin-top: 2px;
    width: 60px;
    margin-right: 2px;
}
@media (max-width: 900px) {
    .custom-tour-filter-bar.fancy-bar {
        flex-direction: column;
        border-radius: 14px;
        padding: 18px 8px 12px 8px;
        gap: 0;
        min-width: 0;
        max-width: 98vw;
    }
    .fancy-col, .fancy-search-col {
        border: none;
        min-width: 0;
        width: 100%;
        padding: 12px 8px 10px 8px;
        margin: 0 0 12px 0;
        border-radius: 0;
    }
    .fancy-search-col {
        min-width: 0;
        width: 100%;
        border-radius: 10px;
        margin-left: 0;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    #ctf-search-btn {
        background: #e6a100;
        color: #fff;
        border-radius: 16px;
        padding: 0 32px;
        min-width: 200px;
        height: 60px;
        font-size: 1.25em;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border: none;
        box-shadow: none;
    }
    .ctf-search-icon {
        margin-right: 12px;
        display: flex;
        align-items: center;
    }
    .ctf-icon svg {
        width: 22px;
        height: 22px;
    }
} 