*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0f0f0f;
    color:white;
    font-family:'Lora', serif;
    overflow-x:hidden;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    z-index:1000;

    background:rgba(0,0,0,0.35);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(212,175,55,0.15);
}

/* LOGO */

.logo img{
    height:70px;
}

/* NAV */

.nav{
    display:flex;
    gap:40px;
}

.nav a{
    color:white;
    text-decoration:none;

    font-size:16px;
    letter-spacing:1px;

    position:relative;

    transition:0.3s;
}

.nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:1px;

    background:#d4af37;

    transition:0.4s;
}

.nav a:hover{
    color:#d4af37;
}

.nav a:hover::after{
    width:100%;
}

/* SOCIALS */

.socials{
    display:flex;
    gap:20px;
}

.socials a{
    text-decoration:none;
    color:white;

    transition:0.3s;
}

.socials a:hover{
    color:#d4af37;
}

/* HERO */

.hero{
    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* VIDEO */

.hero-video{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.overlay{
    position:absolute;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.7)
    );

    z-index:1;
}

/* CONTENT */

.hero-content{
    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;
}

.hero-content h1{
    font-family:'Playfair Display', serif;

    font-size:90px;

    margin-bottom:20px;

    color:#d4af37;

    letter-spacing:2px;
}

.hero-content p{
    font-size:24px;

    line-height:1.6;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.gold-btn,
.dark-btn{

    padding:16px 36px;

    text-decoration:none;

    font-size:16px;

    letter-spacing:1px;

    transition:0.4s;

    border-radius:50px;
}

.gold-btn{
    background:#d4af37;
    color:black;
}

.gold-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 0 25px rgba(212,175,55,0.5);
}

.dark-btn{
    border:1px solid #d4af37;

    color:white;
}

.dark-btn:hover{
    background:#d4af37;
    color:black;
}

/* RESPONSIVE */

@media(max-width:900px){

    .header{
        padding:20px;
    }

    .nav{
        display:none;
    }

    .socials{
        display:none;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}
/* FLOATING BUTTONS */

.floating-buttons{

    position:fixed;

    bottom:25px;
    right:25px;

    display:flex;
    flex-direction:column;

    gap:15px;

    z-index:9999;
}

/* GENERAL */

.float-btn{

    padding:16px 24px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    font-weight:bold;

    letter-spacing:1px;

    transition:0.3s;

    backdrop-filter:blur(10px);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.35);
}

/* WHATSAPP */

.whatsapp-btn{

    background:#25D366;
}

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 20px rgba(37,211,102,0.5);
}

/* CALL */

.call-btn{

    background:#d4af37;

    color:black;
}

.call-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 20px rgba(212,175,55,0.5);
}

/* MOBILE */

@media(max-width:768px){

    .floating-buttons{

        bottom:15px;
        right:15px;
    }

    .float-btn{

        padding:14px 20px;

        font-size:14px;
    }
}
/* ===================================== */
/* GLOBAL LUXURY SECTIONS */
/* ===================================== */

.lux-services,
.best-sellers,
.why-us,
.partners{

    padding:120px 60px;

    background:#111;

    color:white;
}

/* ===================================== */
/* TITLES */
/* ===================================== */

.lux-title{

    text-align:center;

    margin-bottom:80px;
}

.gold-line{

    width:120px;
    height:2px;

    background:#d4af37;

    display:block;

    margin:0 auto 30px auto;
}

.lux-title h2{

    font-size:60px;

    color:#d4af37;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;
}

.lux-title p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    color:#d0d0d0;

    font-size:18px;
}

/* ===================================== */
/* GRID */
/* ===================================== */

.lux-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:40px;
}

/* ===================================== */
/* CARD */
/* ===================================== */

.lux-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:600px;

    background:black;

    transition:0.5s;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.5);
}

.lux-card:hover{

    transform:translateY(-10px);
}

.lux-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s;
}

.lux-card:hover img{

    transform:scale(1.08);
}

/* ===================================== */
/* OVERLAY */
/* ===================================== */

.lux-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,0.95)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;
}

.lux-overlay h3{

    font-size:42px;

    color:#d4af37;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;
}

.lux-overlay p{

    line-height:1.7;

    margin-bottom:25px;

    color:#e0e0e0;
}

.lux-overlay ul{

    margin-bottom:30px;

    padding-left:20px;
}

.lux-overlay li{

    margin-bottom:10px;

    color:#cfcfcf;
}

/* ===================================== */
/* BUTTON */
/* ===================================== */

.lux-btn{

    align-self:flex-start;

    padding:14px 28px;

    border:1px solid #d4af37;

    border-radius:40px;

    text-decoration:none;

    color:white;

    transition:0.4s;
}

.lux-btn:hover{

    background:#d4af37;

    color:black;
}

/* ===================================== */
/* SELLERS */
/* ===================================== */

.seller-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.seller-card{

    padding:50px;

    border-radius:25px;

    background:#1b1b1b;

    text-align:center;

    border:1px solid rgba(212,175,55,0.2);

    transition:0.4s;
}

.seller-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;
}

.seller-card h3{

    color:#d4af37;

    margin-bottom:20px;

    font-size:30px;
}

.seller-card span{

    font-size:24px;

    font-weight:bold;
}

/* ===================================== */
/* WHY US hohohohoh */
/* ===================================== */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.why-box{

    background:#1a1a1a;

    padding:50px;

    border-radius:25px;

    text-align:center;

    transition:0.4s;
}

.why-box:hover{

    transform:translateY(-8px);

    background:#202020;
}

.why-box h3{

    color:#d4af37;

    margin-bottom:20px;
}

/* ===================================== */
/* PARTNERS */
/* ===================================== */

.partner-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;
}

.partner-box{

    background:#1b1b1b;

    padding:40px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:180px;

    transition:0.4s;
}

.partner-box:hover{

    transform:translateY(-8px);

    border:1px solid #d4af37;
}

.partner-box img{

    max-width:140px;

    opacity:0.8;

    transition:0.4s;
}

.partner-box:hover img{

    opacity:1;
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px){

    .lux-services,
    .best-sellers,
    .why-us,
    .partners{

        padding:80px 20px;
    }

    .lux-title h2{

        font-size:42px;
    }

    .lux-card{

        height:500px;
    }

    .lux-overlay h3{

        font-size:32px;
    }
}
/* HEADER SCROLL */

.header-scrolled{

    background: rgba(0,0,0,0.95);

    backdrop-filter: blur(10px);

    box-shadow: 0 0 20px rgba(0,0,0,0.4);

}


/* ACTIVE MENU */

.nav a.active{

    color:#d4af37;

}


/* BOOKING MODAL */

.booking-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,0.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

}

.booking-modal.active{

    display:flex;

}

.booking-content{

    width:90%;

    max-width:500px;

    background:#111;

    border:1px solid rgba(212,175,55,0.3);

    border-radius:20px;

    padding:40px;

    position:relative;

}

.close-modal{

    position:absolute;

    top:15px;

    right:20px;

    color:white;

    font-size:30px;

    cursor:pointer;

}

.booking-content h2{

    color:#d4af37;

    margin-bottom:30px;

}

.booking-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.booking-form input,
.booking-form select,
.booking-form textarea{

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,0.1);

    padding:15px;

    border-radius:12px;

    color:white;

    font-size:16px;

}

.booking-form button{

    background:#d4af37;

    color:black;

    border:none;

    padding:16px;

    border-radius:12px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;

}

.booking-form button:hover{

    transform:translateY(-2px);

    background:#f0cf6a;

}
/* BOOKING SYSTEM */

.booking-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.82);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.booking-modal.active{
    display:flex;
}

.booking-box{
    width:100%;
    max-width:560px;
    background:#111;
    border:1px solid rgba(212,175,55,0.35);
    border-radius:28px;
    padding:40px;
    position:relative;
    box-shadow:0 0 40px rgba(0,0,0,0.7);
}

.booking-close{
    position:absolute;
    top:18px;
    right:22px;
    background:none;
    border:none;
    color:white;
    font-size:36px;
    cursor:pointer;
}

.booking-box h2{
    font-family:'Playfair Display', serif;
    color:#d4af37;
    font-size:42px;
    margin-bottom:10px;
}

.booking-subtitle{
    color:#ccc;
    margin-bottom:30px;
}

#bookingForm{
    display:flex;
    flex-direction:column;
    gap:14px;
}

#bookingForm label{
    color:#d4af37;
    font-weight:bold;
    letter-spacing:1px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{
    width:100%;
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,0.12);
    color:white;
    padding:14px 16px;
    border-radius:14px;
    font-size:16px;
    outline:none;
}

#bookingForm textarea{
    min-height:90px;
    resize:none;
}

.slots-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin:5px 0 10px;
}

.slot-btn{
    padding:12px;
    border-radius:12px;
    border:1px solid rgba(212,175,55,0.35);
    background:#1b1b1b;
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.slot-btn:hover,
.slot-btn.selected{
    background:#d4af37;
    color:black;
}

.slot-message{
    grid-column:1 / -1;
    color:#aaa;
    font-size:15px;
}

.booking-submit{
    margin-top:10px;
    padding:16px;
    border:none;
    border-radius:40px;
    background:#d4af37;
    color:black;
    font-weight:bold;
    cursor:pointer;
    font-size:17px;
    transition:0.3s;
}

.booking-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 0 20px rgba(212,175,55,0.45);
}

.booking-info{
    color:#aaa;
    font-size:14px;
    text-align:center;
    margin-top:8px;
}

.lux-btn,
.gold-btn{
    cursor:pointer;
    border:none;
}

/* MOBILE BOOKING */

@media(max-width:768px){

    .booking-box{
        padding:30px 22px;
        max-height:92vh;
        overflow-y:auto;
    }

    .booking-box h2{
        font-size:34px;
    }

    .slots-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
.header-scrolled{
    background:rgba(0,0,0,0.92);
    box-shadow:0 0 25px rgba(0,0,0,0.5);
}
/* ADMIN PANEL */

.admin-page{
    min-height:100vh;
    background-image:url("images/admin/admin-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.admin-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.admin-danger,
.admin-back{
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    font-weight:bold;
}

.admin-danger{
    background:#7a1c1c;
    color:white;
}

.admin-back{
    background:#d4af37;
    color:black;
}

.admin-table-wrap{
    width:100%;
    overflow-x:auto;
    border:1px solid rgba(212,175,55,0.25);
    border-radius:20px;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
    background:#161616;
}

.admin-table th,
.admin-table td{
    padding:18px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    text-align:left;
    color:white;
}

.admin-table th{
    color:#d4af37;
    background:#111;
}

.delete-reservation{
    background:#d4af37;
    color:black;
    border:none;
    padding:10px 18px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}

.empty-admin{
    text-align:center;
    padding:40px;
    color:#aaa;
}

/* ADMIN MOBILE */

@media(max-width:768px){

    .admin-page{
        padding:100px 20px;
    }

    .admin-actions{
        flex-direction:column;
    }

    .admin-danger,
    .admin-back{
        width:100%;
        text-align:center;
    }
}
/* ADMIN SLOTS */

.admin-slot-box{
    max-width:900px;
    margin:0 auto 40px;
    background:#161616;
    border:1px solid rgba(212,175,55,0.25);
    border-radius:24px;
    padding:35px;
}

.admin-slot-box h3{
    color:#d4af37;
    font-size:32px;
    margin-bottom:25px;
    text-align:center;
}

.slot-form{
    display:grid;
    grid-template-columns:1fr 1fr 1fr auto;
    gap:15px;
}

.slot-form input,
.slot-form select{
    background:#1f1f1f;
    color:white;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:12px;
    padding:14px;
    font-size:16px;
}

.slot-form button{
    background:#d4af37;
    color:black;
    border:none;
    border-radius:12px;
    padding:14px 24px;
    font-weight:bold;
    cursor:pointer;
}

.delete-slot{
    background:#7a1c1c;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:30px;
    cursor:pointer;
}

.slots-table-wrap{
    margin-bottom:50px;
}

@media(max-width:768px){

    .slot-form{
        grid-template-columns:1fr;
    }

    .admin-slot-box{
        padding:25px;
    }
}
.bulk-slot-form{
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr auto;
}

@media(max-width:1100px){
    .bulk-slot-form{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .bulk-slot-form{
        grid-template-columns:1fr;
    }
}
.admin-section{
    max-width:1100px;
    margin:50px auto;
}

.admin-section h3{
    color:#d4af37;
    font-size:34px;
    margin-bottom:25px;
    text-align:center;
}

.admin-list{
    display:grid;
    gap:18px;
}

.admin-slot-card,
.reservation-card{
    background:#161616;
    border:1px solid rgba(212,175,55,0.25);
    border-radius:20px;
    padding:24px;
    color:white;
}

.admin-slot-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.admin-slot-card h4,
.reservation-card h4{
    color:#d4af37;
    font-size:24px;
    margin-bottom:8px;
}

.admin-slot-card p,
.reservation-card p{
    margin:6px 0;
}

.admin-slot-card span{
    display:block;
    font-size:22px;
    margin-bottom:8px;
}

.admin-slot-card small{
    color:#aaa;
}

.reservation-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding-bottom:12px;
    margin-bottom:14px;
}

.reservation-top span{
    color:#d4af37;
}

.delete-slot{
    background:#7a1c1c;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
}

.admin-loading{
    background:#161616;
    border:1px solid rgba(212,175,55,0.25);
    border-radius:18px;
    padding:25px;
    text-align:center;
    color:#aaa;
}

@media(max-width:768px){
    .admin-slot-card,
    .reservation-top{
        flex-direction:column;
        align-items:flex-start;
    }
}
.bulk-slot-form{
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr auto;
}

@media(max-width:1100px){
    .bulk-slot-form{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .bulk-slot-form{
        grid-template-columns:1fr;
    }
}
.slot-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.close-slot{
    background:#d4af37;
    color:black;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}
.open-slot{
    background:#1f7a3a;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}
/* FIX BOOKING MODAL SCROLL */

body.modal-open{
    overflow:hidden;
}

.booking-modal{
    overflow-y:auto;
    align-items:flex-start;
    padding:30px 15px;
}

.booking-box{
    max-height:90vh;
    overflow-y:auto;
    margin:auto;
}

#bookingForm select{
    max-width:100%;
}

#bookingService{
    max-height:260px;
}

/* MOBILE FIX */

@media(max-width:768px){

    .booking-modal{
        align-items:flex-start;
        padding:20px 10px;
    }

    .booking-box{
        max-height:88vh;
        overflow-y:auto;
        padding:28px 18px;
    }

    #bookingForm input,
    #bookingForm select,
    #bookingForm textarea{
        font-size:16px;
    }
}
.service-info{
    color:#8a6f3c;
    font-size:15px;
    margin-top:-8px;
    margin-bottom:8px;
}
/* ===================================== */
/* PASTEL LUXURY THEME */
/* ===================================== */

:root{
    --cream:#f7f1e8;
    --beige:#ead9c7;
    --champagne:#d8b76a;
    --soft-gold:#c9a24d;
    --brown:#4a3728;
    --rose:#d8b6aa;
    --text:#3b2d24;
    --white:#fffaf4;
}

/* GLOBAL */

body{
    background:var(--cream);
    color:var(--text);
}

/* HEADER */

.header{
    background:rgba(247,241,232,0.82);
    border-bottom:1px solid rgba(201,162,77,0.35);
}

.header-scrolled{
    background:rgba(247,241,232,0.96);
}

.nav a,
.socials a{
    color:var(--brown);
}

.nav a:hover,
.nav a.active,
.socials a:hover{
    color:var(--soft-gold);
}

/* HERO */

.overlay{
    background:
    linear-gradient(
        rgba(74,55,40,0.30),
        rgba(247,241,232,0.60)
    );
}

.hero-content h1{
    color:var(--soft-gold);
}

.hero-content p{
    color:var(--brown);
}

/* BUTTONS */

.gold-btn,
.booking-submit,
.booking-button{
    background:var(--soft-gold);
    color:white;
}

.dark-btn{
    border:1px solid var(--soft-gold);
    color:var(--brown);
}

.dark-btn:hover{
    background:var(--soft-gold);
    color:white;
}

/* SECTIONS */

.lux-services,
.best-sellers,
.why-us,
.partners{
    background:var(--cream);
    color:var(--text);
}

.lux-title h2,
.section-title h2{
    color:var(--soft-gold);
}

.lux-title p,
.section-title p{
    color:#6c5b4f;
}

.gold-line{
    background:var(--soft-gold);
}

/* CARDS */

.lux-card,
.seller-card,
.why-box,
.partner-box{
    background:var(--white);
    border:1px solid rgba(201,162,77,0.22);
    box-shadow:0 20px 50px rgba(74,55,40,0.12);
}

.lux-overlay{
    background:
    linear-gradient(
        transparent,
        rgba(74,55,40,0.78)
    );
}

.lux-overlay h3{
    color:#f5d77c;
}

.lux-overlay p,
.lux-overlay li{
    color:#fff5e7;
}

.seller-card h3,
.why-box h3{
    color:var(--soft-gold);
}

.seller-card span,
.why-box p{
    color:var(--brown);
}

/* BOOKING MODAL */

.booking-modal{
    background:rgba(74,55,40,0.50);
}

.booking-box{
    background:var(--white);
    color:var(--text);
    border:1px solid rgba(201,162,77,0.35);
}

.booking-box h2,
#bookingForm label{
    color:var(--soft-gold);
}

.booking-subtitle,
.booking-info{
    color:#6c5b4f;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{
    background:#fff;
    color:var(--text);
    border:1px solid rgba(74,55,40,0.18);
}

.slot-btn{
    background:#fff;
    color:var(--brown);
    border:1px solid rgba(201,162,77,0.35);
}

.slot-btn:hover,
.slot-btn.selected{
    background:var(--soft-gold);
    color:white;
}

.slot-message{
    color:#6c5b4f;
}

.close-modal,
.booking-close{
    color:var(--brown);
}

/* FLOATING BUTTONS */

.call-btn{
    background:var(--soft-gold);
    color:white;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

/* ADMIN */

.admin-page{
    background:var(--cream);
    color:var(--text);
}

.admin-slot-box,
.admin-slot-card,
.reservation-card,
.admin-loading{
    background:var(--white);
    color:var(--text);
    border:1px solid rgba(201,162,77,0.25);
}

.admin-section h3,
.admin-slot-box h3,
.admin-slot-card h4,
.reservation-card h4{
    color:var(--soft-gold);
}

.slot-form input,
.slot-form select{
    background:#fff;
    color:var(--text);
    border:1px solid rgba(74,55,40,0.18);
}
/* FIX SERVICE CARDS CONTRAST */

.lux-card{
    background:#d8c7b8;
    border:1px solid rgba(155,120,55,0.35);
}

.lux-card img{
    opacity:0.65;
}

.lux-overlay{
    background:
    linear-gradient(
        rgba(70,48,34,0.25),
        rgba(70,48,34,0.88)
    );
}

.lux-overlay h3{
    color:#f7d77a;
    text-shadow:0 2px 8px rgba(0,0,0,0.45);
}

.lux-overlay p,
.lux-overlay li{
    color:#fffaf0;
    text-shadow:0 2px 6px rgba(0,0,0,0.45);
}

.lux-btn{
    background:#c9a24d;
    color:white;
    border:2px solid #c9a24d;
    font-weight:700;
    padding:14px 30px;
    border-radius:40px;
    box-shadow:0 8px 22px rgba(0,0,0,0.25);
}

.lux-btn:hover{
    background:#8a6a28;
    border-color:#8a6a28;
    color:white;
    transform:translateY(-3px);
}
.gold-btn,
.booking-submit{
    background:#c9a24d;
    color:white;
    border:2px solid #c9a24d;
    font-weight:800;
    box-shadow:0 10px 30px rgba(90,60,25,0.28);
}

.gold-btn:hover,
.booking-submit:hover{
    background:#8a6a28;
    border-color:#8a6a28;
    color:white;
}
.marketing-consent{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    line-height:1.5;
    color:#6c5b4f !important;
    letter-spacing:0 !important;
}

.marketing-consent input{
    width:auto !important;
    margin-top:4px;
}
/* GALLERY / EDUCATION / CONTACT */

.gallery-section,
.education-section,
.contact-section{
    padding:120px 60px;
    background:var(--cream);
}

.gallery-filters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:40px;
}

.gallery-filter{
    padding:12px 24px;
    border-radius:40px;
    border:1px solid var(--soft-gold);
    background:var(--white);
    color:var(--brown);
    cursor:pointer;
    font-weight:700;
    transition:0.3s;
}

.gallery-filter.active,
.gallery-filter:hover{
    background:var(--soft-gold);
    color:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

.gallery-grid img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 18px 40px rgba(74,55,40,0.16);
    cursor:pointer;
    transition:0.35s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.gallery-grid img.hidden{
    display:none;
}

.education-grid,
.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.education-card,
.contact-card{
    background:var(--white);
    border:1px solid rgba(201,162,77,0.25);
    border-radius:26px;
    padding:40px;
    box-shadow:0 20px 50px rgba(74,55,40,0.12);
}

.education-card h3,
.contact-card h3{
    color:var(--soft-gold);
    font-family:'Playfair Display', serif;
    font-size:32px;
    margin-bottom:18px;
}

.education-card p,
.contact-card p{
    color:var(--brown);
    line-height:1.7;
    margin-bottom:12px;
}

.contact-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

.contact-actions a{
    padding:12px 20px;
    border-radius:40px;
    background:var(--soft-gold);
    color:white;
    text-decoration:none;
    font-weight:700;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.82);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:20px;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:95%;
    max-height:90vh;
    border-radius:24px;
}

@media(max-width:768px){

    .gallery-section,
    .education-section,
    .contact-section{
        padding:80px 20px;
    }

    .gallery-grid img{
        height:300px;
    }
}
/* PRICE ACCORDION */

.price-section{
    padding:120px 60px;
    background:var(--cream);
}

.price-accordion{
    max-width:1000px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.price-category{
    background:var(--white);
    border:1px solid rgba(201,162,77,0.28);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(74,55,40,0.10);
}

.price-category-header{
    width:100%;
    padding:24px 30px;
    background:var(--white);
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    color:var(--brown);
    font-size:24px;
    font-family:'Playfair Display', serif;
    font-weight:700;
}

.price-category-header span{
    color:var(--soft-gold);
    font-size:30px;
}

.price-list{
    display:none;
    padding:0 30px 28px;
}

.price-category.active .price-list{
    display:block;
}

.price-item{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:20px;
    padding:16px 0;
    border-top:1px solid rgba(74,55,40,0.10);
    align-items:center;
}

.price-item-name{
    color:var(--brown);
    font-weight:700;
}

.price-item-duration{
    color:#7b6a5e;
    font-size:15px;
}

.price-item-price{
    color:var(--soft-gold);
    font-weight:800;
    white-space:nowrap;
}

@media(max-width:768px){

    .price-section{
        padding:80px 20px;
    }

    .price-category-header{
        font-size:21px;
        padding:22px;
    }

    .price-list{
        padding:0 22px 24px;
    }

    .price-item{
        grid-template-columns:1fr;
        gap:6px;
    }
}
.gallery-more-wrap{
    text-align:center;
    margin-top:40px;
}

.gallery-more-btn{
    background:var(--soft-gold);
    color:white;
    border:none;
    padding:15px 34px;
    border-radius:40px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(74,55,40,0.18);
    transition:0.3s;
}

.gallery-more-btn:hover{
    background:#8a6a28;
    transform:translateY(-3px);
}
/* ADMIN FILTERS */

.admin-filter-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr auto auto;
    gap:14px;
}

.admin-filter-grid input,
.admin-filter-grid select{
    background:#fff;
    color:var(--text);
    border:1px solid rgba(74,55,40,0.18);
    border-radius:12px;
    padding:14px;
    font-size:16px;
}

.admin-filter-grid button,
.reservation-actions button,
.reservation-actions a{
    border:none;
    border-radius:30px;
    padding:11px 18px;
    cursor:pointer;
    font-weight:800;
    text-decoration:none;
    display:inline-block;
}

.status-confirmed{
    background:#1f7a3a;
    color:white;
}

.status-finished{
    background:#4a3728;
    color:white;
}

.status-cancelled{
    background:#7a1c1c;
    color:white;
}

.action-call{
    background:#c9a24d;
    color:white;
}

.action-whatsapp{
    background:#25D366;
    color:white;
}

.reservation-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

.reservation-status{
    display:inline-block;
    margin-top:10px;
    padding:7px 14px;
    border-radius:30px;
    background:#ead9c7;
    color:#4a3728;
    font-weight:800;
}

@media(max-width:900px){
    .admin-filter-grid{
        grid-template-columns:1fr;
    }
}
.admin-day-box{
    background:var(--white);
    border:1px solid rgba(201,162,77,0.25);
    border-radius:26px;
    padding:28px;
    margin-bottom:32px;
    box-shadow:0 18px 45px rgba(74,55,40,0.10);
}

.admin-day-box h3{
    color:var(--soft-gold);
    font-size:30px;
    margin-bottom:22px;
    text-align:left;
}

.admin-shift-box{
    margin-bottom:26px;
}

.admin-shift-box h4{
    color:var(--brown);
    font-size:22px;
    margin-bottom:16px;
}

.admin-slot-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:12px;
}

.admin-slot-pill{
    border:none;
    border-radius:16px;
    padding:12px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    gap:5px;
    text-align:center;
    font-weight:800;
}

.admin-slot-pill strong{
    font-size:18px;
}

.admin-slot-pill small{
    font-size:12px;
    font-weight:600;
}

.slot-free{
    background:#e8f5e9;
    color:#1f7a3a;
    border:1px solid rgba(31,122,58,0.25);
}

.slot-reserved{
    background:#f5e8e8;
    color:#7a1c1c;
    border:1px solid rgba(122,28,28,0.25);
}
.confirm-channel-box{
    display:none;
    margin-top:16px;
    padding:16px;
    border-radius:18px;
    background:#fff7ed;
    border:1px solid rgba(201,162,77,0.28);
}

.confirm-channel-box.active{
    display:block;
}

.confirm-channel-box p{
    margin-bottom:12px;
    color:var(--brown);
    font-weight:800;
}

.confirm-channel-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.action-viber{
    background:#7360f2;
    color:white;
}

.action-email{
    background:#4a3728;
    color:white;
}
.disabled-link{
    opacity:0.45;
    pointer-events:none;
}
.manual-reservation-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.manual-reservation-form input,
.manual-reservation-form select,
.manual-reservation-form textarea{
    background:#fff;
    color:var(--text);
    border:1px solid rgba(74,55,40,0.18);
    border-radius:12px;
    padding:14px;
    font-size:16px;
}

.manual-reservation-form textarea,
.manual-reservation-form .admin-consent,
.manual-reservation-form button{
    grid-column:1 / -1;
}

.manual-reservation-form textarea{
    min-height:90px;
    resize:vertical;
}

.manual-reservation-form button{
    background:var(--soft-gold);
    color:white;
    border:none;
    border-radius:14px;
    padding:16px;
    font-weight:800;
    cursor:pointer;
}

.confirm-channel-box{
    display:none;
    margin-top:16px;
    padding:16px;
    border-radius:18px;
    background:#fff7ed;
    border:1px solid rgba(201,162,77,0.28);
}

.confirm-channel-box.active{
    display:block;
}

.confirm-channel-box p{
    margin-bottom:12px;
    color:var(--brown);
    font-weight:800;
}

.confirm-channel-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.action-viber{
    background:#7360f2;
    color:white;
}

.action-email{
    background:#4a3728;
    color:white;
}

.disabled-link{
    opacity:0.45;
    pointer-events:none;
}

@media(max-width:768px){
    .manual-reservation-form{
        grid-template-columns:1fr;
    }
}
.admin-page{
    min-height:100vh;
    background-image:url("images/admin/admin-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    color:var(--text);
}

.admin-brand{
    max-width:1200px;
    margin:0 auto 30px;
    padding:30px 20px 0;
    display:flex;
    align-items:center;
    gap:18px;
}

.admin-brand img{
    width:86px;
    height:86px;
    object-fit:contain;
    filter:drop-shadow(0 8px 18px rgba(74,55,40,0.18));
}

.admin-brand h1{
    font-family:'Playfair Display', serif;
    color:var(--soft-gold);
    font-size:38px;
    margin:0;
}

.admin-slot-box,
.admin-day-box,
.reservation-card,
.admin-loading{
    background:#fffaf4;
    border:1px solid rgba(201,162,77,0.30);
    box-shadow:0 18px 45px rgba(74,55,40,0.12);
    backdrop-filter:none;
}
.admin-page::before{
    display:none;
}