* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top right, #063b2b, transparent 35%),
        radial-gradient(circle at bottom left, #0b2f26, transparent 30%),
        linear-gradient(135deg, #020706, #061b16, #010403);
    color: #eefaf5;
}

/* HEADER */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(1, 8, 7, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(159,255,224,0.16);
    transition: 0.3s ease;
}

.header-scroll {
    background: rgba(1, 8, 7, 0.97);
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.navbar {
    max-width: 1300px;
    margin: auto;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    color: #9fffe0;
    text-decoration: none;
    display: block;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #eefaf5;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover,
.active-link {
    color: #9fffe0;
}

/* GENERAL */
.luxury-label {
    display: inline-block;
    color: #9fffe0;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.btn,
.btn-outline {
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn {
    background: #9fffe0;
    color: #020706;
    font-weight: 700;
}

.btn-outline {
    border: 1px solid #9fffe0;
    color: #9fffe0;
}

.btn:hover,
.btn-outline:hover {
    transform: translateY(-4px);
}

/* AGE POPUP */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 8, 7, 0.96);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-box {
    width: 90%;
    max-width: 500px;
    padding: 45px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(159,255,224,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(159,255,224,0.22);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.age-box h2 {
    font-family: 'Cinzel', serif;
    color: #9fffe0;
    font-size: 34px;
    margin-bottom: 20px;
}

.age-box p {
    color: #bdd8cf;
    margin-bottom: 14px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.age-buttons button {
    padding: 14px 26px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.age-buttons button:first-child {
    background: #9fffe0;
    color: #020706;
}

.age-buttons button:last-child {
    background: transparent;
    border: 1px solid #9fffe0;
    color: #9fffe0;
}

/* HERO HOME */
.hero {
    min-height: 100vh;
    padding: 150px 25px 100px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(1,8,7,0.35), rgba(1,8,7,0.78)),
        url("img/cervesa-0.png");
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 760px;
    margin-left: 8%;
}

.hero h2,
.deal-text h2,
.drinks-section h2,
.barmann-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f4fffb;
    margin-bottom: 20px;
}

.hero p,
.deal-text p,
.category-info p,
.barmann-info p {
    color: #bdd8cf;
    line-height: 1.8;
    font-size: 16px;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* SEARCH */
.search-box {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.search-box input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border-radius: 40px;
    border: 1px solid rgba(159,255,224,0.18);
    background: rgba(255,255,255,0.06);
    color: white;
    outline: none;
}

.search-box button {
    padding: 15px 28px;
    border-radius: 40px;
    border: none;
    background: #9fffe0;
    color: #020706;
    font-weight: 700;
    cursor: pointer;
}

/* PAGE HERO */
.page-hero {
    max-width: 1000px;
    margin: auto;
    padding: 155px 25px 70px;
    text-align: center;
}

.page-hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    color: #f4fffb;
    margin-bottom: 18px;
}

.page-hero p {
    color: #bdd8cf;
    line-height: 1.8;
}

/* HOME CATEGORIES */
.drinks-section {
    padding: 100px 25px;
    text-align: center;
}

.category-grid {
    max-width: 1300px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    text-decoration: none;
    color: white;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(159,255,224,0.06));
    border: 1px solid rgba(159,255,224,0.15);
    transition: 0.35s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.category-info {
    padding: 25px;
    text-align: left;
}

.category-info h3 {
    font-family: 'Cinzel', serif;
    color: #9fffe0;
    font-size: 28px;
    margin-bottom: 12px;
}

/* MENU FILTER */
.filter-section {
    max-width: 1300px;
    margin: 0 auto 45px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 13px 26px;
    border-radius: 40px;
    border: 1px solid rgba(159,255,224,0.25);
    background: rgba(255,255,255,0.04);
    color: #eefaf5;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.active-filter,
.filter-btn:hover {
    background: #9fffe0;
    color: #020706;
    transform: translateY(-3px);
}

/* PRODUCTS */
.product-section {
    padding: 20px 25px 60px;
}

.product-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(159,255,224,0.06));
    border: 1px solid rgba(159,255,224,0.16);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: 0.35s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 26px;
}

.product-category {
    color: #9fffe0;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-content h3 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    font-size: 24px;
    margin: 12px 0;
}

.product-content p {
    color: #bdd8cf;
    line-height: 1.7;
}

.product-info {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    color: #eefaf5;
}

.product-info strong {
    color: #9fffe0;
}

.product-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* PAGINATION */
.pagination-section {
    width: 100%;
    max-width: 1300px;
    margin: 35px auto 90px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.page-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid rgba(159,255,224,0.35);
    color: #eefaf5;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
    font-weight: 700;
}

.page-link:hover,
.active-page {
    background: #9fffe0;
    color: #020706;
    transform: translateY(-4px);
}

/* VIP OFFER */
.vip-offer {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 45px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(159,255,224,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(159,255,224,0.22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.vip-offer h2 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    margin-bottom: 15px;
}

.vip-offer p {
    color: #bdd8cf;
    line-height: 1.7;
}

/* DEAL / OFFERS */
.deal-section,
.offers-section {
    max-width: 1300px;
    margin: auto;
    padding: 80px 25px;
}

.deal-card,
.offer-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
    align-items: center;
    padding: 35px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(159,255,224,0.06));
    border: 1px solid rgba(159,255,224,0.16);
}

.deal-image img,
.offer-image img {
    width: 100%;
    border-radius: 24px;
    height: 420px;
    object-fit: cover;
}

.offer-content h2 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    margin: 18px 0;
    font-size: 36px;
}

.offer-content p {
    color: #bdd8cf;
    line-height: 1.8;
    margin-bottom: 12px;
}

.offer-pricing {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.offer-pricing div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
}

.offer-pricing small {
    display: block;
    color: #9fffe0;
    margin-bottom: 8px;
}

/* CONTACT */
.contact-section {
    max-width: 1300px;
    margin: auto;
    padding: 20px 25px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.contact-info-box,
.contact-form {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(159,255,224,0.06));
    border: 1px solid rgba(159,255,224,0.16);
}

.contact-info-box h2 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    font-size: 36px;
    margin-bottom: 18px;
}

.contact-info-box p,
.contact-mini-card p {
    color: #bdd8cf;
    line-height: 1.8;
}

.contact-mini-card {
    margin-top: 30px;
    padding: 25px;
    border-radius: 22px;
    background: rgba(159,255,224,0.08);
    border: 1px solid rgba(159,255,224,0.18);
}

.contact-mini-card h3 {
    font-family: 'Cinzel', serif;
    color: #9fffe0;
    margin-bottom: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    color: #9fffe0;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid rgba(159,255,224,0.18);
    background: rgba(255,255,255,0.06);
    color: #eefaf5;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.contact-form option {
    background: #061b16;
    color: #eefaf5;
}

.form-btn {
    padding: 15px 28px;
    border-radius: 40px;
    border: none;
    background: #9fffe0;
    color: #020706;
    font-weight: 700;
    cursor: pointer;
}

/* ADMIN */
.admin-section {
    max-width: 1300px;
    margin: auto;
    padding: 20px 25px 100px;
}

.admin-table {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(159,255,224,0.16);
    background: rgba(255,255,255,0.04);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(159,255,224,0.12);
    color: #bdd8cf;
}

.admin-table th {
    color: #9fffe0;
    font-family: 'Cinzel', serif;
    background: rgba(159,255,224,0.08);
}

/* BARMANN */
.barmann-section,
.barmann-premium {
    max-width: 1300px;
    margin: auto;
    padding: 100px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.barmann-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.barmann-text h2 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    font-size: 42px;
    margin-bottom: 20px;
}

.barmann-text p {
    color: #bdd8cf;
    line-height: 1.8;
}

.vip-packages {
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vip-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(159,255,224,0.15);
}

.vip-card h3 {
    color: #9fffe0;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.fake-chat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(159,255,224,0.18);
    border-radius: 28px;
    overflow: hidden;
}

.chat-header {
    padding: 18px 24px;
    background: rgba(159,255,224,0.10);
    display: flex;
    justify-content: space-between;
}

.chat-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    padding: 14px 18px;
    border-radius: 18px;
    max-width: 85%;
    line-height: 1.6;
}

.client {
    background: rgba(255,255,255,0.10);
    align-self: flex-start;
}

.barmann {
    background: rgba(159,255,224,0.14);
    align-self: flex-end;
}

/* ABOUT / IMPRESSUM */
.about-section,
.impressum-section {
    max-width: 1300px;
    margin: auto;
    padding: 20px 25px 100px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    font-size: 42px;
    margin-bottom: 20px;
}

.about-text p,
.mission-card p,
.impressum-card p {
    color: #bdd8cf;
    line-height: 1.8;
}

.mission-section {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mission-card,
.impressum-card {
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(159,255,224,0.14);
}

.mission-card h3,
.impressum-card h3 {
    color: #9fffe0;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

.impressum-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* TRUST */
.trust-section {
    padding: 90px 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: auto;
}

.trust-box {
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(159,255,224,0.14);
    text-align: center;
}

.trust-box h3 {
    color: #9fffe0;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    padding: 35px;
    text-align: center;
    border-top: 1px solid rgba(159,255,224,0.12);
    color: #bdd8cf;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-offer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero h2,
    .page-hero h2,
    .deal-text h2,
    .drinks-section h2,
    .barmann-section h2 {
        font-size: 34px;
    }

    .deal-card,
    .offer-card,
    .contact-section,
    .barmann-section,
    .barmann-premium,
    .about-section {
        grid-template-columns: 1fr;
    }

    .mission-section,
    .impressum-section,
    .trust-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .page-hero {
        padding: 140px 20px 55px;
    }

    .filter-section {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 20px 20px;
    }

    .filter-btn {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .product-card img,
    .category-card img {
        height: 230px;
    }

    .pagination-section {
        gap: 10px;
    }

    .page-link {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .product-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .product-content {
        padding: 22px;
    }

    .product-buttons {
        flex-direction: column;
    }

    .product-buttons .btn,
    .product-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
}


/*  product */


.product-detail-section {
    max-width: 1300px;
    margin: auto;
    padding: 20px 25px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.product-detail-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.product-detail-info h2 {
    font-family: 'Cinzel', serif;
    color: #f4fffb;
    font-size: 44px;
    margin-bottom: 18px;
}

.product-detail-info p {
    color: #bdd8cf;
    line-height: 1.8;
}

.detail-grid {
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-grid div {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(159,255,224,0.14);
}

.detail-grid small {
    display: block;
    color: #9fffe0;
    margin-bottom: 8px;
}

.detail-grid strong {
    color: #eefaf5;
}

.premium-note {
    padding: 25px;
    border-radius: 22px;
    background: rgba(159,255,224,0.08);
    border: 1px solid rgba(159,255,224,0.18);
    margin-bottom: 28px;
}

.premium-note h3 {
    font-family: 'Cinzel', serif;
    color: #9fffe0;
    margin-bottom: 12px;
}

.product-detail-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .product-detail-section {
        grid-template-columns: 1fr;
    }

    .product-detail-image img {
        height: 360px;
    }

    .product-detail-info h2 {
        font-size: 32px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }
}


/* menu */

.stock-info {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #f5d27a;
    font-weight: 600;
}

.stock-status {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 12px;
    border: 1px solid #f5d27a;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #f5d27a;
    background: rgba(245, 210, 122, 0.08);
}

.product-card-click {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card-click:hover {
    transform: translateY(-8px);
}



/*  cart */

.cart-section {
    padding: 60px 8%;
}

.cart-box {
    max-width: 900px;
    margin: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(127, 255, 212, 0.25);
    border-radius: 20px;
    background: rgba(5, 40, 32, 0.65);
}

.cart-total {
    text-align: right;
    margin-top: 30px;
    font-size: 1.4rem;
}

@media (max-width: 700px) {
    .cart-item {
        flex-direction: column;
    }

    .cart-total {
        text-align: left;
    }
}

.cart-img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(127, 255, 212, 0.08);
}

.cart-info {
    flex: 1;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-box a,
.qty-box button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #8fffe0;
    background: transparent;
    color: #8fffe0;
    font-weight: bold;
    display: grid;
    place-items: center;
    text-decoration: none;
    cursor: pointer;
}

.qty-box button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.qty-box span {
    min-width: 28px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 700px) {
    .cart-actions {
        align-items: flex-start;
    }

    .cart-img {
        width: 120px;
        height: 120px;
    }
}

.checkout-form {
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(127, 255, 212, 0.3);
    background: rgba(5, 40, 32, 0.75);
    color: white;
    outline: none;
}

.checkout-form textarea {
    min-height: 130px;
    resize: vertical;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* admin */

.admin-login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top, rgba(127, 255, 212, 0.18), transparent 35%),
        linear-gradient(135deg, #020b09, #052820, #000);
    color: white;
    padding: 20px;
}

.admin-login-box {
    width: 100%;
    max-width: 430px;
    padding: 45px 35px;
    border-radius: 28px;
    background: rgba(5, 40, 32, 0.78);
    border: 1px solid rgba(245, 210, 122, 0.35);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    text-align: center;
    backdrop-filter: blur(14px);
}

.admin-login-box h1 {
    font-family: 'Cinzel', serif;
    margin: 15px 0;
    color: #f5d27a;
}

.admin-login-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.admin-login-box form {
    display: grid;
    gap: 18px;
}

.admin-login-box input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(127, 255, 212, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: white;
    outline: none;
}

.admin-login-box input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.admin-error {
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.45);
    color: #ffb3b3;
}

.admin-back {
    display: inline-block;
    margin-top: 22px;
    color: #8fffe0;
    text-decoration: none;
    font-size: 0.9rem;
}

.admin-back:hover {
    color: #f5d27a;
}

/* dashboard */


.admin-dashboard-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(245, 210, 122, 0.12), transparent 30%),
        radial-gradient(circle at top left, rgba(127, 255, 212, 0.12), transparent 30%),
        linear-gradient(135deg, #010706, #052820, #000);
    color: white;
    padding: 40px;
}

.admin-dashboard {
    max-width: 1300px;
    margin: auto;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.admin-topbar h1 {
    font-family: 'Cinzel', serif;
    color: #f5d27a;
    margin: 12px 0;
    font-size: 2.2rem;
}

.admin-topbar p {
    color: rgba(255,255,255,0.75);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.admin-card {
    padding: 30px;
    border-radius: 26px;
    background: rgba(5, 40, 32, 0.78);
    border: 1px solid rgba(127, 255, 212, 0.18);
    box-shadow: 0 18px 55px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-8px);
}

.admin-card h2 {
    color: #f5d27a;
    margin-bottom: 12px;
}

.admin-card p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .admin-dashboard-body {
        padding: 20px;
    }

    .admin-topbar h1 {
        font-size: 1.7rem;
    }
}


/* orders */
/* ORDERS PREMIUM */
.orders-section {
    max-width: 1100px;
    margin: 40px auto 100px;
    padding: 0 25px;
}

.orders-grid {
    display: grid;
    gap: 35px;
}

.order-card {
    background: rgba(5, 40, 32, 0.72);
    border: 1px solid rgba(127, 255, 212, 0.35);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.order-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(127,255,212,0.18);
    padding-bottom: 20px;
    margin-bottom: 22px;
}

.order-number {
    color: #9fffe0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.order-top h3 {
    font-size: 2rem;
    margin-top: 8px;
    color: #fff;
    font-family: 'Cinzel', serif;
}

.order-date {
    color: #9fffe0;
    white-space: nowrap;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
    margin-bottom: 28px;
}

.order-details p {
    color: #eefaf5;
    font-size: 1rem;
}

.order-details strong {
    color: #9fffe0;
}

.order-products-box {
    background: rgba(0,0,0,0.22);
    border-radius: 22px;
    padding: 24px;
    margin-top: 20px;
}

.order-products-box h4 {
    color: #9fffe0;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.order-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.order-product-item h5 {
    color: #fff;
    font-size: 1.2rem;
}

.order-product-item p {
    color: #bdd8cf;
    margin-top: 5px;
}

.order-product-item strong {
    color: #9fffe0;
    font-size: 1.2rem;
}

.order-total-box {
    margin-top: 28px;
    text-align: right;
    font-size: 1.7rem;
    font-weight: 800;
    color: #9fffe0;
}

@media (max-width: 700px) {
    .order-top,
    .order-product-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-details {
        grid-template-columns: 1fr;
    }

    .order-total-box {
        text-align: left;
    }
}

.disabled-btn {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* FIX LOGO COLOR */
.logo a,
.logo a:visited,
.logo a:hover,
.logo a:active,
.logo a:focus {
    color: #9fffe0 !important;
    text-decoration: none !important;
}