/* ==============================
   ADMIN PREMIUM
============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f1ea;
    color:#2d2d2d;
}

/* ==============================
   LOGIN
============================== */

.admin-login-body{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

.admin-login-box{

    width:100%;
    max-width:460px;

    background:white;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

.admin-login-box h1{

    font-family:'Cormorant Garamond',serif;

    font-size:54px;
    font-weight:300;

    margin-bottom:35px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-size:12px;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    color:#8a7b68;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;
    height:58px;

    border:none;
    outline:none;

    background:#f7f5f1;

    border-radius:18px;

    padding:0 18px;

    font-size:15px;
}

.form-group textarea{

    height:160px;
    padding-top:18px;

    resize:none;
}

.btn-primary{

    height:58px;

    padding:0 34px;

    border:none;
    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #d6bc8d 0%,
        #b79867 100%
    );

    color:white;

    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;

    cursor:pointer;

    transition:.3s ease;
}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:
    0 18px 34px rgba(140,110,70,.22);
}

/* ==============================
   LAYOUT
============================== */

.admin-layout{

    display:grid;
    grid-template-columns:280px 1fr;

    min-height:100vh;
}

/* ==============================
   SIDEBAR
============================== */

.admin-sidebar{

    background:#2f3a33;

    padding:40px 30px;

    color:white;
}

.admin-sidebar h2{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;
    font-weight:300;

    margin-bottom:40px;
}

.admin-sidebar nav{

    display:flex;
    flex-direction:column;
    gap:12px;
}

.admin-sidebar nav a{

    display:flex;
    align-items:center;

    min-height:54px;

    padding:0 18px;

    border-radius:16px;

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.25s ease;
}

.admin-sidebar nav a:hover{

    background:rgba(255,255,255,.08);

    color:white;
}

/* ==============================
   MAIN
============================== */

.admin-main{

    padding:60px;
}

.admin-main h1{

    font-family:'Cormorant Garamond',serif;

    font-size:68px;
    font-weight:300;

    margin-bottom:40px;
}

/* ==============================
   STATS
============================== */

.stats-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.stat-card{

    background:white;

    padding:34px;

    border-radius:28px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.05);
}

.stat-card h3{

    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;

    color:#8f7d67;

    margin-bottom:14px;
}

.stat-card p{

    font-size:54px;
    font-weight:300;

    font-family:'Cormorant Garamond',serif;
}

/* ==============================
   ALERTS
============================== */

.alert-error{

    margin-bottom:24px;

    padding:16px 18px;

    border-radius:16px;

    background:#ffe7e7;

    color:#a64646;
}

.alert-success{

    margin-bottom:24px;

    padding:16px 18px;

    border-radius:16px;

    background:#e8f7eb;

    color:#2d7a46;
}

/* ==============================
   MOBILE
============================== */

@media(max-width:992px){

    .admin-layout{

        grid-template-columns:1fr;
    }

    .admin-sidebar{

        padding:24px;
    }

    .admin-main{

        padding:24px;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }

    .admin-main h1{

        font-size:48px;
    }
}.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b79867;
    font-weight: 700;
}

.admin-link-btn {
    padding: 14px 24px;
    border-radius: 999px;
    background: #fff;
    color: #2f3a33;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.admin-panel {
    margin-top: 36px;
    background: #fff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(0,0,0,.05);
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.admin-panel-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.admin-table th {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8a7b68;
}

.status {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-pending {
    background: #fff2d8;
    color: #9a6a20;
}

.status-confirmed {
    background: #e4f6e9;
    color: #24743d;
}

.status-declined {
    background: #fde3e3;
    color: #9d3434;
}

.empty-state {
    color: #8a7b68;
}

@media(max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 18px;
    align-items: end;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-actions a {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5f1ea;
    text-decoration: none;
    color: #2f3a33;
    font-size: 12px;
    font-weight: 700;
}

.admin-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
}

@media(max-width: 1100px) {
    .admin-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 640px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}.requests-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.request-card {
    background: #fff;
    border: 1px solid rgba(80,65,45,.08);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 44px rgba(0,0,0,.04);
}

.request-main {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr .6fr;
    gap: 30px;
    align-items: start;
}

.request-main h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 8px;
}

.request-main p {
    line-height: 1.5;
}

.request-message {
    margin-top: 24px;
    padding: 22px;
    border-radius: 20px;
    background: #f7f3ec;
    line-height: 1.7;
}

.request-message strong {
    display: block;
    margin-bottom: 8px;
}

.request-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.request-actions a {
    padding: 10px 16px;
    border-radius: 999px;
    background: #f4f1ec;
    color: #2f3a33;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.reply-box {
    margin-top: 24px;
    border-radius: 22px;
    background: #fbfaf7;
    border: 1px solid rgba(80,65,45,.08);
    padding: 20px;
}

.reply-box summary {
    cursor: pointer;
    font-weight: 700;
    color: #2f3a33;
}

.reply-form {
    margin-top: 24px;
}

.reply-form textarea {
    min-height: 170px;
}

@media(max-width: 900px) {
    .request-main {
        grid-template-columns: 1fr;
    }
}.admin-delete-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fde3e3;
    color: #9d3434;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}.delete-request-btn {
    background: #fde3e3 !important;
    color: #9d3434 !important;
}.admin-stars {
    color: #c2ac84;
    font-size: 22px;
    letter-spacing: .06em;
}

.admin-review-photo {
    margin: 24px 0;
}

.admin-review-photo img {
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
    display: block;
}