/* --- LUXURY COLOR PALETTE --- */
:root {
    --luxury-dark: #0b0e0f;
    --luxury-card: #131718;
    --gold: #c5a358;
    --gold-glow: rgba(197, 163, 88, 0.4);
    --glass-white: rgba(255, 255, 255, 0.04);
}

body { background: var(--luxury-dark); color: #fff; font-family: 'Inter', sans-serif; }
.serif { font-family: 'Cormorant Garamond', serif; }
.text-gold { color: var(--gold); }

/* --- HERO SECTION --- */
.katalog-hero { 
    padding: 160px 0 100px; 
    background-image: url('../img/pattern.png'); 
    background-size: cover;
    position: relative;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at top, rgba(197, 163, 88, 0.05), transparent);
}
.badge-luxury {
    display: inline-block; padding: 8px 25px; border: 1px solid var(--gold);
    border-radius: 50px; font-size: 0.65rem; color: var(--gold); letter-spacing: 4px;
    background: rgba(197, 163, 88, 0.05);
}
.hero-main-title { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1; }

.search-premium-box {
    max-width: 800px; height: 75px; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
    backdrop-filter: blur(25px); padding: 8px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.search-input-pro {
    background: transparent; border: none; color: #fff; width: 100%; height: 100%;
    padding: 0 20px; outline: none; font-size: 1.1rem;
}
.btn-search-glow {
    height: 100%; padding: 0 45px; background: #fff; color: #000; border: none;
    border-radius: 100px; font-weight: 900; letter-spacing: 1px; font-size: 0.8rem;
    transition: 0.4s ease;
}
.btn-search-glow:hover { background: var(--gold); box-shadow: 0 0 30px var(--gold-glow); }

/* --- TOOLBAR --- */
.toolbar-premium-row { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 25px; }
.btn-refine-luxury {
    background: transparent; border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 14px 35px; border-radius: 100px; font-weight: 700;
    font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s;
}
.btn-refine-luxury:hover { border-color: var(--gold); color: var(--gold); }
.view-switcher-group { background: var(--glass-white); padding: 6px; border-radius: 15px; }
.btn-switch-pro { border: none; background: transparent; color: rgba(255,255,255,0.2); padding: 10px 18px; border-radius: 10px; transition: 0.3s; }
.btn-switch-pro.active { background: var(--gold); color: #000; }

/* --- LUXURY CARD GRID --- */
.luxury-card-pro {
    background: var(--luxury-card); border: 1px solid rgba(255,255,255,0.04);
    border-radius: 35px; overflow: hidden; transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer; height: 100%; display: flex; flex-direction: column;
}
.luxury-card-pro:hover { transform: translateY(-15px); border-color: var(--gold); box-shadow: 0 40px 80px rgba(0,0,0,0.6); }

.luxury-card-img-box { position: relative; height: 300px; overflow: hidden; }
.img-obj { width: 100%; height: 100%; object-fit: cover; transition: 2s ease; }
.luxury-card-pro:hover .img-obj { transform: scale(1.1); }

.card-top-meta { position: absolute; inset: 0; padding: 25px; display: flex; justify-content: space-between; align-items: flex-start; }
.badge-status-pro { background: var(--gold); color: #000; padding: 6px 15px; border-radius: 50px; font-size: 0.6rem; font-weight: 900; }
.btn-wishlist-pro { width: 45px; height: 45px; background: rgba(0,0,0,0.3); border: none; border-radius: 50%; color: #fff; backdrop-filter: blur(10px); }
.rating-pro-tag { position: absolute; bottom: 25px; right: 25px; background: #fff; color: #000; padding: 6px 16px; border-radius: 50px; font-weight: 900; font-size: 0.8rem; }

.luxury-card-content { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; }
.loc-tag-pro { font-size: 0.7rem; font-weight: 800; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.card-title-pro { font-size: 1.8rem; line-height: 1.2; }
.spec-pro-item { font-size: 0.9rem; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 50px; }

.card-footer-pro { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; }
.price-val-pro { font-size: 1.6rem; font-weight: 700; color: #fff; font-family: 'Inter'; }
.price-unit { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-left: 5px; }
.btn-arrow-luxury { font-size: 0.65rem; font-weight: 900; color: var(--gold); letter-spacing: 2px; }

/* --- LIST VIEW (FIXED PROPORTIONS) --- */
.pro-list-active .luxury-card-pro { flex-direction: row; height: 350px !important; }
.pro-list-active .luxury-card-img-box { width: 450px !important; height: 100% !important; flex-shrink: 0; }
.pro-list-active .luxury-card-content { justify-content: center; }

@media (max-width: 991px) {
    .pro-list-active .luxury-card-pro { flex-direction: column; height: auto !important; }
    .pro-list-active .luxury-card-img-box { width: 100% !important; height: 280px !important; }
    .search-premium-box { height: auto; border-radius: 30px; flex-direction: column; padding: 15px; }
    .btn-search-glow { width: 100%; height: 60px; margin-top: 10px; }
}

/* --- SIDEBAR FILTERS --- */
.luxury-sidebar-panel { background: var(--luxury-dark) !important; border-right: 1px solid rgba(255,255,255,0.1); width: 450px !important; }
.label-pro-side { font-size: 0.75rem; color: var(--gold); font-weight: 800; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.pro-control-side, .pro-select-side {
    background: var(--glass-white) !important; border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important; padding: 16px; border-radius: 15px; width: 100%; outline: none;
}
.pro-select-side option { background: #131718; color: #fff; }

/* Container untuk list fasilitas agar bisa di-scroll jika banyak */
.amenities-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-height: 300px; /* Batas tinggi agar tidak kepanjangan */
    overflow-y: auto;  /* Munculkan scrollbar jika lewat batas */
    padding-right: 10px;
}

/* Styling Checkbox Custom agar terlihat mewah */
.check-luxury-box input {
    display: none; /* Sembunyikan checkbox asli */
}

.check-luxury-box label {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03); /* Latar belakang gelap transparan */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7); /* Warna teks putih agak pudar */
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Efek saat kursor diarahkan (Hover) */
.check-luxury-box label:hover {
    border-color: #c5a358;
    color: #fff;
}

/* Efek saat dipilih (Checked) */
.check-luxury-box input:checked + label {
    background: #c5a358; /* Warna emas */
    color: #000;         /* Teks jadi hitam agar kontras */
    border-color: #c5a358;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(197, 163, 88, 0.3);
}

/* Custom Scrollbar untuk list fasilitas agar tetap cantik */
.amenities-flex-wrap::-webkit-scrollbar {
    width: 4px;
}
.amenities-flex-wrap::-webkit-scrollbar-thumb {
    background: #c5a358;
    border-radius: 10px;
}
.btn-pro-gold-fill { background: var(--gold); color: #000; font-weight: 900; border: none; border-radius: 100px; letter-spacing: 2px; }
.btn-pro-outline-white { border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 100px; text-decoration: none; text-align: center; display: block; font-size: 0.85rem; font-weight: 700; }