/* Euro Döner - Custom Styles */
:root {
    --primary-color: #1a365d;
    --primary-light: #2d5a87;
    --primary-dark: #0f2841;
    --secondary-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* Override Bootstrap primary color */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.navbar-dark .navbar-brand {
    color: var(--white) !important;
    font-size: 1.5rem;
}

/* Body and Layout */
body {
    background-color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
}

.main-content {
    margin-top: 76px; /* Account for fixed navbar */
    min-height: calc(100vh - 76px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    min-height: calc(100vh - 76px);
}

.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Hero Carousel Styles */
#heroCarousel {
    height: calc(100vh - 76px);
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

#heroCarousel .carousel-item {
    height: calc(100vh - 76px);
    min-height: 500px;
    max-height: 800px;
}

.carousel-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video Carousel Styles */
.carousel-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.carousel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .carousel-video {
        height: 56.25vw; /* 9/16 * 100 */
    }
}

@media (max-aspect-ratio: 16/9) {
    .carousel-video {
        width: 177.78vh; /* 16/9 * 100 */
    }
}

.carousel-caption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.85) 0%,
        rgba(45, 90, 135, 0.75) 50%,
        rgba(26, 54, 93, 0.85) 100%
    );
    z-index: 1;
}

/* Logo Overlay Styling */
.carousel-logo-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    animation: logoSlideIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.carousel-logo {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
    transition: all 0.4s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

.carousel-logo:hover {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.8));
}

/* Logo Animations */
@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(-50px) rotate(-15deg) scale(0.5);
    }
    60% {
        opacity: 0.9;
        transform: translateX(10px) translateY(5px) rotate(5deg) scale(1.1);
    }
    100% {
        opacity: 0.85;
        transform: translateX(0) translateY(0) rotate(0) scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7)) 
                drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    }
}

#heroCarousel .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
}

/* Brand Info Styling */
.carousel-brand-info {
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', sans-serif;
}

.brand-tagline {
    font-size: 1.3rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    font-weight: 300;
    font-style: italic;
    border-top: 2px solid rgba(255, 215, 0, 0.5);
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding: 0.5rem 2rem;
    display: inline-block;
}

#heroCarousel .carousel-caption .slider-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#heroCarousel .carousel-caption .slider-subtitle {
    font-size: 1.75rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

#heroCarousel .btn {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#heroCarousel .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 0.8;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

#heroCarousel .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

#heroCarousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 3px solid var(--white);
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--white);
    transform: scale(1.3);
}

/* Professional text sliding animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInGlow {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    100% {
        opacity: 1;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

/* Apply animations to carousel text */
#heroCarousel .carousel-item.active .brand-name {
    animation: fadeInScale 1s ease-out, shimmer 3s ease-in-out infinite;
    background: linear-gradient(90deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#heroCarousel .carousel-item.active .brand-tagline {
    animation: fadeInGlow 1.2s ease-out 0.3s both;
}

#heroCarousel .carousel-item.active .slider-title {
    animation: slideInFromLeft 0.8s ease-out 0.6s both;
}

#heroCarousel .carousel-item.active .slider-subtitle {
    animation: slideInFromRight 0.8s ease-out 0.9s both;
}

#heroCarousel .carousel-item.active .btn {
    animation: slideInFromBottom 0.8s ease-out 0.4s both;
}

#heroCarousel .carousel-item.active .btn:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive Carousel */
@media (max-width: 992px) {
    #heroCarousel .carousel-caption .slider-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    #heroCarousel .carousel-caption .slider-subtitle {
        font-size: 1.4rem;
    }
    
    #heroCarousel .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .brand-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
        padding: 0.4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    #heroCarousel {
        height: 70vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    #heroCarousel .carousel-item {
        height: 70vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    #heroCarousel .carousel-caption .slider-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    #heroCarousel .carousel-caption .slider-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    #heroCarousel .carousel-caption {
        padding: 2rem 1rem;
    }
    
    #heroCarousel .carousel-control-prev-icon,
    #heroCarousel .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .brand-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .brand-tagline {
        font-size: 1rem;
        letter-spacing: 1.5px;
        padding: 0.3rem 1rem;
    }
}

@media (max-width: 576px) {
    #heroCarousel {
        height: 60vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    #heroCarousel .carousel-item {
        height: 60vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    #heroCarousel .carousel-caption .slider-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    #heroCarousel .carousel-caption .slider-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    #heroCarousel .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    #heroCarousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    .brand-name {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.3rem;
    }
    
    .brand-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
        padding: 0.2rem 0.8rem;
    }
    
    .carousel-brand-info {
        margin-bottom: 1.5rem;
    }
}

/* Cards and Components */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item-card {
    height: 100%;
    overflow: hidden;
}

.menu-item-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-card:hover .card-img-top {
    transform: scale(1.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

/* Auth Cards */
.auth-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Form Controls */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--gray-300);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
    transform: translateY(-1px);
}

.form-select {
    border-radius: 8px;
    border: 2px solid var(--gray-300);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

/* Buttons with Fancy Hover Effects */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Badges */
.badge {
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Price Display */
.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Menu Item Styles */
.menu-item-row {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-item-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    min-width: 0; /* Allow flex items to shrink below content size */
}

.menu-item-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.menu-item-content .price {
    white-space: nowrap;
    margin-left: 0.5rem;
}

.quantity-controls {
    flex-wrap: nowrap;
    gap: 0.25rem;
}

.quantity-controls .quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.quantity-controls .btn {
    white-space: nowrap;
}

/* Mobile Responsive for Menu Items */
@media (max-width: 768px) {
    .menu-item-row {
        flex-direction: column !important;
        padding: 1rem;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .menu-item-content {
        width: 100%;
    }
    
    .menu-item-content .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .menu-item-content h5 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-item-content .price {
        font-size: 1.5rem;
        margin-left: 0;
        margin-bottom: 0.75rem;
    }
    
    .menu-item-content .text-muted {
        font-size: 0.9rem;
    }
    
    .menu-item-content .ingredients {
        font-size: 0.85rem;
    }
    
    .badges {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .quantity-controls {
        width: 100%;
        justify-content: space-between !important;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .quantity-controls > div:first-child {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .quantity-controls .btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .quantity-controls .add-to-cart {
        flex: 1;
        min-width: 100%;
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .menu-item-row {
        padding: 0.75rem;
    }
    
    .menu-item-image {
        height: 180px;
    }
    
    .menu-item-content h5 {
        font-size: 1.1rem;
    }
    
    .menu-item-content .price {
        font-size: 1.3rem;
    }
    
    .quantity-controls .btn {
        font-size: 0.8rem;
        padding: 0.35rem 0.65rem;
    }
    
    .quantity-controls .quantity {
        min-width: 25px;
        font-size: 0.9rem;
    }
}

/* Cart Summary Sticky */
.cart-summary-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    z-index: 1000;
    animation: slideInFromBottom 0.3s ease-out;
}

@media (max-width: 768px) {
    .cart-summary-sticky {
        padding: 0.75rem 0;
    }
    
    .cart-summary-sticky .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

/* Loading and Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
    
    .auth-card {
        margin: 1rem;
        padding: 2rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Logo responsive on tablet */
    .carousel-logo-overlay {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .carousel-logo {
        max-width: 100px;
        max-height: 100px;
    }
}

@media (max-width: 576px) {
    .main-content {
        margin-top: 60px;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Logo responsive on mobile */
    .carousel-logo-overlay {
        top: 1rem;
        left: 1rem;
    }
    
    .carousel-logo {
        max-width: 70px;
        max-height: 70px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid var(--gray-300) !important;
    }
}

/* Admin specific styles */
.admin-sidebar {
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    min-height: calc(100vh - 76px);
}

.admin-sidebar .nav-link {
    color: var(--gray-700);
    border-radius: 0.375rem;
    margin: 0.125rem 0.5rem;
    transition: all 0.2s ease;
}

.admin-sidebar .nav-link:hover {
    background-color: var(--gray-200);
}

.admin-sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.admin-card {
    border-left: 4px solid var(--primary-color);
}

.admin-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 15px;
}

/* Order status colors */
.status-pending {
    color: var(--warning-color);
}

.status-confirmed {
    color: var(--info-color);
}

.status-preparing {
    color: var(--primary-color);
}

.status-ready {
    color: var(--success-color);
}

.status-delivered {
    color: var(--success-color);
}

.status-cancelled {
    color: var(--danger-color);
}

/* GDPR Cookie Banner */
.gdpr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideInFromBottom 0.5s ease-out;
}

.gdpr-cookie-banner h5 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.gdpr-cookie-banner p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.gdpr-cookie-banner a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.gdpr-cookie-banner a:hover {
    color: var(--secondary-color);
}

.gdpr-cookie-banner .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gdpr-cookie-banner .btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.gdpr-cookie-banner .btn-light:hover {
    background-color: var(--secondary-color);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.gdpr-cookie-banner .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.gdpr-cookie-banner .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gdpr-cookie-banner {
        padding: 1rem 0;
    }
    
    .gdpr-cookie-banner h5 {
        font-size: 1rem;
    }
    
    .gdpr-cookie-banner p {
        font-size: 0.85rem;
    }
    
    .gdpr-cookie-banner .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@keyframes slideOutToBottom {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}