* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1f1633;        /* deep purple for header/backgrounds */
    --primary-light: #2b2145;  /* slightly lighter purple */
    --accent: #8e44ad;         /* purple accent for buttons/highlights */
    --accent-dark: #6c3483;    /* darker accent on hover */
    --text: #22252f;
    --text-light: #7f8c8d;
    --bg: #f1f3f7;
    --bg-light: #f7f8fc;
    --card: #ffffff;
    --border: #d5dbdb;
    --success: #27ae60;
    --error: #e74c3c;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    font-size: 16px;
}

/* Main Site Dark Theme */
body.main-site {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f2e 50%, #0f0a1a 100%);
    color: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
    position: relative;
}

body.main-site::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(142, 68, 173, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 52, 131, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid #8e44ad;
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.notification.success {
    border-left-color: var(--success);
}

.notification.error {
    border-left-color: var(--error);
}

.notification-icon {
    font-size: 24px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #fff;
}

/* Simple fade/slide animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease-out forwards;
}

.fade-delay-1 {
    animation-delay: 0.1s;
}

.fade-delay-2 {
    animation-delay: 0.2s;
}

.fade-delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Navigation */
.navbar {
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.875rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--card);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--card);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.2s;
    opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link span {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--card);
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 12px var(--shadow);
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(31, 22, 51, 0.9) 0%, rgba(43, 33, 69, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: var(--card);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.2);
    border-color: rgba(142, 68, 173, 0.4);
}

.feature-card h3 {
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Menu Section */
.menu-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(142, 68, 173, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.25);
    border-color: rgba(142, 68, 173, 0.4);
}

.menu-item-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: rgba(142, 68, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(142, 68, 173, 0.2);
}

.menu-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8e44ad;
}

.menu-item .add-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.menu-item .add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(142, 68, 173, 0.3);
    border: 1px solid rgba(142, 68, 173, 0.2);
    animation: fadeInUp 0.4s ease-out;
    color: #fff;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 1;
    transition: color 0.2s;
}

.close:hover {
    color: var(--text);
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.modal-content .drink-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.modal-image-container {
    width: 100%;
    height: 280px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    border: 1px solid rgba(142, 68, 173, 0.2);
    overflow: hidden;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.base-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8e44ad;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
}

.addons-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1.5px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.addon-item:hover {
    border-color: rgba(142, 68, 173, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.addon-item.selected {
    border-color: #8e44ad;
    background: rgba(142, 68, 173, 0.15);
}

.addon-item label {
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 15px;
    color: #fff;
}

.addon-item input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.addon-price {
    font-weight: 600;
    color: #8e44ad;
    font-size: 15px;
}

.modal-total {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(142, 68, 173, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.modal-total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8e44ad;
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

/* Image Upload */
.image-upload-container {
    margin-bottom: 1rem;
}

.image-upload-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.image-upload-input {
    display: none;
}

.image-upload-btn {
    display: inline-block;
    padding: 10px 16px;
    background: var(--bg-light);
    border: 1.5px dashed var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
}

.image-upload-btn:hover {
    border-color: var(--accent);
    background: rgba(52, 152, 219, 0.05);
}

.image-preview {
    margin-top: 0.75rem;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border);
    display: none;
}

/* Cart Section */
.cart-section {
    padding: 80px 20px;
    min-height: 60vh;
    background: transparent;
    position: relative;
    z-index: 1;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease-out;
}

.cart-item:hover {
    border-color: rgba(142, 68, 173, 0.4);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.15);
}

.cart-item-info h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8e44ad;
}

.remove-btn {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

.cart-summary {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.2);
    animation: fadeInUp 0.5s ease-out;
}

.total {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(142, 68, 173, 0.2);
}

.total h3 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

.total-amount {
    color: #8e44ad;
    font-weight: 700;
}

.checkout-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Checkout Modal */
.checkout-modal {
    max-width: 550px;
}

.checkout-step {
    margin-top: 1rem;
}

.checkout-step h3 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.delivery-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.option-btn {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.option-btn:hover,
.option-btn.selected {
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border-color: #8e44ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

/* Payment Method Selection */
.payment-method-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(142, 68, 173, 0.2);
}

.payment-method-section label {
    display: block;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.payment-method-options {
    display: flex;
    gap: 0.75rem;
}

.payment-method-btn {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-method-btn:hover,
.payment-method-btn.selected {
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border-color: #8e44ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.payment-method-btn span {
    font-size: 18px;
}

/* Cash Payment Section */
.cash-payment-info {
    padding: 1.5rem;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(142, 68, 173, 0.3);
    text-align: center;
}

.cash-payment-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 15px;
}

.cash-payment-info p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Order Notes Section */
.order-notes-section {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.order-notes-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.order-notes-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.6);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.order-notes-section textarea:focus {
    outline: none;
    border-color: #8e44ad;
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.order-notes-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Order Notes Display */
.order-notes-display {
    background: rgba(142, 68, 173, 0.1);
    border-left: 3px solid #8e44ad;
    padding: 0.75rem;
    margin-top: 0.75rem;
    border-radius: 6px;
}

.order-notes-display strong {
    color: #8e44ad;
    display: block;
    margin-bottom: 0.5rem;
}

/* Order Payment Method Display */
.order-payment-method {
    background: rgba(241, 196, 15, 0.2);
    border: 1px solid rgba(241, 196, 15, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.order-payment-method strong {
    color: #f1c40f;
}

/* Admin Finished Orders */
.admin-finished-orders {
    margin-top: 1rem;
}

.admin-finished-order-card {
    background: rgba(142, 68, 173, 0.1);
    border: 1px solid rgba(142, 68, 173, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.admin-finished-order-card:hover {
    background: rgba(142, 68, 173, 0.15);
    border-color: rgba(142, 68, 173, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.2);
}

/* Order Actions */
.order-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.order-actions button,
.order-actions a {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.order-actions .admin-btn-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: #fff;
}

.order-actions .admin-btn-primary:hover {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.4);
}

.order-actions .admin-btn-secondary {
    background: rgba(142, 68, 173, 0.2);
    color: #8e44ad;
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.order-actions .admin-btn-secondary:hover {
    background: rgba(142, 68, 173, 0.3);
    transform: translateY(-2px);
}

/* Limited Time Badge */
.limited-time-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
    margin-left: 0.5rem;
}

.menu-item-image .limited-time-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    margin: 0;
    z-index: 2;
}

.menu-item-content h3 .limited-time-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Admin Danger Button */
.admin-btn-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-btn-danger:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.admin-btn-danger:active {
    transform: translateY(0);
}

#addressForm input,
#paymentForm input {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border: 1.5px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.2s ease;
}

#addressForm input::placeholder,
#paymentForm input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#addressForm input:focus,
#paymentForm input:focus {
    outline: none;
    border-color: rgba(142, 68, 173, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.payment-row {
    display: flex;
    gap: 1rem;
}

.payment-row input {
    flex: 1;
}

.continue-btn,
.pay-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.continue-btn:hover,
.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

.confirmation {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: var(--success);
    color: var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    font-weight: 300;
}

.confirmation h3 {
    color: #27ae60;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.confirmation p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.home-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

/* Orders Section */
.orders-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease-out;
}

.order-card:hover {
    border-color: rgba(142, 68, 173, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.15);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(142, 68, 173, 0.2);
}

.order-id {
    font-weight: 700;
    color: #8e44ad;
    font-size: 1.2rem;
}

.order-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(142, 68, 173, 0.1);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.order-item:last-child {
    border-bottom: none;
}

.order-delivery-info {
    background: rgba(142, 68, 173, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid rgba(142, 68, 173, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.order-delivery-info strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.order-total {
    text-align: right;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8e44ad;
}

.empty-cart,
.empty-orders {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.empty-cart h3,
.empty-orders h3 {
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 1.5rem;
}

.empty-cart a,
.empty-orders a {
    display: inline-block;
    margin-top: 1rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.empty-cart a:hover,
.empty-orders a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

/* Footer */
.footer {
    background: rgba(15, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
    font-size: 14px;
    border-top: 1px solid rgba(142, 68, 173, 0.2);
    position: relative;
    z-index: 1;
}

/* Home - About & How It Works */
.about {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 15px;
    line-height: 1.7;
}

.about-highlight {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-highlight-item {
    flex: 1;
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(142, 68, 173, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-highlight-item:hover {
    border-color: rgba(142, 68, 173, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.15);
}

.about-highlight-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.about-highlight-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.about-stats {
    background: rgba(15, 10, 26, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.about-stats h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 600;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-stat {
    text-align: left;
}

.about-stat span {
    display: block;
}

.about-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8e44ad;
}

.about-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.how-it-works {
    padding: 80px 20px 100px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.how-grid {
    max-width: 900px;
    margin: 0 auto;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.how-step {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(142, 68, 173, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.how-step:hover {
    border-color: rgba(142, 68, 173, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.15);
}

.how-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(142, 68, 173, 0.2);
    color: #8e44ad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid rgba(142, 68, 173, 0.3);
}

.how-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.how-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.how-note {
    margin-top: 2rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1rem;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(142, 68, 173, 0.2);
}

/* Promo section in checkout */
.promo-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    background: rgba(142, 68, 173, 0.1);
    border: 1px dashed rgba(142, 68, 173, 0.3);
}

.promo-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.promo-input-row {
    display: flex;
    gap: 0.75rem;
}

.promo-input-row input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 15px;
}

.promo-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.promo-apply-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.promo-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.promo-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    min-height: 20px;
}

.promo-message.success {
    color: #27ae60;
}

.promo-message.error {
    color: #e74c3c;
}

.promo-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.promo-input-row {
    display: flex;
    gap: 0.75rem;
}

.promo-input-row input {
    flex: 1;
}

.promo-apply-btn {
    padding: 10px 16px;
    background: var(--accent);
    color: var(--card);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.promo-apply-btn:hover {
    background: var(--accent-dark);
}

.promo-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.promo-message.success {
    color: var(--success);
}

.promo-message.error {
    color: var(--error);
}

.order-promo {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--success);
}

/* ============================================
   ADMIN PANEL - BLACK & PURPLE THEME
   ============================================ */

/* Admin Body Background */
.admin-body {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f2e 50%, #0f0a1a 100%);
    min-height: 100vh;
    position: relative;
}

.admin-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(142, 68, 173, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 52, 131, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.admin-navbar {
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
}

.admin-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    min-height: calc(100vh - 70px);
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Login Card */
.admin-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    animation: fadeIn 0.5s ease-out;
}

.admin-login-card {
    background: rgba(15, 10, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(142, 68, 173, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-login-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(142, 68, 173, 0.3), 0 0 0 1px rgba(142, 68, 173, 0.2);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-logo-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.admin-login-header h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.admin-login-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Dashboard Header */
.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.admin-dashboard-header h1 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.admin-dashboard-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.admin-stat-card {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 68, 173, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.admin-stat-card:nth-child(1) { animation-delay: 0.1s; }
.admin-stat-card:nth-child(2) { animation-delay: 0.2s; }
.admin-stat-card:nth-child(3) { animation-delay: 0.3s; }

.admin-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(142, 68, 173, 0.4);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.2);
}

.admin-stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(142, 68, 173, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.admin-stat-content h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.admin-stat-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Main Grid */
.admin-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.admin-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Admin Cards */
.admin-card {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 68, 173, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.admin-card:hover {
    border-color: rgba(142, 68, 173, 0.4);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.15);
}

.admin-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
}

.admin-card-header h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Forms */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-input,
.admin-textarea,
.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.admin-input:focus,
.admin-textarea:focus,
.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    outline: none;
    border-color: rgba(142, 68, 173, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.admin-input::placeholder,
.admin-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-selected {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.custom-dropdown-selected:hover {
    border-color: rgba(142, 68, 173, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.custom-dropdown-selected.active {
    border-color: rgba(142, 68, 173, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    color: rgba(255, 255, 255, 0.6);
}

.custom-dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.custom-dropdown-options.show {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

.custom-dropdown-option {
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-dropdown-option:hover {
    background: rgba(142, 68, 173, 0.2);
    color: #fff;
}

.custom-dropdown-option.selected {
    background: rgba(142, 68, 173, 0.3);
    color: #fff;
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Buttons */
.admin-btn-primary,
.admin-btn-secondary,
.admin-btn-danger {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.admin-btn-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.admin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
}

.admin-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.admin-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(142, 68, 173, 0.5);
}

.admin-btn-danger {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.admin-btn-danger:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
}

/* Drinks Grid */
.admin-drinks-grid {
    display: grid;
    gap: 1.5rem;
}

.admin-drink-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(142, 68, 173, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeIn 0.4s ease-out;
}

.admin-drink-card:hover {
    border-color: rgba(142, 68, 173, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.15);
}

.admin-drink-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: rgba(142, 68, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-drink-image,
.admin-drink-emoji {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-drink-emoji {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-file-input {
    display: none;
}

.admin-image-upload-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 68, 173, 0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-image-upload-btn:hover {
    background: rgba(142, 68, 173, 0.3);
    border-color: rgba(142, 68, 173, 0.6);
}

.admin-drink-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-drink-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.admin-drink-actions button {
    flex: 1;
    min-width: 100px;
}

/* Addons Display */
.admin-addons-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 8px;
    min-height: 40px;
}

.admin-addon-tag {
    background: rgba(142, 68, 173, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid rgba(142, 68, 173, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.admin-addon-delete {
    background: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.admin-addon-delete:hover {
    background: rgba(231, 76, 60, 0.5);
    transform: scale(1.1);
}

.admin-empty-tag {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

/* Promos List */
.admin-promos-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(142, 68, 173, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeIn 0.4s ease-out;
}

.admin-promo-card:hover {
    border-color: rgba(142, 68, 173, 0.4);
    transform: translateX(4px);
}

.admin-promo-card.admin-promo-active {
    border-left: 4px solid #8e44ad;
}

.admin-promo-card.admin-promo-inactive {
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.admin-promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.admin-promo-code {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.admin-promo-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.admin-promo-badge.admin-promo-active {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.admin-promo-badge.admin-promo-inactive {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-promo-type {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.admin-promo-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.admin-promo-actions {
    display: flex;
    gap: 0.75rem;
}

.admin-promo-actions button {
    flex: 1;
}

/* Empty State */
.admin-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.admin-empty-state p {
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-row {
        grid-template-columns: 1fr;
    }

    .admin-drink-actions {
        flex-direction: column;
    }

    .admin-drink-actions button {
        width: 100%;
    }

    .admin-promo-actions {
        flex-direction: column;
    }

    .admin-promo-actions button {
        width: 100%;
    }

    .admin-login-card {
        padding: 2rem 1.5rem;
    }
}


/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Typography fixes */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    /* Menu grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .menu-item-image {
        height: 180px;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item h3 {
        font-size: 1.1rem;
    }

    .menu-item p {
        font-size: 13px;
    }

    /* Cart items */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .cart-item-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cart-item-price {
        font-size: 1.2rem;
    }

    .remove-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* Cart summary */
    .cart-summary {
        padding: 1.5rem;
    }

    .total h3 {
        font-size: 1.5rem;
    }

    /* Checkout modal */
    .modal-content {
        padding: 1.5rem;
        margin: 10% auto;
        width: 95%;
    }

    .checkout-modal {
        max-width: 100%;
    }

    .delivery-options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .option-btn {
        padding: 14px;
    }

    .payment-row {
        flex-direction: column;
        gap: 0;
    }

    /* Add-ons */
    .addon-item {
        padding: 0.875rem;
        font-size: 14px;
    }

    .addon-item label {
        font-size: 14px;
    }

    /* Orders */
    .order-card {
        padding: 1.5rem;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-highlight {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* How it works */
    .how-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .how-step {
        padding: 1.5rem;
    }

    /* Features */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    /* Notifications */
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        padding: 14px 18px;
    }

    /* Promo section */
    .promo-input-row {
        flex-direction: column;
    }

    .promo-apply-btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
        font-size: 13px;
    }

    /* Text contrast fixes */
    body.main-site {
        font-size: 15px;
    }

    /* Ensure text is readable */
    .cart-item-info p,
    .order-item,
    .about-text p,
    .how-step p {
        color: rgba(255, 255, 255, 0.85);
    }
}
