/* Custom fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #0a0e17;
    --bg-card: rgba(22, 30, 49, 0.7);
    --bg-card-hover: rgba(30, 41, 67, 0.9);
    --primary: #ff6b35;
    --primary-hover: #ff8552;
    --primary-gradient: linear-gradient(135deg, #ff6b35, #ff8c00);
    --accent: #00b4d8;
    --accent-gradient: linear-gradient(135deg, #00b4d8, #0077b6);
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 14, 23, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Order Statuses Colors */
    --status-received: #ffd166;
    --status-preparing: #06d6a0;
    --status-on-delivery: #118ab2;
    --status-completed: #00b4d8;
    --status-cancelled: #ef476f;
    --status-paid: #06d6a0;
    --status-pending: #ffd166;
    --status-failed: #ef476f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1a2235;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Header & Navbar */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-btn {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.cart-icon-container:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Banner Hero */
.hero {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, rgba(10, 14, 23, 0) 100%);
    padding: 4rem 2rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.shop-status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.status-open {
    background: rgba(6, 214, 160, 0.15);
    color: #06d6a0;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.status-closed {
    background: rgba(239, 71, 111, 0.15);
    color: #ef476f;
    border: 1px solid rgba(239, 71, 111, 0.3);
}

/* Main Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    width: 100%;
}

/* Categories Section */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 0.9s ease-out;
}

.category-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-tab:hover, .category-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Products Grid */
.category-section {
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 0.75rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-main);
}

.product-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.product-image-container {
    width: 100%;
    height: 180px;
    background: #111827;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-hover);
}

.btn-add-cart {
    background: var(--primary-gradient);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

/* Sliding Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.cart-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.btn-close-cart {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-close-cart:hover {
    color: var(--primary);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary-hover);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-qty {
    background: #1a2235;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 26px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.btn-qty:hover {
    background: var(--primary);
    color: white;
}

.qty-val {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: #ef476f;
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.btn-remove-item:hover {
    opacity: 1;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.total-row.grand-total {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 3rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    display: none;
}

.cart-overlay.open {
    display: block;
}

/* Checkout Page */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-main);
}

.checkout-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: #0f172a;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.map-container-wrapper {
    margin-top: 1.5rem;
}

.map-instructions {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

#map {
    height: 300px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.order-summary-card {
    background: #111827;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.order-summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.summary-items {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.summary-item-name {
    color: var(--text-muted);
}

.error-message {
    background: rgba(239, 71, 111, 0.15);
    border: 1px solid rgba(239, 71, 111, 0.3);
    color: #ef476f;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Order Success & Detail Tracking Page */
.status-tracker {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin: 3rem 0;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .status-tracker {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.status-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.status-bubble {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1a2235;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-muted);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.status-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.status-step.active .status-bubble {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    transform: scale(1.1);
}

.status-step.active .status-label {
    color: var(--text-main);
    font-weight: 700;
}

.status-step.completed .status-bubble {
    background: #06d6a0;
    border-color: #06d6a0;
    color: white;
}

.status-step.completed .status-label {
    color: #06d6a0;
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 30px;
}

.badge-received { background: rgba(255, 209, 102, 0.15); color: var(--status-received); border: 1px solid var(--status-received); }
.badge-preparing { background: rgba(6, 214, 160, 0.15); color: var(--status-preparing); border: 1px solid var(--status-preparing); }
.badge-delivery { background: rgba(17, 138, 178, 0.15); color: var(--status-on-delivery); border: 1px solid var(--status-on-delivery); }
.badge-completed { background: rgba(0, 180, 216, 0.15); color: var(--status-completed); border: 1px solid var(--status-completed); }
.badge-cancelled { background: rgba(239, 71, 111, 0.15); color: var(--status-cancelled); border: 1px solid var(--status-cancelled); }

.badge-paid { background: rgba(6, 214, 160, 0.15); color: var(--status-paid); border: 1px solid var(--status-paid); }
.badge-pending { background: rgba(255, 209, 102, 0.15); color: var(--status-pending); border: 1px solid var(--status-pending); }
.badge-failed { background: rgba(239, 71, 111, 0.15); color: var(--status-failed); border: 1px solid var(--status-failed); }

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Admin Dashboard CSS */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group select, .filter-group input {
    background: #0f172a;
    color: white;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.btn-search {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-search:hover {
    opacity: 0.9;
}

.btn-reset {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.btn-reset:hover {
    background: rgba(255,255,255,0.1);
}

.admin-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    height: calc(100vh - 250px);
}

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

.detail-container {
    overflow-y: auto;
}

.orders-list-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    height: calc(100vh - 250px);
    overflow-y: auto;
    padding: 1rem;
    box-shadow: var(--shadow-main);
}

.order-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.order-item-card:hover, .order-item-card.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.order-item-number {
    font-weight: 700;
    color: var(--text-main);
}

.order-item-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-item-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-view-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-main);
    display: none; /* Controlled by JS clicks */
}

.detail-view-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.detail-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.4rem;
    color: var(--accent);
}

.detail-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-meta-item {
    font-size: 0.95rem;
}

.detail-meta-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-action-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.btn-gmaps { background: #4285F4; }
.btn-waze { background: #33CCFF; }

.status-update-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Login Page styles */
.login-wrapper {
    max-width: 400px;
    margin: 6rem auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow-main);
    animation: fadeIn 0.5s ease-out;
}

.login-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-login {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.login-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.login-footer a:hover {
    color: var(--primary);
}

/* Footer Section */
footer {
    margin-top: auto;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: rgba(10, 14, 23, 0.9);
}

footer a {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Aderezos Selector */
.aderezos-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.5rem 0;
    padding: 0.4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.aderezo-label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.aderezo-label:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-main);
}

.aderezo-cb {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--primary);
}

.cart-item-aderezos {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.15rem 0;
}
