/* =============================================
   AKADEMIJA MILAGRO — style.css
   Verzija: čist, bez duplikata, 24h fix
============================================= */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =============================================
   24H FORMAT — time input
   Sakriva AM/PM sekciju na svim browserima
   Radi na Chrome, Edge, Safari (webkit)
   Firefox ne prikazuje AM/PM po defaultu
============================================= */

input[type="time"]{
    -webkit-appearance:none;
    appearance:none;
}

input[type="time"]::-webkit-datetime-edit-ampm-field{
    display:none;
}

input[type="time"]::-webkit-calendar-picker-indicator{
    opacity:0.6;
}

/* =============================================
   CSS VARIJABLE
============================================= */

:root{
    --cream:#f7f1e8;
    --beige:#ead9c7;
    --champagne:#d8b76a;
    --soft-gold:#c9a24d;
    --brown:#4a3728;
    --rose:#d8b6aa;
    --text:#3b2d24;
    --white:#fffaf4;
}

/* =============================================
   BODY
============================================= */

body{
    background:var(--cream);
    color:var(--text);
    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(247,241,232,0.82);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(201,162,77,0.35);
}

.header-scrolled{
    background:rgba(247,241,232,0.96);
    box-shadow:0 0 25px rgba(0,0,0,0.12);
}

.logo img{
    height:70px;
}

/* NAV */

.nav{
    display:flex;
    gap:40px;
}

.nav a{
    color:var(--brown);
    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:var(--soft-gold);
    transition:0.4s;
}

.nav a:hover,
.nav a.active{
    color:var(--soft-gold);
}

.nav a:hover::after{
    width:100%;
}

/* SOCIALS */

.socials{
    display:flex;
    gap:20px;
}

.socials a{
    text-decoration:none;
    color:var(--brown);
    transition:0.3s;
}

.socials a:hover{
    color:var(--soft-gold);
}

@media(max-width:900px){
    .header{
        padding:20px;
    }
    .nav{
        display:none;
    }
    .socials{
        display:none;
    }
}

/* =============================================
   HERO
============================================= */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background-image:url("images/hero.webp");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}



.overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(20,14,10,0.45),
        rgba(20,14,10,0.30)
    );

    z-index:1;
}

.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:var(--soft-gold);
    letter-spacing:2px;

    text-shadow:0 4px 18px rgba(0,0,0,0.35);
}

.hero-content p{
    font-size:24px;
    line-height:1.6;
    margin-bottom:40px;
    color:#f5eee6;

    text-shadow:0 3px 14px rgba(0,0,0,0.35);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

@media(max-width:900px){

    .hero{
        background-position:62% center;
        height:90vh;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

}

/* =============================================
   BUTTONS
============================================= */

.gold-btn,
.dark-btn{
    padding:16px 36px;
    text-decoration:none;
    font-size:16px;
    letter-spacing:1px;
    transition:0.4s;
    border-radius:50px;
    cursor:pointer;
}

.gold-btn,
.booking-submit{
    background:var(--soft-gold);
    color:white;
    border:2px solid var(--soft-gold);
    font-weight:800;
    box-shadow:0 10px 30px rgba(90,60,25,0.28);
}

.dark-btn:hover{
    background:var(--soft-gold);
    border-color:var(--soft-gold);
    color:white;
}

.dark-btn{
    border:1px solid var(--soft-gold);
    color:var(--brown);
    background:transparent;
}

.dark-btn{
    border:1px solid rgba(255,255,255,0.65);
    color:white;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(6px);
}

/* =============================================
   FLOATING BUTTONS
============================================= */

.floating-buttons{
    position:fixed;
    bottom:25px;
    right:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.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-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(37,211,102,0.5);
}

.call-btn{
    background:var(--soft-gold);
    color:white;
}

.call-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(212,175,55,0.5);
}

@media(max-width:768px){
    .floating-buttons{
        bottom:15px;
        right:15px;
    }
    .float-btn{
        padding:14px 20px;
        font-size:14px;
    }
}

/* =============================================
   SEKCIJE — OPŠTE
============================================= */

.lux-services,
.best-sellers,
.why-us,
.partners{
    padding:120px 60px;
    background:var(--cream);
    color:var(--text);
}

@media(max-width:768px){
    .lux-services,
    .best-sellers,
    .why-us,
    .partners{
        padding:80px 20px;
    }
}

/* =============================================
   NASLOVI
============================================= */

.lux-title{
    text-align:center;
    margin-bottom:80px;
}

.gold-line{
    width:120px;
    height:2px;
    background:var(--soft-gold);
    display:block;
    margin:0 auto 30px auto;
}

.lux-title h2,
.section-title h2{
    font-size:60px;
    color:var(--soft-gold);
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.lux-title p,
.section-title p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#6c5b4f;
    font-size:18px;
}

@media(max-width:768px){
    .lux-title h2{
        font-size:42px;
    }
}

/* =============================================
   SERVICE CARDS
============================================= */

.lux-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.lux-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:600px;
    background:#d8c7b8;
    border:1px solid rgba(155,120,55,0.35);
    transition:0.5s;
    box-shadow:0 20px 40px rgba(74,55,40,0.18);
}

.lux-card:hover{
    transform:translateY(-10px);
}

.lux-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.65;
    transition:0.7s;
}

.lux-card:hover img{
    transform:scale(1.08);
}

.lux-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(70,48,34,0.25),
        rgba(70,48,34,0.88)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
}

.lux-overlay h3{
    font-size:42px;
    color:#f7d77a;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
    text-shadow:0 2px 8px rgba(0,0,0,0.45);
}

.lux-overlay p{
    line-height:1.7;
    margin-bottom:25px;
    color:#fffaf0;
    text-shadow:0 2px 6px rgba(0,0,0,0.45);
}

.lux-overlay ul{
    margin-bottom:30px;
    padding-left:20px;
}

.lux-overlay li{
    margin-bottom:10px;
    color:#fffaf0;
    text-shadow:0 2px 6px rgba(0,0,0,0.45);
}

.lux-btn{
    align-self:flex-start;
    padding:14px 30px;
    background:var(--soft-gold);
    color:white;
    border:2px solid var(--soft-gold);
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(0,0,0,0.25);
    transition:0.4s;
}

.lux-btn:hover{
    background:#8a6a28;
    border-color:#8a6a28;
    color:white;
    transform:translateY(-3px);
}

@media(max-width:768px){
    .lux-card{
        height:500px;
    }
    .lux-overlay h3{
        font-size:32px;
    }
}

/* =============================================
   BEST SELLERS
============================================= */

.seller-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.seller-card{
    padding:50px;
    border-radius:25px;
    background:var(--white);
    text-align:center;
    border:1px solid rgba(201,162,77,0.22);
    box-shadow:0 20px 50px rgba(74,55,40,0.12);
    transition:0.4s;
}

.seller-card:hover{
    transform:translateY(-8px);
    border-color:var(--soft-gold);
}

.seller-card h3{
    color:var(--soft-gold);
    margin-bottom:20px;
    font-size:30px;
}

.seller-card span{
    font-size:24px;
    font-weight:bold;
    color:var(--brown);
}

/* =============================================
   WHY US
============================================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    background:var(--white);
    padding:50px;
    border-radius:25px;
    text-align:center;
    border:1px solid rgba(201,162,77,0.22);
    box-shadow:0 20px 50px rgba(74,55,40,0.12);
    transition:0.4s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box h3{
    color:var(--soft-gold);
    margin-bottom:20px;
}

.why-box p{
    color:var(--brown);
}

/* =============================================
   PARTNERS
============================================= */

.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.partner-box{
    background:var(--white);
    padding:40px;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:180px;
    border:1px solid rgba(201,162,77,0.22);
    box-shadow:0 20px 50px rgba(74,55,40,0.12);
    transition:0.4s;
}

.partner-box:hover{
    transform:translateY(-8px);
    border-color:var(--soft-gold);
}

.partner-box img{
    max-width:340px;
    opacity:0.8;
    transition:0.4s;
}

.partner-box:hover img{
    opacity:1;
}

/* =============================================
   BOOKING MODAL
============================================= */

body.modal-open{
    overflow:hidden;
}

.booking-modal{
    position:fixed;
    inset:0;
    background:rgba(74,55,40,0.50);
    display:none;
    align-items:flex-start;
    justify-content:center;
    z-index:99999;
    overflow-y:auto;
    padding:30px 15px;
}

.booking-modal.active{
    display:flex;
}

.booking-box{
    width:100%;
    max-width:560px;
    background:var(--white);
    color:var(--text);
    border:1px solid rgba(201,162,77,0.35);
    border-radius:28px;
    padding:40px;
    position:relative;
    box-shadow:0 0 40px rgba(74,55,40,0.2);
    max-height:90vh;
    overflow-y:auto;
    margin:auto;
}

.booking-close{
    position:absolute;
    top:18px;
    right:22px;
    background:none;
    border:none;
    color:var(--brown);
    font-size:36px;
    cursor:pointer;
}

.booking-box h2{
    font-family:'Playfair Display', serif;
    color:var(--soft-gold);
    font-size:42px;
    margin-bottom:10px;
}

.booking-subtitle{
    color:#6c5b4f;
    margin-bottom:30px;
}

#bookingForm{
    display:flex;
    flex-direction:column;
    gap:14px;
}

#bookingForm label{
    color:var(--soft-gold);
    font-weight:bold;
    letter-spacing:1px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{
    width:100%;
    background:#fff;
    border:1px solid rgba(74,55,40,0.18);
    color:var(--text);
    padding:14px 16px;
    border-radius:14px;
    font-size:16px;
    outline:none;
}

#bookingForm textarea{
    min-height:90px;
    resize:none;
}

#bookingForm select{
    max-width:100%;
}

#bookingService{
    max-height:260px;
}

.service-info{
    color:#8a6f3c;
    font-size:15px;
    margin-top:-8px;
    margin-bottom:8px;
}

/* SLOTS */

.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(201,162,77,0.35);
    background:#fff;
    color:var(--brown);
    cursor:pointer;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
    min-height:44px;
}

.slot-btn:hover,
.slot-btn.selected{
    background:var(--soft-gold);
    color:white;
}

.slot-message{
    grid-column:1 / -1;
    color:#6c5b4f;
    font-size:15px;
}

.booking-submit{
    margin-top:10px;
    padding:16px;
    border:none;
    border-radius:40px;
    cursor:pointer;
    font-size:17px;
}

.booking-info{
    color:#6c5b4f;
    font-size:14px;
    text-align:center;
    margin-top:8px;
}

.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;
}

@media(max-width:768px){
    .booking-modal{
        padding:20px 10px;
    }
    .booking-box{
        max-height:88vh;
        padding:28px 18px;
    }
    .booking-box h2{
        font-size:34px;
    }
    #bookingForm input,
    #bookingForm select,
    #bookingForm textarea{
        font-size:16px;
    }
    .slots-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =============================================
   GALERIJA
============================================= */

.gallery-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;
}

.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);
}

/* VIDEO THUMBNAIL */

.gallery-video-thumb{
    position:relative;
    cursor:pointer;
    overflow:hidden;
    border-radius:18px;
    height:260px;
    box-shadow:0 18px 45px rgba(74,55,40,0.16);
    background:#111;
}

.gallery-video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.3s ease;
}

.gallery-video-thumb:hover img{
    transform:scale(1.04);
}

.gallery-play-icon{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    color:white;
    background:rgba(0,0,0,0.32);
    transition:background 0.2s ease;
}

.gallery-video-thumb:hover .gallery-play-icon{
    background:rgba(0,0,0,0.52);
}

/* 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;
}

.lightbox iframe{
    width:min(90vw,900px);
    height:min(50vw,500px);
    border:none;
    border-radius:18px;
    background:#000;
}

@media(max-width:768px){
    .gallery-section{
        padding:80px 20px;
    }
    .gallery-grid img{
        height:300px;
    }
    .gallery-video-thumb{
        height:220px;
    }
    .gallery-play-icon{
        font-size:44px;
    }
    .lightbox iframe{
        width:92vw;
        height:52vw;
    }
}

/* =============================================
   EDUKACIJE & KONTAKT
============================================= */

.education-section,
.contact-section{
    padding:120px 60px;
    background:var(--cream);
}

.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;
}

@media(max-width:768px){
    .education-section,
    .contact-section{
        padding:80px 20px;
    }
}

/* =============================================
   CENOVNIK 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;
    }
}

/* =============================================
   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;
    background-color:var(--cream);
    color:var(--text);
    padding:120px 30px 60px;
}

.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;
}

/* SLOT FORM */

.admin-slot-box{
    max-width:900px;
    margin:0 auto 40px;
    background:#fffaf4;
    border:1px solid rgba(201,162,77,0.30);
    border-radius:24px;
    padding:35px;
    box-shadow:0 18px 45px rgba(74,55,40,0.12);
}

.admin-slot-box h3{
    color:var(--soft-gold);
    font-size:32px;
    margin-bottom:25px;
    text-align:center;
    font-family:'Playfair Display', serif;
}

.slot-form{
    display:grid;
    grid-template-columns:1fr 1fr 1fr auto;
    gap:15px;
}

.slot-form input,
.slot-form select{
    background:#fff;
    color:var(--text);
    border:1px solid rgba(74,55,40,0.18);
    border-radius:12px;
    padding:14px;
    font-size:16px;
}

.slot-form button{
    background:var(--soft-gold);
    color:white;
    border:none;
    border-radius:12px;
    padding:14px 24px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.slot-form button:hover{
    background:#8a6a28;
}

/* BULK FORM */

.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){
    .slot-form{
        grid-template-columns:1fr;
    }
    .bulk-slot-form{
        grid-template-columns:1fr;
    }
    .admin-slot-box{
        padding:25px;
    }
}

/* ADMIN ACTIONS */

.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;
    transition:0.3s;
}

.admin-danger{
    background:#7a1c1c;
    color:white;
}

.admin-back{
    background:var(--soft-gold);
    color:white;
}

@media(max-width:768px){
    .admin-page{
        padding:100px 20px 60px;
    }
    .admin-actions{
        flex-direction:column;
    }
    .admin-danger,
    .admin-back{
        width:100%;
        text-align:center;
    }
}

/* ADMIN FILTER */

.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;
    transition:0.3s;
}

@media(max-width:900px){
    .admin-filter-grid{
        grid-template-columns:1fr;
    }
}

/* ADMIN SECTIONS */

.admin-section{
    max-width:1100px;
    margin:50px auto;
}

.admin-section h3{
    color:var(--soft-gold);
    font-size:34px;
    margin-bottom:25px;
    text-align:center;
    font-family:'Playfair Display', serif;
}

.admin-list{
    display:grid;
    gap:18px;
}

/* SLOT CARDS */

.admin-slot-card{
    background:#fffaf4;
    border:1px solid rgba(201,162,77,0.30);
    border-radius:20px;
    padding:24px;
    color:var(--text);
    box-shadow:0 18px 45px rgba(74,55,40,0.12);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.admin-slot-card h4{
    color:var(--soft-gold);
    font-size:24px;
    margin-bottom:8px;
}

.admin-slot-card p{
    margin:6px 0;
}

.admin-slot-card span{
    display:block;
    font-size:22px;
    margin-bottom:8px;
}

.admin-slot-card small{
    color:#7b6a5e;
}

@media(max-width:768px){
    .admin-slot-card{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* RESERVATION CARDS */

.reservation-card{
    background:#fffaf4;
    border:1px solid rgba(201,162,77,0.30);
    border-radius:20px;
    padding:24px;
    color:var(--text);
    box-shadow:0 18px 45px rgba(74,55,40,0.12);
}

.reservation-card h4{
    color:var(--soft-gold);
    font-size:24px;
    margin-bottom:8px;
}

.reservation-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-bottom:1px solid rgba(74,55,40,0.12);
    padding-bottom:12px;
    margin-bottom:14px;
}

.reservation-top span{
    color:var(--soft-gold);
}

.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:var(--brown);
    font-weight:800;
}

@media(max-width:768px){
    .reservation-top{
        flex-direction:column;
    }
}

/* ADMIN LOADING */

.admin-loading{
    background:#fffaf4;
    border:1px solid rgba(201,162,77,0.30);
    border-radius:18px;
    padding:25px;
    text-align:center;
    color:#7b6a5e;
    box-shadow:0 18px 45px rgba(74,55,40,0.12);
}

/* SLOT AKCIJE */

.slot-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.close-slot{
    background:var(--soft-gold);
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

.open-slot{
    background:#1f7a3a;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

.delete-slot,
.delete-reservation{
    background:#7a1c1c;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

/* STATUS DUGMAD */

.status-confirmed{
    background:#1f7a3a;
    color:white;
}

.status-finished{
    background:#4a3728;
    color:white;
}

.status-cancelled{
    background:#7a1c1c;
    color:white;
}

.action-call{
    background:var(--soft-gold);
    color:white;
}

.action-whatsapp{
    background:#25D366;
    color:white;
}

.action-viber{
    background:#7360f2;
    color:white;
}

.action-email{
    background:#4a3728;
    color:white;
}

.disabled-link{
    opacity:0.45;
    pointer-events:none;
}

/* ADMIN DAY BOX */

.admin-day-box{
    background:#fffaf4;
    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;
    font-family:'Playfair Display', serif;
}

.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;
    min-height:44px;
}

.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 */

.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;
}

/* MANUAL RESERVATION */

.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;
    transition:0.3s;
}

.manual-reservation-form button:hover{
    background:#8a6a28;
}

@media(max-width:768px){
    .manual-reservation-form{
        grid-template-columns:1fr;
    }
}

/* TABLE (staro, ostavljeno za kompatibilnost) */

.admin-table-wrap{
    width:100%;
    overflow-x:auto;
    border:1px solid rgba(201,162,77,0.25);
    border-radius:20px;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
}

.admin-table th,
.admin-table td{
    padding:18px;
    border-bottom:1px solid rgba(74,55,40,0.10);
    text-align:left;
    color:var(--text);
}

.admin-table th{
    color:var(--soft-gold);
    background:var(--white);
}

.empty-admin{
    text-align:center;
    padding:40px;
    color:#7b6a5e;
}

.slots-table-wrap{
    margin-bottom:50px;
}