*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#171412;
    color:white;
    font-family:'Poppins', sans-serif;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(23,20,18,0.85);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:42px;
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    letter-spacing:2px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#c8b08a;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

nav a:hover{
    color:white;
}

.phone{
    color:#c8b08a;
    font-size:14px;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#c8b08a;
    font-size:34px;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:160px 8% 100px;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text span{
    color:#c8b08a;
    letter-spacing:3px;
    font-size:14px;
}

.hero-text h1{
    font-size:82px;
    line-height:1.1;
    margin:25px 0;
    font-family:'Cormorant Garamond', serif;
}

.hero-text p{
    color:#b8b8b8;
    max-width:500px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    background:#c8b08a;
    border:none;
    color:black;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    text-decoration:none;
}

.hero-btn:hover{
    background:white;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    height:750px;
    object-fit:cover;
}

/* ABOUT */

.about-section{
    padding:120px 8%;

    display:flex;
    align-items:center;
    gap:80px;
}

.reverse{
    flex-direction:row-reverse;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.about-text{
    flex:1;
}

.about-text span{
    color:#c8b08a;
    letter-spacing:3px;
    font-size:14px;
}

.about-text h2{
    font-size:58px;
    margin:25px 0;
    font-family:'Cormorant Garamond', serif;
}

.about-text p{
    color:#b8b8b8;
    line-height:1.8;
    max-width:500px;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#c8b08a;
    letter-spacing:3px;
    font-size:14px;
}

.section-title h2{
    font-size:56px;
    margin-top:20px;
    font-family:'Cormorant Garamond', serif;
}

/* GALLERY */

.gallery{
    padding:120px 8%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:450px;
    object-fit:cover;

    transition:0.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* APPOINTMENT */

.appointment{
    padding:120px 8%;
}

.appointment-box{
    max-width:700px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:20px;
}

.appointment-box input,
.appointment-box select{
    padding:18px;
    background:#211d1a;
    border:none;
    color:white;
    font-size:15px;
}

.appointment-box button{
    padding:18px;
    background:#c8b08a;
    border:none;
    font-weight:600;
    cursor:pointer;
}

/* REVIEWS */

.reviews{
    padding:120px 8%;
}

.review-slider{
    max-width:800px;
    margin:auto;
    position:relative;
    min-height:180px;
}

.review{
    position:absolute;
    width:100%;

    opacity:0;
    transition:1s;
    text-align:center;
}

.review.active{
    opacity:1;
}

.review p{
    font-size:28px;
    line-height:1.6;
    font-family:'Cormorant Garamond', serif;
}

.review h4{
    margin-top:25px;
    color:#c8b08a;
}

/* CONTACT */

.contact{
    padding:120px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.contact-grid h3{
    margin-bottom:20px;
    color:#c8b08a;
}

.contact-grid p{
    color:#b8b8b8;
    line-height:2;
}

/* MAP */

.map iframe{
    filter:grayscale(100%) invert(92%) contrast(90%);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero,
    .about-section,
    .reverse{
        flex-direction:column;
    }

    .hero-text h1{
        font-size:60px;
    }

    .about-text h2{
        font-size:44px;
    }

    .contact-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .navbar{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:18px 6%;
}

.logo{
    font-size:36px;
}

.menu-toggle{
    display:block;
}

nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#14110f;
    flex-direction:column;
    align-items:center;
    gap:18px;
    padding:25px 0;
    display:none;
    border-top:1px solid rgba(200,176,138,0.15);
}

nav.active{
    display:flex;
}

.phone{
    display:none;
}

    .hero-text h1{
        font-size:46px;
    }

    .section-title h2{
        font-size:42px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero{
        padding:140px 8% 60px;
        gap:40px;
    }

    .hero-image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .hero-image img{
        width:100%;
        max-width:320px;
        height:420px;
        object-fit:cover;
        border-radius:12px;
    }

    .hero-text{
        text-align:center;
    }

    .hero-text p{
        margin:0 auto 35px;
    }

    .hero-btn{
        margin:0 auto;
    }

}

/* NAVBAR SCROLL */

.navbar.scrolled{
    background:#14110f;
    padding:20px 8%;

    box-shadow:0 5px 25px rgba(0,0,0,0.3);
}

/* FADE ANIMATION */

.fade-up{
    opacity:0;
    transform:translateY(60px);
    transition:1s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

/* WHATSAPP BUTTON */

.whatsapp-button{
    position:fixed;

    right:30px;
    bottom:30px;

    width:65px;
    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:1000;

    box-shadow:0 10px 25px rgba(0,0,0,0.3);

    transition:0.3s;
}

.whatsapp-button:hover{
    transform:scale(1.1);
}

.whatsapp-button img{
    width:32px;
}

/* TOAST */

.toast{

    position:fixed;

    top:40px;
    right:40px;

    background:#211d1a;

    border:1px solid rgba(200,176,138,0.3);

    padding:22px 28px;

    min-width:320px;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transform:translateY(-20px);

    transition:0.4s;

    box-shadow:0 15px 40px rgba(0,0,0,0.35);

    backdrop-filter:blur(10px);
}

.toast.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.toast h3{

    color:#c8b08a;

    margin-bottom:8px;

    font-size:20px;

    font-family:'Cormorant Garamond', serif;
}

.toast p{

    color:#d4d4d4;

    font-size:14px;
}

/* DATE INPUT DARK */

input[type="date"]{

    color-scheme:dark;
}

input[type="date"]::-webkit-calendar-picker-indicator{

    filter:invert(0.8);
    cursor:pointer;
}

/* ADMIN PANEL */

.admin-list{
    max-width:900px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.admin-card{
    background:#211d1a;
    border:1px solid rgba(200,176,138,0.25);
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.admin-card h3{
    color:#c8b08a;
    font-family:'Cormorant Garamond', serif;
    font-size:30px;
    margin-bottom:10px;
}

.admin-card p{
    color:#d4d4d4;
    line-height:1.8;
}

.delete-btn{
    padding:12px 24px;
    background:#6b1f1f;
    color:white;
    border:none;
    cursor:pointer;
    transition:0.3s;
}

.delete-btn:hover{
    background:#9b2d2d;
}

/* PREMIUM ADMIN CALENDAR */

.admin-body{
    background:#0f0f0f;
    color:white;
    overflow-y:auto;
    overflow-x:hidden;
}

.admin-dashboard{
    display:grid;
    grid-template-columns:290px 1fr;
    min-height:100vh;
}

.admin-sidebar{
    background:linear-gradient(180deg,#111,#15120e);
    border-right:1px solid rgba(200,176,138,0.18);
    padding:32px 22px;
    display:flex;
    flex-direction:column;
}

.admin-brand{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:55px;
}

.brand-icon{
    font-size:42px;
    color:#c8b08a;
}

.admin-brand h2{
    font-family:'Cormorant Garamond', serif;
    color:#d6b77b;
    font-size:28px;
    letter-spacing:1px;
}

.admin-brand span{
    color:#c8b08a;
    letter-spacing:5px;
    font-size:12px;
}

.admin-menu{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.admin-menu a{
    padding:18px 20px;
    border-radius:10px;
    color:#ddd;
    cursor:pointer;
    transition:0.3s;
}

.admin-menu a.active,
.admin-menu a:hover{
    background:linear-gradient(135deg,#806333,#3b2c16);
    color:white;
}

.admin-user{
    margin-top:auto;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:12px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:14px;
}

.admin-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#3b2c16;
    color:#d6b77b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.admin-user p{
    color:#aaa;
    margin-top:4px;
}

.logout-btn{
    margin-top:25px;
    padding:16px;
    background:transparent;
    color:#ddd;
    border:1px solid rgba(255,255,255,0.12);
    cursor:pointer;
    border-radius:10px;
}

.calendar-main{
    padding:35px 28px;
    overflow:auto;
}

.calendar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.calendar-header h1{
    font-family:'Cormorant Garamond', serif;
    color:#d6b77b;
    font-size:38px;
}

.calendar-header p{
    color:#cfcfcf;
    margin-top:6px;
}

.calendar-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.calendar-actions button{
    padding:13px 22px;
    background:#151515;
    color:white;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:8px;
    cursor:pointer;
}

#weekRange{
    font-size:20px;
    margin-left:10px;
}

.calendar-layout{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:14px;
}

.week-calendar,
.detail-panel{
    background:linear-gradient(180deg,#151515,#111);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
}

.calendar-days{
    display:grid;
    grid-template-columns:70px repeat(7,1fr);
    border-bottom:1px solid rgba(255,255,255,0.12);
}

.calendar-day{
    min-height:95px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border-left:1px solid rgba(255,255,255,0.08);
}

.calendar-day span{
    color:#c8b08a;
    font-size:13px;
    margin-bottom:6px;
}

.calendar-day strong{
    font-size:25px;
}

.calendar-day p{
    color:#aaa;
    font-size:13px;
}

.calendar-day.today strong{
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,#d6b77b,#806333);
    display:flex;
    align-items:center;
    justify-content:center;
}

.calendar-day.sunday span,
.calendar-day.sunday p{
    color:#ff5b5b;
}

.calendar-grid-wrap{
    display:grid;
    grid-template-columns:70px 1fr;
}

.time-column{
    display:grid;
    grid-template-rows:repeat(10,72px);
}

.time-row{
    padding-top:13px;
    text-align:center;
    color:#bdbdbd;
    font-size:13px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    grid-template-rows:repeat(10,72px);
}

.calendar-cell{
    border-left:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:6px;
    position:relative;
}

.calendar-appointment{
    height:100%;
    background:linear-gradient(135deg,rgba(128,99,51,0.9),rgba(48,38,22,0.92));
    border:1px solid rgba(214,183,123,0.65);
    border-radius:8px;
    padding:9px;
    display:flex;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
    transition:0.25s;
}

.calendar-appointment:hover{
    transform:scale(1.03);
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
}

.calendar-appointment strong{
    color:white;
    font-size:14px;
}

.calendar-appointment span{
    color:white;
    font-size:13px;
}

.calendar-appointment small{
    color:#e8e1d3;
    font-size:11px;
}

.calendar-legend{
    display:flex;
    justify-content:center;
    gap:35px;
    padding:22px;
    color:#bbb;
}

.calendar-legend b{
    display:inline-block;
    width:14px;
    height:14px;
    border-radius:50%;
    margin-right:8px;
}

.gold-dot{
    background:#d6b77b;
}

.gray-dot{
    background:#999;
}

.detail-panel{
    padding:25px;
}

.detail-top{
    margin-bottom:25px;
}

.detail-top h3{
    font-size:20px;
    font-weight:500;
}

.side-appointment{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:15px;
    padding:18px;
    border:1px solid rgba(214,183,123,0.45);
    border-radius:10px;
    margin-bottom:14px;
    cursor:pointer;
    transition:0.25s;
}

.side-appointment:hover{
    background:rgba(214,183,123,0.08);
}

.side-appointment strong{
    font-size:18px;
}

.side-appointment h4{
    font-size:16px;
    margin-bottom:5px;
}

.side-appointment p{
    color:#ccc;
    font-size:13px;
}

.appointment-detail{
    margin-top:25px;
    padding:22px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:12px;
}

.appointment-detail h3{
    margin-bottom:25px;
    font-size:21px;
}

.detail-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
}

.detail-row span{
    color:#aaa;
}

.detail-row strong{
    color:#d6b77b;
}

.delete-big{
    width:100%;
    margin-top:20px;
    padding:16px;
    background:transparent;
    color:#ff5757;
    border:1px solid #ff5757;
    border-radius:8px;
    cursor:pointer;
}

.empty-text{
    color:#aaa;
    line-height:1.7;
}

@media(max-width:1200px){

    .admin-body{
        overflow:auto;
    }

    .admin-dashboard{
        display:block;
    }

    .admin-sidebar{
        display:block;
        width:100%;
        padding:22px;
        border-right:none;
        border-bottom:1px solid rgba(200,176,138,0.18);
    }

    .admin-brand{
        justify-content:center;
        margin-bottom:22px;
    }

    .admin-menu{
        display:flex;
        flex-direction:row;
        gap:10px;
        overflow-x:auto;
        padding-bottom:10px;
    }

    .admin-menu a{
        min-width:max-content;
        padding:12px 16px;
        font-size:13px;
        border:1px solid rgba(200,176,138,0.2);
    }

    .admin-user{
        display:none;
    }

    .logout-btn{
        width:100%;
        margin-top:12px;
    }

    .calendar-layout{
        grid-template-columns:1fr;
    }

    .calendar-main{
        padding:24px 16px;
    }

    .week-calendar{
        overflow-x:auto;
    }

    .calendar-days,
    .calendar-grid-wrap,
    .calendar-legend{
        min-width:760px;
    }

    .calendar-appointment{
        overflow:hidden;
    }

    .calendar-appointment span,
    .calendar-appointment small{
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        max-width:100%;
        display:block;
    }

    .calendar-appointment small{
        font-size:9px;
    }
}

/* BLOCKED SLOT TOOL */

.block-tool{
    margin-top:20px;
}

.block-tool input,
.block-tool select{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    background:#211d1a;
    border:1px solid rgba(200,176,138,0.25);
    color:white;
}

.block-btn{
    width:100%;
    padding:15px;
    background:#c8b08a;
    border:none;
    color:black;
    font-weight:600;
    cursor:pointer;
    margin-bottom:18px;
}

.calendar-blocked{
    height:100%;
    background:rgba(120,120,120,0.18);
    border:1px solid rgba(180,180,180,0.35);
    border-radius:8px;
    padding:9px;
    display:flex;
    flex-direction:column;
    gap:4px;
    color:#aaa;
}

.calendar-blocked span{
    font-size:13px;
}

.blocked-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid rgba(255,255,255,0.12);
    padding:12px;
    margin-bottom:10px;
    border-radius:8px;
}

.blocked-item p{
    color:#aaa;
    margin-top:4px;
}

.blocked-item button{
    background:transparent;
    color:#c8b08a;
    border:1px solid rgba(200,176,138,0.4);
    padding:8px 14px;
    cursor:pointer;
}

.hidden{
    display:none !important;
}

.admin-menu a{
    user-select:none;
}

.admin-menu a.active{
    background:linear-gradient(135deg,#806333,#3b2c16);
    color:white;
}

@media(max-width:1200px){

    .calendar-appointment{
        padding:8px !important;
        gap:3px !important;
        overflow:hidden;
    }

    /* Saat */
    .calendar-appointment strong{
        font-size:12px !important;
        line-height:1.1 !important;
        white-space:nowrap;
    }

    /* Sadece isim soyisim görünsün */
    .calendar-appointment span{
        display:block !important;
        font-size:10px !important;
        line-height:1.2 !important;
        white-space:normal !important;
        word-break:break-word !important;
        overflow:hidden !important;
    }

    /* Telefon gizlensin */
    .calendar-appointment small{
        display:none !important;
    }

    /* Kapalı saat kartları */
    .calendar-blocked{
        padding:8px !important;
        gap:3px !important;
    }

    .calendar-blocked strong{
        font-size:12px !important;
    }

    .calendar-blocked span{
        font-size:10px !important;
    }
}

/* GOOGLE REVIEW CARD */

.google-review-card{
    background:linear-gradient(135deg,#15110d,#1d1712);
    border:1px solid rgba(200,176,138,0.35);
    padding:40px;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.google-review-card p{
    font-size:30px;
    line-height:1.8;
    font-family:'Cormorant Garamond', serif;
    color:#ffffff;
    margin-bottom:40px;
}

.review-footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
}

.review-author h4{
    color:#c8b08a;
    font-size:26px;
    margin-bottom:6px;
    font-family:'Cormorant Garamond', serif;
}

.review-author span{
    color:#9f9f9f;
    font-size:14px;
}

.google-link img{
    width:150px;
    transition:0.3s;
}

.google-link img:hover{
    transform:scale(1.05);
}

@media(max-width:768px){

    .google-review-card{
        padding:24px;
    }

    .google-review-card p{
        font-size:22px;
        line-height:1.7;
        margin-bottom:28px;
    }

    .review-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .review-author h4{
        font-size:22px;
    }

    .google-link img{
        width:120px;
    }
}

.login-link{
    border:1px solid rgba(200,176,138,0.45);
    padding:8px 16px;
    border-radius:30px;
}

.login-link:hover{
    background:#c8b08a;
    color:#111;
}

/* USER LOGIN PAGE */

.auth-box{
    max-width:520px;
}

.auth-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:25px;
}

.auth-tab{
    padding:14px;
    background:#211d1a;
    color:#211d1a;
    border:1px solid rgba(200,176,138,0.25);
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.auth-tab.active,
.auth-tab:hover{
    background:#c8b08a;
    color:#111;
}

.back-home{
    text-align:center;
    color:#c8b08a;
    text-decoration:none;
    margin-top:10px;
    font-size:14px;
}

.back-home:hover{
    color:white;
}

.auth-link a{
    color:#c8b08a;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
    cursor:pointer;
}

.auth-link a:hover{
    color:white;
}

/* MOBILE USER LOGIN FIX */

@media(max-width:768px){

    .auth-box{
        width:100%;
        max-width:360px;
        padding:0 18px;
    }

    .auth-box .section-title{
        margin-bottom:32px;
    }

    .auth-box .section-title span{
        font-size:12px;
        letter-spacing:4px;
    }

    .auth-box .section-title h2{
        font-size:42px;
        line-height:1.1;
    }

    .auth-tabs{
        gap:10px;
        margin-bottom:24px;
    }

    .auth-tab{
        padding:14px 10px !important;
        font-size:13px;
    }

    .auth-box input{
        width:100%;
        padding:17px 16px !important;
        font-size:14px !important;
        margin-bottom:14px;
    }

    .auth-box button{
        width:100%;
        padding:16px !important;
        font-size:14px;
    }

    .back-home{
        margin-top:18px;
        font-size:14px;
        display:block;
    }
}

/* FINAL AUTH PAGE SYMMETRY FIX */

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
}

.auth-box{
    width:100%;
    max-width:560px;
    margin:0 auto;
    padding:0;
}

.auth-box .section-title{
    text-align:center;
    margin-bottom:70px;
}

.auth-tabs{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:45px;
}

.auth-tab{
    width:100%;
    height:58px;
}

#registerFields{
    width:100%;
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-bottom:16px;
}

#registerFields input{
    width:100%;
    margin:0;
}

.auth-box > input{
    width:100%;
    margin-bottom:16px;
}

.auth-box #loginInput{
    width:100%;
}

.auth-box button:not(.auth-tab){
    width:100%;
}

.back-home{
    display:block;
    text-align:center;
    margin-top:25px;
}

/* Giriş modunda isim/telefon gizlensin */
#registerFields[style*="display: none"]{
    display:none !important;
}

/* Mobilde alt alta ve büyük */
@media(max-width:768px){

    .auth-box{
        max-width:390px;
        width:90vw;
    }

    .auth-box .section-title{
        margin-bottom:45px;
    }

    .auth-box .section-title h2{
        font-size:48px !important;
    }

    #registerFields{
        grid-template-columns:1fr;
        gap:16px;
    }

    .auth-tab{
        height:56px;
        font-size:15px;
    }

    .auth-box input{
        height:58px;
        font-size:15px;
        padding:0 18px;
    }

    .auth-box button:not(.auth-tab){
        height:58px;
        font-size:15px;
    }
}

/* TABLET / SMALL SCREEN NAVBAR FIX */

@media(max-width:1200px){

    .navbar{
        padding:18px 6%;
    }

    .logo{
        font-size:34px;
        line-height:1;
    }

    nav{
        gap:18px;
    }

    nav a{
        font-size:12px;
        white-space:nowrap;
    }

    .login-link{
        max-width:170px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }

    .phone{
        font-size:12px;
        line-height:1.4;
        min-width:90px;
        text-align:right;
    }

    .phone p{
        white-space:nowrap;
    }
}

/* TABLETTE MENÜYÜ HAMBURGER'A ÇEVİR */

@media(max-width:1050px){

    .navbar{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:18px 6%;
    }

    .logo{
        font-size:36px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#14110f;
        flex-direction:column;
        align-items:center;
        gap:18px;
        padding:25px 0;
        display:none;
        border-top:1px solid rgba(200,176,138,0.15);
    }

    nav.active{
        display:flex;
    }

    nav a{
        font-size:14px;
    }

    .login-link{
        max-width:none;
    }

    .phone{
        display:none;
    }
}

/* GALLERY BANNER */

.gallery-banner-section{
    padding:20px 8% 40px;
}

.gallery-banner-link{
    position:relative;
    display:block;
    width:100%;
    max-width:900px;
    height:260px;
    margin:0 auto;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    border:1px solid rgba(200,176,138,0.28);
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.gallery-banner-link img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.45s ease;
}

.gallery-banner-link:hover img{
    transform:scale(1.06);
}

.gallery-banner-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,rgba(0,0,0,0.58),rgba(23,20,18,0.35));
    text-align:center;
}

.gallery-banner-overlay span{
    color:#c8b08a;
    letter-spacing:5px;
    font-size:14px;
    margin-bottom:14px;
}

.gallery-banner-overlay h2{
    color:white;
    font-size:48px;
    font-family:'Cormorant Garamond', serif;
}

@media(max-width:768px){

    .gallery-banner-section{
        padding:10px 6% 30px;
    }

    .gallery-banner-link{
        height:190px;
        border-radius:14px;
    }

    .gallery-banner-overlay h2{
        font-size:36px;
    }

    .gallery-banner-overlay span{
        font-size:12px;
    }
}

/* FULL GALLERY */

.full-gallery{
    padding:120px 8%;
}

.full-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.full-gallery-grid img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:16px;
    border:1px solid rgba(200,176,138,0.25);
    box-shadow:0 18px 45px rgba(0,0,0,0.28);
    transition:0.35s ease;
}

.full-gallery-grid img:hover{
    transform:scale(1.03);
}

@media(max-width:1100px){
    .full-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .full-gallery{
        padding:90px 6%;
    }

    .full-gallery-grid{
        grid-template-columns:1fr;
    }

    .full-gallery-grid img{
        height:300px;
    }
}

/* POEMS PAGE */

.poems-page{
    padding:170px 8% 120px;
    min-height:100vh;
}

.poems-list{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.poem-card{
    background:linear-gradient(135deg,#15110d,#1d1712);
    border:1px solid rgba(200,176,138,0.28);
    border-radius:18px;
    padding:42px;
    box-shadow:0 20px 50px rgba(0,0,0,0.28);
}

.poem-card h3{
    font-size:38px;
    color:#c8b08a;
    font-family:'Cormorant Garamond', serif;
    margin-bottom:24px;
}

.poem-card p{
    color:#e7e0d5;
    font-size:18px;
    line-height:2;
    font-family:'Cormorant Garamond', serif;
    white-space:normal;
}

@media(max-width:768px){

    .poems-page{
        padding:140px 6% 90px;
    }

    .poem-card{
        padding:28px;
    }

    .poem-card h3{
        font-size:30px;
    }

    .poem-card p{
        font-size:17px;
        line-height:1.9;
    }
}

/* SERVICES SECTION */

.services-section{
    padding:120px 8%;
}

.services-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.service-card{
    background:linear-gradient(135deg,#15110d,#1d1712);
    border:1px solid rgba(200,176,138,0.28);
    color:#e7e0d5;
    padding:24px 22px;
    border-radius:16px;
    text-align:center;
    font-size:17px;
    letter-spacing:0.5px;
    box-shadow:0 16px 40px rgba(0,0,0,0.25);
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:rgba(200,176,138,0.6);
    color:#c8b08a;
}

@media(max-width:900px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .services-section{
        padding:90px 6%;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:20px;
        font-size:16px;
    }
}

/* APPOINTMENT SERVICE SELECT */

.service-select-box{
    background:#211d1a;
    border:1px solid rgba(200,176,138,0.25);
    padding:22px;
    border-radius:14px;
}

.service-select-box h3{
    color:#c8b08a;
    font-family:'Cormorant Garamond', serif;
    font-size:26px;
    margin-bottom:18px;
    text-align:center;
}

.service-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    max-height:360px;
    overflow-y:auto;
    padding-right:6px;
}

.service-options label{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    background:#171412;
    border:1px solid rgba(200,176,138,0.18);
    padding:13px;
    border-radius:10px;
    color:#e7e0d5;
    font-size:14px;
    cursor:pointer;
}

.service-options input{
    width:auto;
    accent-color:#c8b08a;
}

.service-options span{
    color:#c8b08a;
    font-size:13px;
    white-space:nowrap;
}

.service-total{
    margin-top:18px;
    padding:16px;
    background:#171412;
    border-radius:10px;
    text-align:center;
    color:white;
    font-size:18px;
}

.service-total strong{
    color:#c8b08a;
}

.service-note{
    margin-top:12px;
    color:#aaa;
    font-size:13px;
    text-align:center;
}

@media(max-width:768px){
    .service-options{
        grid-template-columns:1fr;
    }
}

/* SOL TARAFTA YAN YANA 2 DİKEY FOTOĞRAF */

.gallery-left-vertical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-left-vertical img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

/* DİĞER GALERİ FOTOĞRAFLARI */

.gallery-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MOBİL UYUMLULUK */

@media (max-width: 768px) {
    .gallery-left-vertical {
        grid-template-columns: 1fr;
    }

    .gallery-left-vertical img {
        aspect-ratio: 9 / 16;
    }
}

.google-btn{
    margin-top:12px;
    padding:18px;
    background:#ffffff !important;
    color:#111 !important;
    border:1px solid rgba(255,255,255,0.18) !important;
    font-weight:600;
    cursor:pointer;
}

.google-btn:hover{
    background:#f1f1f1 !important;
}

/* CASH PANEL */

.cash-panel{
    background:linear-gradient(180deg,#151515,#111);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:28px;
}

.cash-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.cash-header h2{
    font-family:'Cormorant Garamond', serif;
    color:#d6b77b;
    font-size:34px;
}

.cash-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.cash-actions button{
    padding:12px 18px;
    background:#151515;
    color:white;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:8px;
    cursor:pointer;
}

#cashMonthTitle{
    color:#d6b77b;
    font-size:20px;
    min-width:160px;
    text-align:center;
}

.cash-layout{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:18px;
}

.cash-calendar{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
}

.cash-day-name{
    color:#c8b08a;
    text-align:center;
    padding:10px;
    font-size:13px;
}

.cash-day{
    min-height:110px;
    background:#111;
    border:1px solid rgba(200,176,138,0.18);
    border-radius:10px;
    padding:12px;
    cursor:pointer;
    transition:0.25s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.cash-day:hover,
.cash-day.selected{
    border-color:#c8b08a;
    background:rgba(200,176,138,0.08);
}

.cash-day.empty{
    opacity:0;
    pointer-events:none;
}

.cash-day span{
    color:#fff;
    font-weight:600;
}

.cash-day strong{
    color:#c8b08a;
    font-size:16px;
}

.cash-detail{
    background:#111;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:22px;
}

.cash-detail h3{
    font-size:22px;
    margin-bottom:18px;
}

.cash-summary{
    border:1px solid rgba(200,176,138,0.2);
    border-radius:10px;
    padding:14px;
    margin-bottom:18px;
}

.cash-summary p{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#ddd;
}

.cash-summary strong{
    color:#d6b77b;
}

.cash-item{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:10px;
    align-items:center;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:8px;
    padding:12px;
    margin-bottom:10px;
}

.cash-item strong{
    color:#fff;
}

.cash-item p{
    color:#aaa;
    font-size:13px;
    margin-top:4px;
}

.cash-item span{
    color:#d6b77b;
    white-space:nowrap;
}

.cash-delete-btn{
    background:transparent;
    color:#ff5757;
    border:1px solid #ff5757;
    padding:6px 10px;
    cursor:pointer;
    border-radius:6px;
}

.cash-form{
    margin-top:22px;
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:18px;
}

.cash-form h4,
#cashAppointmentsList h4,
#cashRecordsList h4{
    color:#c8b08a;
    margin:18px 0 12px;
}

.cash-form input,
.cash-form select{
    width:100%;
    padding:13px;
    margin-bottom:10px;
    background:#211d1a;
    border:1px solid rgba(200,176,138,0.25);
    color:white;
}

.cash-form button{
    width:100%;
    padding:14px;
    background:#c8b08a;
    color:#111;
    border:none;
    font-weight:600;
    cursor:pointer;
}

@media(max-width:1200px){
    .cash-layout{
        grid-template-columns:1fr;
    }

    .cash-calendar{
        grid-template-columns:repeat(7,minmax(90px,1fr));
        overflow-x:auto;
    }
}

@media(max-width:768px){
    .cash-panel{
        padding:18px;
    }

    .cash-header{
        flex-direction:column;
        gap:16px;
        align-items:flex-start;
    }

    .cash-calendar{
        min-width:720px;
    }
}

/* SPECIAL ANNOUNCEMENT */

.special-announcement {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    background: linear-gradient(135deg, #c8b08a, #d6b77b);
    color: #111;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    max-width: 420px;
    padding: 20px 24px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.6s ease;
}

.special-announcement.show {
    transform: translateX(0);
    opacity: 1;
}

.special-announcement.hidden {
    display: block;
}

.special-announcement-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.special-announcement-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.special-announcement strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.special-announcement p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
    color: #222;
}

@media (max-width: 768px) {
    .special-announcement {
        top: 20px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 18px;
    }

    .special-announcement strong {
        font-size: 16px;
    }

    .special-announcement p {
        font-size: 13px;
    }
}

.cash-price-editor {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cash-price-input {
    width: 100px;
    padding: 8px 10px;
    background: #211d1a;
    border: 1px solid rgba(200,176,138,0.25);
    color: #fff;
    border-radius: 6px;
    text-align: right;
}

.save-price-btn {
    background: #c8b08a;
    color: #111;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.save-price-btn:hover {
    opacity: 0.9;
}

.cash-month-total {
    color: #d6b77b;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 6px;
}

.cash-discount-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.price-half-btn{
    min-width:100px;
    padding:9px 12px;
    background:#211d1a;
    color:#d6b77b;
    border:1px solid rgba(200,176,138,0.35);
    border-radius:7px;
    font-weight:700;
}

.price-half-btn.active{
    background:rgba(200,176,138,0.18);
    border-color:#c8b08a;
}

.price-half-apply-btn,
.price-reset-btn{
    padding:9px 12px;
    background:#c8b08a;
    color:#111;
    border:none;
    border-radius:7px;
    font-weight:700;
    cursor:pointer;
}

.price-reset-btn{
    background:transparent;
    color:#ffce7a;
    border:1px solid rgba(255,206,122,0.45);
}

/* ADMIN MOBILE FIT FIX */

@media(max-width:768px){

    .admin-dashboard{
        width:100%;
        overflow-x:hidden;
    }

    .calendar-main{
        padding:16px 10px;
        width:100%;
        overflow-x:hidden;
    }

    .calendar-header{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .calendar-actions{
        width:100%;
        flex-wrap:wrap;
        gap:8px;
    }

    .calendar-layout{
        grid-template-columns:1fr;
        width:100%;
    }

    .week-calendar{
        width:100%;
        overflow-x:auto;
    }

    .calendar-days,
    .calendar-grid-wrap,
    .calendar-legend{
        min-width:680px;
    }

    .detail-panel{
        width:100%;
    }

    .cash-panel{
        width:100%;
        padding:14px;
        overflow:hidden;
    }

    .cash-layout{
        grid-template-columns:1fr;
        width:100%;
    }

    .cash-calendar{
        grid-template-columns:repeat(7, minmax(74px, 1fr));
        gap:7px;
        width:100%;
        overflow-x:auto;
    }

    .cash-day{
        min-height:86px;
        padding:9px;
        border-radius:8px;
    }

    .cash-day strong{
        font-size:13px;
    }

    .cash-detail{
        width:100%;
        padding:16px;
    }

    .cash-item{
        grid-template-columns:1fr;
        gap:10px;
    }

    .cash-discount-box{
        width:100%;
        justify-content:space-between;
    }

    .price-half-btn{
        flex:1;
        min-width:0;
    }

    .price-half-apply-btn,
    .price-reset-btn{
        min-width:72px;
    }
}

/* FINAL ADMIN MOBILE CASH FIT */

@media(max-width:768px){

    body.admin-body{
        overflow-x:hidden;
    }

    .calendar-main{
        padding:10px 6px !important;
        overflow-x:hidden !important;
    }

    .cash-panel{
        width:100% !important;
        max-width:100% !important;
        padding:12px !important;
        overflow-x:hidden !important;
    }

    .cash-calendar{
        width:100% !important;
        min-width:0 !important;
        display:grid !important;
        grid-template-columns:repeat(7, 1fr) !important;
        gap:4px !important;
        overflow-x:hidden !important;
    }

    .cash-day-name{
        font-size:10px !important;
        padding:6px 2px !important;
    }

    .cash-day{
        min-width:0 !important;
        min-height:68px !important;
        padding:6px !important;
        border-radius:7px !important;
    }

    .cash-day span{
        font-size:12px !important;
    }

    .cash-day strong{
        font-size:10px !important;
        line-height:1.2 !important;
        word-break:break-word;
    }

    .cash-header{
        gap:12px !important;
    }

    .cash-header h2{
        font-size:30px !important;
    }

    .cash-actions{
        width:100%;
        display:grid !important;
        grid-template-columns:42px 1fr auto 42px;
        align-items:center;
        gap:8px !important;
    }

    .cash-actions button{
        padding:10px !important;
    }

    #cashMonthTitle{
        font-size:18px !important;
        min-width:0 !important;
    }

    #cashMonthTotal{
        font-size:14px !important;
        margin:0 !important;
        text-align:center !important;
    }

    .cash-detail{
        padding:14px !important;
    }

    .cash-item{
        grid-template-columns:1fr !important;
    }
}

/* FINAL ADMIN MOBILE WEEK CALENDAR FIT */

@media(max-width:768px){

    .week-calendar{
        width:100% !important;
        overflow-x:hidden !important;
    }

    .calendar-days,
    .calendar-grid-wrap,
    .calendar-legend{
        min-width:0 !important;
        width:100% !important;
    }

    .calendar-days{
        grid-template-columns:38px repeat(7, 1fr) !important;
    }

    .calendar-day{
        min-height:70px !important;
        padding:4px 2px !important;
    }

    .calendar-day span{
        font-size:9px !important;
    }

    .calendar-day strong{
        font-size:16px !important;
    }

    .calendar-day.today strong{
        width:34px !important;
        height:34px !important;
    }

    .calendar-day p{
        font-size:9px !important;
    }

    .calendar-grid-wrap{
        grid-template-columns:38px 1fr !important;
    }

    .time-column,
    .calendar-grid{
        grid-template-rows:repeat(10,58px) !important;
    }

    .time-row{
        font-size:10px !important;
        padding-top:10px !important;
    }

    .calendar-grid{
        grid-template-columns:repeat(7, 1fr) !important;
    }

    .calendar-cell{
        padding:3px !important;
    }

    .calendar-appointment{
        padding:4px !important;
        border-radius:5px !important;
    }

    .calendar-appointment strong{
        font-size:9px !important;
    }

    .calendar-appointment span{
        font-size:8px !important;
        line-height:1.1 !important;
    }

    .calendar-appointment small{
        display:none !important;
    }

    .calendar-blocked{
        padding:4px !important;
        border-radius:5px !important;
    }

    .calendar-blocked strong{
        font-size:9px !important;
    }

    .calendar-blocked span{
        font-size:8px !important;
    }

    .calendar-legend{
        font-size:12px !important;
        gap:12px !important;
        padding:14px 4px !important;
        overflow:hidden !important;
        justify-content:center !important;
    }
}

.cash-price-control{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.cash-custom-price-input{
    width:100px;
    padding:9px 10px;
    background:#211d1a;
    color:#d6b77b;
    border:1px solid rgba(200,176,138,0.35);
    border-radius:7px;
    font-weight:700;
    text-align:center;
}

.cash-save-price-btn,
.cash-half-price-btn,
.cash-reset-price-btn{
    padding:9px 12px;
    border-radius:7px;
    font-weight:700;
    cursor:pointer;
}

.cash-save-price-btn{
    background:#c8b08a;
    color:#111;
    border:none;
}

.cash-half-price-btn{
    background:#2a2118;
    color:#d6b77b;
    border:1px solid rgba(200,176,138,0.45);
}

.cash-reset-price-btn{
    background:transparent;
    color:#ffce7a;
    border:1px solid rgba(255,206,122,0.45);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff; /* Eski beyaz renk */
}

.logo-flag {
    width: 48px;   /* Önceden 34px idi */
    height: auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.logo-flag:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .logo-flag {
        width: 32px;
    }

    .logo {
        gap: 8px;
    }
}

/* ==========================================
   PROFESSIONAL PRODUCTS SECTION
========================================== */

.products-section {
    max-width: 1200px;
    margin: 140px auto;
    padding: 0 40px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 175, 127, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201, 175, 127, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.products-text {
    max-width: 850px;
    margin: 0 auto;
    color: #b9b9b9;
    font-size: 18px;
    line-height: 1.9;
}

.products-text p {
    margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .products-section {
        margin: 90px auto;
        padding: 0 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 35px;
    }

    .product-card img {
        height: 240px;
    }

    .products-text {
        font-size: 16px;
        line-height: 1.8;
    }
}

.appointment-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
    color: #8f8f8f;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-style: italic;
}

/* HERO TOP SLIDER - CLEAN FINAL */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 90px;
    align-items: center;
}

.hero-top-slider {
    grid-column: 1 / -1;
    width: 720px;
    max-width: 90%;
    margin: 40px auto 20px;
    overflow: hidden;
    position: relative;
}

.hero-slider-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: heroSliderMove 34s linear infinite;
}

.hero-slider-item {
    flex: 0 0 160px;
    height: 95px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 175, 127, 0.24);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 16px 38px rgba(0,0,0,0.35);
}

.hero-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-top-slider::before,
.hero-top-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-top-slider::before {
    left: 0;
    background: linear-gradient(to right, #0b0706, transparent);
}

.hero-top-slider::after {
    right: 0;
    background: linear-gradient(to left, #0b0706, transparent);
}

@keyframes heroSliderMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-1638px);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .hero-top-slider {
        width: calc(100% - 40px);
        max-width: none;
        margin: 25px auto 30px;
    }

    .hero-slider-track {
        gap: 12px;
        animation-duration: 28s;
    }

    .hero-slider-item {
        flex: 0 0 120px;
        height: 78px;
        border-radius: 12px;
    }

    .hero-top-slider::before,
    .hero-top-slider::after {
        width: 45px;
    }
}

.instagram-float {
    position: fixed;
    bottom: 105px;
    right: 25px;
    width: 62px;
    height: 62px;
    background: radial-gradient(circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.08);
}

.whatsapp-float,
.instagram-float {
    right: 30px !important;
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.instagram-float {
    bottom: 105px !important;
}

.whatsapp-float {
    bottom: 25px !important;
}

.cash-summary-box {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.cash-summary-box div {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 175, 127, 0.18);
    border-radius: 12px;
    padding: 14px 16px;
}

.cash-summary-box span {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 7px;
}

.cash-summary-box strong {
    color: #d6b77b;
    font-size: 17px;
}

@media(max-width:768px){
    .cash-summary-box {
        grid-template-columns: 1fr;
    }
}

.cash-week-selector {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.cash-week-selector label {
    color: #d6b77b;
    font-size: 14px;
    font-weight: 600;
}

.cash-week-selector select {
    background: #211d1a;
    color: #fff;
    border: 1px solid rgba(200,176,138,0.35);
    border-radius: 8px;
    padding: 9px 12px;
}
.date-input {
    color-scheme: dark;
    color: #ffffff;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.date-input:invalid,
.date-input:required:invalid {
    color: #8f8f8f;
}

.date-input::before {
    content: attr(data-placeholder);
    color: #8f8f8f;
}

.date-input:valid::before,
.date-input:focus::before {
    content: "";
}

@media (max-width: 768px) {
    .about-image img,
    .split-image img,
    .feature-image img,
    .expert-image img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .about-image,
    .split-image,
    .feature-image,
    .expert-image {
        height: auto !important;
        overflow: visible !important;
    }
}

.appointment-date-input {
    width: 100% !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 20px !important;
    background: #211d1a !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-family: "Poppins", sans-serif !important;
    box-sizing: border-box !important;
    color-scheme: dark;
}

.appointment-date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

@media (max-width: 768px) {
    .appointment-date-input {
        width: 100% !important;
        display: block !important;
    }
}

.date-field {
    position: relative;
    width: 100%;
}

.date-field span {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8f8f8f;
    font-size: 15px;
    pointer-events: none;
    font-family: "Poppins", sans-serif;
}

.date-field input {
    width: 100%;
}

.date-field input.has-value + span,
.date-field input:focus + span {
    display: none;
}

.appointment-date-input::-webkit-datetime-edit {
    color: transparent;
}

.appointment-date-input.has-value::-webkit-datetime-edit {
    color: white;
}

.floating-socials {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.floating-instagram img,
.floating-whatsapp img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transition: 0.3s;
}

.floating-instagram img:hover,
.floating-whatsapp img:hover {
    transform: scale(1.08);
}

.floating-socials {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 25px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.whatsapp-btn {
    background: #25D366;
}

@media (max-width: 768px) {
    .floating-socials {
        right: 18px;
        bottom: 20px;
        gap: 10px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}