:root {
    --primary-gold: #eebb5d;
    --bg-dark: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --nav-bg: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

#google_translate_element {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.goog-te-gadget-simple {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--primary-gold) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

.goog-te-gadget-simple span {
    color: #fff !important;
    font-family: 'Kanit', sans-serif !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.page-header {
    position: relative;
    background-image: url('../../assets/img/page/booking/bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 1));
    z-index: 1;
}


.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    letter-spacing: 2px;
    z-index: 3;
    font-weight: 300;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.search-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s;
}

.search-container:focus-within {
    box-shadow: 0 0 15px rgba(238, 187, 93, 0.3);
    border-color: var(--primary-gold);
}

.search-icon {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-right: 15px;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Kanit', sans-serif;
    background: transparent;
}

.clear-icon {
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.clear-icon:hover {
    color: #e74c3c;
}

.category-filter {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    padding: 10px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    padding: 8px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    flex: 0 0 auto;
    white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    font-weight: 500;
}

@media (min-width: 992px) {
    .category-filter {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.table-grid {
    padding-bottom: 50px;
    min-height: 400px;
}

.table-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-gold);
}

.table-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.table-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.table-card:hover .table-img {
    transform: scale(1.1);
}

.zone-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
    color: #fff;
    text-transform: uppercase;
}

.badge-indoor {
    background-color: #3498db;
}

.badge-outdoor {
    background-color: #27ae60;
}

.badge-private {
    background-color: #9b59b6;
}

.badge-rooftop {
    background-color: #e67e22;
}

.table-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.table-name {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}

.table-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.capacity-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-size: 0.95rem;
    background: rgba(238, 187, 93, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    width: fit-content;
}

.btn-book {
    background-color: var(--primary-gold);
    color: #000;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s;
}

.btn-book:hover {
    background-color: #fff;
    transform: translateY(-2px);
}


.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swal-dark-gold-popup {
    background-color: #1a1a1a !important;
    border: 1px solid #c5a059 !important;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.15) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
}

.swal-dark-gold-title {
    color: #c5a059 !important;
    font-weight: 600 !important;
    font-size: 1.6rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem !important;
}

.swal-dark-content {
    color: #e0e0e0 !important;
}

.custom-swal-input {
    background-color: #252525 !important;
    border: 1px solid #3a3a3a !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    padding: 0.6rem 1rem !important;
    border-radius: 6px !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.custom-swal-input:focus {
    border-color: #c5a059 !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1) !important;
    background-color: #2a2a2a !important;
}

.custom-swal-label {
    text-align: left;
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.swal2-actions {
    margin-top: 1.5rem !important;
    gap: 1rem;
}

.swal2-confirm {
    background-color: #c5a059 !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border: none !important;
    padding: 10px 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3) !important;
}

.swal2-confirm:hover {
    background-color: #d4b060 !important;
    transform: translateY(-1px);
}

.swal2-cancel {
    background-color: #333333 !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    padding: 10px 30px !important;
    border-radius: 6px !important;
}

.swal2-cancel:hover {
    background-color: #444444 !important;
}

.swal2-html-container {
    margin: 5px 0px !important;
    overflow-x: hidden !important;
}

@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {}

@media (max-width: 359.98px) {}