.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-logo-mobile {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Header Layout Styles */

/* Header Layout Styles */

/* Common header styles */
.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

/* Left logo layout */
[data-logo-position="left"] .header-left {
  flex: 1;
}

[data-logo-position="left"] .navbar-nav {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Center logo layout */
[data-logo-position="center"] .header-left {
  flex: 0 1 auto;
}

[data-logo-position="center"] .header-center {
  flex: 0 1 auto;
  margin: 0 auto;
}

[data-logo-position="center"] .header-right {
  flex: 0 1 auto;
}

/* Right section (common) */
.header-right {
  margin-left: auto;
  padding-right: 1rem;
}

/* SKU Image Skeleton - Image containers for cards */
.sku-image-skeleton, .image-skeleton {
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    /* Override any aspect-ratio that might be applied by JS */
    aspect-ratio: auto !important;
    /* Remove fixed height to allow dynamic sizing */
    height: auto;
    width: 100%;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1) {
    .sku-image-skeleton, .image-skeleton {
        /* Remove fixed height */
        height: auto;
    }
    
    .sku-image-skeleton img, .image-skeleton img {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
    }
}

.sku-image-skeleton::after, .image-skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

.sku-image-skeleton img, .image-skeleton img {
    width: 100% !important;
    height: auto !important;
    /* Remove max-height to allow natural scaling */
    max-height: none;
    /* Use contain to preserve aspect ratio without cropping */
    object-fit: contain;
    border-radius: 8px;
    /* Make images visible by default - remove opacity: 0 */
    opacity: 1;
    transition: opacity 0.3s ease;
    display: block;
    /* Ensure proper aspect ratio preservation */
    aspect-ratio: attr(width) / attr(height);
}

/* Hide shimmer effect when image is loaded */
.sku-image-skeleton.loaded::after, .image-skeleton.loaded::after {
    display: none;
}

/* Ensure loaded images are visible */
.sku-image-skeleton.loaded img, .image-skeleton.loaded img {
    opacity: 1;
}

/* Show shimmer only when image is not loaded */
.sku-image-skeleton:not(.loaded)::after, .image-skeleton:not(.loaded)::after {
    display: block;
}

@keyframes shimmer {
    100% { 
        transform: translateX(200%); 
    }
}

/* Skeleton text placeholders */
.skeleton-text {
    background: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

/* Card skeleton for initial page loading */
.card-skeleton {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-skeleton .skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.card-skeleton .skeleton-content {
    padding: 1rem;
}

.card-skeleton .skeleton-title {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.card-skeleton .skeleton-description {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    width: 80%;
}

/* Sticky Cart Bar Styles */
.stickyfooter {
    position: fixed;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 1035;
    display: none;
}


.cartbar {
    max-width: 500px;
    margin: 0 auto;
    background-color: #000;
    border-radius: 30px;
}

/* Show/Hide cart bar based on items */
#cartBottom[data-items="0"] {
  display: none !important;
}

#cartBottom:not([data-items="0"]) {
  display: block !important;
}

/* Icon styles */
.ci-shopping-bag {
    margin-right: 0.5rem;
}

.feather.icon-feather-chevron-right {
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 0.25rem;
}

/* Clean Pagination Styles */
.pagination-clean {
    font-size: 0.9rem;
}

.pagination-clean .btn {
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-clean .btn:not(.disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination-clean .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive pagination */
@media (max-width: 576px) {
    .pagination-clean {
        flex-wrap: wrap;
        gap: 0.5rem !important;
    }
    
    .pagination-clean .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .pagination-clean .text-muted {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Collections Skeleton Loader */
.collection-image-skeleton {
    position: relative;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image-skeleton img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-image-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: inherit;
}

.collection-image-skeleton img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.collection-image-skeleton.loaded::after {
    display: none;
}

.collection-image-skeleton.loaded img {
    opacity: 1;
}

/* Collection card skeleton for initial loading */
.collection-card-skeleton {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.collection-card-skeleton .skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.collection-card-skeleton .skeleton-content {
    padding: 1rem;
}

.collection-card-skeleton .skeleton-title {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.collection-card-skeleton .skeleton-description {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    width: 80%;
}

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

.otp-input {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #dee2e6;
    border-radius: 12px;
  }
  
  .otp-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  .otp-input.is-invalid {
    border-color: #dc3545;
  }
  
  #loginModal .form-control {
    border-radius: 8px;
    padding: 12px 16px;
  }
  
  #loginModal .btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
  }
  
  .login-step {
    min-height: 400px;
  }

/* Cartzilla-inspired Global Improvements */

/* Smooth focus styles for better accessibility */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Better button transitions */
.btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Modal improvements */
.offcanvas {
    border: none;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.offcanvas-body {
    background: #fff;
}

/* Card improvements */
.card {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Form improvements */
.form-control:focus,
.form-select:focus {
    border-color: #9ca3af;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Loading states */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Price styling improvements */
.price, .product-price {
    font-weight: 700;
    color: #1f2937;
}

.price del, .product-price del {
    color: #9ca3af;
    font-weight: 400;
}

/* Badge improvements */
.badge {
    font-weight: 500;
    letter-spacing: 0.025em;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Cartzilla-inspired Variant and Addon Styling */

/* Main addon/variant groups */
.allGroups {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.allGroups .form-label {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Variant buttons (radio) styling - Cartzilla style */
.allGroups .btn-check:checked + .btn {
    background-color: #1f2937;
    border-color: #1f2937;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.allGroups .btn-check + .btn {
    border: 2px solid #e5e7eb;
    color: #374151;
    background: #fff;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.allGroups .btn-check + .btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.allGroups .btn-check + .btn:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Addon groups styling - Cartzilla style */
.addongroups {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.addongroups > span {
    display: block;
    width: 100%;
}

/* Addon checkbox styling - Card-like appearance */
.addongroups .btn-check + .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
    font-weight: 500;
    min-height: 60px;
    position: relative;
}

.addongroups .btn-check:checked + .btn {
    background-color: #1f2937;
    border-color: #1f2937;
    color: white;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.addongroups .btn-check + .btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.addongroups .btn-check:checked + .btn:hover {
    background-color: #111827;
    border-color: #111827;
}

/* Checkbox indicator */
.addongroups .btn-check + .btn::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.addongroups .btn-check:checked + .btn::before {
    background-color: #fff;
    border-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23000' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
}

.addongroups .addon-name {
    margin-left: 1.7rem;
    font-weight: 500;
}

/* Hide the actual checkbox/radio inputs */
.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

/* Price display in addons - Cartzilla style */
.addonpricedisp {
    font-weight: 700;
    color: inherit;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    backdrop-filter: blur(4px);
}

.addongroups .btn-check:checked + .btn .addonpricedisp {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Variant options layout - Cartzilla style */
.allGroups .d-flex.flex-wrap {
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.allGroups .d-flex.flex-wrap > div {
    flex: 0 0 auto;
    min-width: 120px;
}

/* Error message styling */
.variant_errors, .addon_errors {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #dc2626;
}

/* Loading and disabled states */
.allGroups .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.allGroups .btn.loading {
    position: relative;
    color: transparent;
}

.allGroups .btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Modal specific styles */
.sku-offcanvas-image-container {
    width: 100%;
    min-height: 250px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sku-offcanvas-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .allGroups {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .allGroups .btn {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
        min-height: 40px;
    }
    
    .addongroups .btn {
        padding: 0.875rem 1rem;
        min-height: 56px;
    }
    
    .addongroups .addon-name {
        margin-left: 2rem;
    }
    
    .allGroups .d-flex.flex-wrap > div {
        min-width: 100px;
        flex: 1 1 auto;
    }
    
    .offcanvas {
        width: 85% !important;
    }
}

/* =================================================================== */
/* MENU PAGE STYLES */
/* =================================================================== */

/* Menu Container */
.menu-container {
    min-height: 100vh;
    background: #fafafa;
}

/* Menu Header */
.menu-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
}

.menu-header .display-4 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-stats .stat-item {
    text-align: center;
    padding: 0 1rem;
}

.menu-stats .stat-item strong {
    font-size: 2rem;
    color: #fff;
}

.menu-stats .stat-item small {
    color: rgba(255,255,255,0.8);
}

/* Sticky Navigation */
.menu-navigation {
    border-bottom: 1px solid #e0e0e0;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95) !important;
}

.menu-navigation .nav-link {
    color: #666;
    border: 2px solid transparent;
    margin: 0 0.25rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.menu-navigation .nav-link:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #333;
}

.menu-navigation .nav-link.active {
    background-color: #333;
    border-color: #333;
    color: white;
}

.menu-navigation .nav-link.active .badge {
    background-color: rgba(255,255,255,0.2) !important;
    color: white !important;
}

.collection-nav-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

/* Collection Headers */
.collection-header {
    margin-bottom: 2rem;
}

.collection-icon-wrapper {
    flex-shrink: 0;
}

.collection-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-title {
    color: #333;
    margin-bottom: 0.5rem;
}

.collection-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.collection-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2, transparent);
}

.item-count {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Menu Item Cards */
.menu-item-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.menu-item-content {
    display: flex;
    height: 100%;
}

/* Menu Item Images */
.menu-item-image {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-card:hover .item-image {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay .btn {
    backdrop-filter: blur(4px);
}

/* Menu Item Details */
.menu-item-details {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.25rem;
    color: #e74c3c;
}

.original-price {
    font-size: 1rem;
}

.item-badges {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.item-badges .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.item-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
}

/* Action Buttons */
.item-actions {
    margin-top: auto;
}

.item-actions .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.item-actions .btn-outline-primary:hover {
    background-color: #333;
    border-color: #333;
}

.item-actions .btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.item-actions .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

/* Empty State */
.empty-menu-state {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 500px;
}

.empty-icon {
    color: #bbb;
    margin-bottom: 1.5rem;
}

/* Cart Floating Button */
.cart-floating-button {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 1030;
    pointer-events: none;
}

.cart-floating-button .btn {
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .menu-header {
        padding: 2rem 0;
    }
    
    .menu-header .display-4 {
        font-size: 2rem;
    }
    
    .menu-stats {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .menu-navigation .nav {
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .menu-navigation .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        margin: 0.25rem;
    }
    
    .collection-header .row {
        flex-direction: column;
        text-align: center;
    }
    
    .collection-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .menu-item-content {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-floating-button {
        bottom: 1rem;
    }
    
    .cart-floating-button .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Section Spacing */
.mb-6 {
    margin-bottom: 4rem !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =================================================================== */
/* COMPACT MENU STYLES (menu-2) */
/* =================================================================== */

/* Compact Menu Container */
.compact-menu {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Compact Header */
.compact-header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1010;
}

.menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.menu-summary {
    font-size: 0.9rem;
    color: #666;
}

.menu-summary .divider {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Collection Tabs */
.collection-tabs {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 81px; /* Height of compact header */
    z-index: 1009;
}

.tab-scroll {
    display: flex;
    overflow-x: auto;
    padding: 1rem 0;
    gap: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-scroll::-webkit-scrollbar {
    display: none;
}

.tab-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-item:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.tab-item.active {
    background: #333;
    border-color: #333;
    color: white;
}

.tab-name {
    margin-right: 0.5rem;
}

.tab-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

.tab-item.active .tab-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Compact Content */
.compact-content {
    padding: 1rem 0;
}

.collection-content {
    display: none;
}

.collection-content.active {
    display: block;
}

/* Items List */
.items-list {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.item-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.item-row:last-child {
    border-bottom: none;
}

.item-row:hover {
    background-color: #f8f9fa;
}

/* Compact Item Image */
.item-image-compact {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f8f9fa;
}

.compact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Compact Item Details */
.item-details-compact {
    flex: 1;
    min-width: 0;
}

.item-name-compact {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.item-desc-compact {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.price-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price-compact {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
}

.original-price-compact {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

/* Compact Action Button */
.item-action-compact {
    flex-shrink: 0;
    margin-left: 1rem;
}

.btn-add-compact {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e74c3c;
    border: none;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-add-compact:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.btn-add-compact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-add-compact.success {
    background: #27ae60;
}

.btn-add-compact.error {
    background: #e74c3c;
}

/* Empty State Compact */
.empty-state-compact {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 0.75rem;
    margin: 1rem 0;
}

.empty-icon-compact {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-title-compact {
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-desc-compact {
    color: #999;
    font-size: 0.9rem;
}

/* Sticky Bottom Cart */
.compact-cart-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
    z-index: 1020;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cart-sticky-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cart-sticky-btn:hover {
    background: #222;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cart-total {
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-action {
    font-size: 1rem;
}

/* Mobile Optimizations for Compact Menu */
@media (max-width: 768px) {
    .compact-header {
        padding: 1rem 0;
    }
    
    .menu-title {
        font-size: 1.25rem;
    }
    
    .collection-tabs {
        top: 73px; /* Adjusted for smaller header */
    }
    
    .tab-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .item-row {
        padding: 0.75rem;
    }
    
    .item-image-compact {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem;
    }
    
    .item-name-compact {
        font-size: 0.95rem;
    }
    
    .current-price-compact {
        font-size: 1rem;
    }
    
    .btn-add-compact {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .compact-cart-sticky {
        padding: 0.75rem 0;
    }
    
    .cart-sticky-btn {
        padding: 0.75rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .items-list {
        margin: 0 1rem;
    }
    
    .item-row {
        padding: 1.25rem;
    }
    
    .item-image-compact {
        width: 70px;
        height: 70px;
    }
}

/* Menu 3 - Card Grid Layout Styles */
.card-menu {
    font-family: inherit;
}

.card-menu-header {
    position: relative;
    overflow: hidden;
}

.card-menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.card-menu .category-filter-nav {
    border-bottom: 1px solid #e0e0e0;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95) !important;
}

.card-menu .category-filter-nav .btn {
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 50px !important;
    font-weight: 500;
    margin: 0.125rem;
}

.card-menu .category-filter-nav .btn:not(.active):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-menu .category-filter-nav .btn.active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

.card-menu .collection-header-card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

.card-menu .collection-header-card .card {
    border-radius: 12px !important;
}

.card-menu .product-item {
    transition: all 0.3s ease;
}

.card-menu .products-grid {
    min-height: 200px;
}

/* Floating Cart Summary */
.card-menu .floating-cart-summary {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
    animation: slideInUp 0.3s ease;
}

.card-menu .floating-cart-summary .card {
    border-radius: 15px !important;
    border: none !important;
}

.card-menu .floating-cart-summary .btn {
    border-radius: 10px !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.card-menu .floating-cart-summary .btn:hover {
    transform: translateX(3px);
}

.card-menu .cart-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* SKU Card Enhancements for Menu */
.card-menu .card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid #f0f0f0 !important;
}

.card-menu .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
    border-color: #e0e0e0 !important;
}

.card-menu .card-img-top {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden;
}

.card-menu .card-img-top img {
    transition: transform 0.3s ease;
}

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

.card-menu .sku-title {
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1.4;
}

.card-menu .sku-title a,
.card-menu .sku-title span {
    color: inherit !important;
    text-decoration: none !important;
}

.card-menu .sku-title a:hover,
.card-menu .sku-title span:hover {
    color: var(--bs-primary) !important;
}

.card-menu .card-body {
    padding: 1.25rem !important;
}

.card-menu .card-footer {
    padding: 0 1.25rem 1.25rem !important;
    background: transparent !important;
}

.card-menu .btn {
    border-radius: 8px !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.card-menu .btn-dark {
    background-color: #333 !important;
    border-color: #333 !important;
}

.card-menu .btn-dark:hover {
    background-color: #000 !important;
    border-color: #000 !important;
    transform: translateY(-1px);
}

.card-menu .btn-outline-secondary:hover {
    transform: translateY(-1px);
}

/* No Results State */
.card-menu #noResults {
    animation: fadeIn 0.5s ease;
}

.card-menu #noResults .ci-search {
    opacity: 0.5;
}

/* SKU Modal Styles */
.card-menu .sku-modal-details {
    padding: 0;
}

.card-menu .sku-modal-details img {
    border-radius: 12px !important;
}

.card-menu .sku-modal-details .price-section {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.card-menu .sku-modal-details .btn {
    border-radius: 10px !important;
    font-weight: 600;
    padding: 12px 24px;
}

.card-menu .sku-modal-details .btn-lg {
    padding: 15px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-menu .category-filter-nav .d-flex {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .card-menu .category-filter-nav .d-flex::-webkit-scrollbar {
        display: none;
    }
    
    .card-menu .category-filter-nav .btn {
        flex-shrink: 0;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .card-menu .floating-cart-summary {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .card-menu .dropdown {
        width: 100%;
    }
    
    .card-menu .dropdown .btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .card-menu-header {
        padding: 3rem 0 !important;
    }
    
    .card-menu-header .display-4 {
        font-size: 2rem !important;
    }
    
    .card-menu .collection-header-card .row {
        flex-direction: column;
        text-align: center;
    }
    
    .card-menu .collection-header-card .col-auto {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .card-menu .products-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .card-menu .card-menu-header .h2 {
        font-size: 1.5rem !important;
    }
    
    .card-menu .card-menu-header .lead {
        font-size: 1rem !important;
    }
    
    .card-menu .category-filter-nav {
        padding: 1rem 0 !important;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced hover effects for better UX */
.card-menu .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-menu .btn:active {
    transform: translateY(0);
}

/* Focus states for accessibility */
.card-menu .btn:focus,
.card-menu .card:focus-within {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* Loading states */
.card-menu .btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.card-menu .btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

/* Success/Error states for add to cart */
.card-menu .btn.success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.card-menu .btn.error {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* Churrolto-Style Menu with Horizontal Overflow */

/* Menu 1 - Churrolto Style */
.churrolto-menu {
    font-family: inherit;
}

.menu-header-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.category-scroll-container {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.category-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.category-scroll-nav {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 8px;
    padding: 0 8px;
}

.category-scroll-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-pill {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: fit-content;
    flex-shrink: 0;
}

.category-pill:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.category-pill.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 2px 4px rgba(0,123,255,0.2);
}

.pill-text {
    font-weight: inherit;
}

.pill-count {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.category-pill.active .pill-count {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
}

.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease;
    position: relative;
    display: block;
}

.product-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    margin-bottom: 12px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    margin-bottom: 8px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #28a745;
}

.original-price {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.product-add-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.product-add-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.product-add-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

.product-add-btn.added {
    background: #28a745;
}

/* Floating Cart Summary */
.floating-cart-summary {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #007bff;
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInUp 0.3s ease;
}

.cart-summary-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count-badge {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-total {
    font-weight: 600;
    font-size: 16px;
}

.cart-view-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(5px);
}

.cart-view-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.cart-view-btn:active {
    transform: translateY(0);
}

/* Menu 2 - Compact Style */
.compact-menu {
    font-family: inherit;
}

.compact-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.category-tabs-scroll {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.tabs-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.tabs-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 6px;
    padding: 0 12px;
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none;
}

.tab-pill {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #495057;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: fit-content;
    flex-shrink: 0;
}

.tab-pill:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.tab-pill.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.tab-name {
    font-weight: inherit;
}

.tab-count {
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1px 5px;
    font-size: 11px;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.tab-pill.active .tab-count {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Compact Products List */
.products-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-item-compact {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.product-item-compact:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-image-compact {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
}

.compact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-compact {
    flex: 1;
    min-width: 0;
}

.product-name-compact {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-desc-compact {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-price-compact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-current {
    font-size: 15px;
    font-weight: 700;
    color: #28a745;
}

.price-original {
    font-size: 13px;
    color: #6c757d;
    text-decoration: line-through;
}

.product-action-compact {
    flex-shrink: 0;
}

.add-btn-compact {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 60px;
}

.add-btn-compact:hover {
    background: #0056b3;
}

.add-btn-compact:disabled {
    opacity: 0.6;
}

.add-btn-compact.added {
    background: #28a745;
}

/* Compact Floating Cart */
.compact-floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #007bff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInUp 0.3s ease;
}

.compact-cart-content {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
}

.cart-icon-badge {
    position: relative;
    color: white;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-summary {
    color: white;
}

.cart-total {
    font-weight: 600;
    font-size: 14px;
}

.cart-view-compact {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-view-compact:hover {
    background: rgba(255,255,255,0.3);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state-compact {
    text-align: center;
    padding: 30px 20px;
}

.empty-icon-compact {
    font-size: 36px;
}

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

.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.show {
    animation: slideIn 0.2s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-image-wrapper {
        height: 140px;
    }
    
    .category-pill {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .tab-pill {
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .floating-cart-summary,
    .compact-floating-cart {
        bottom: 15px;
        right: 15px;
    }
    
    .cart-summary-content,
    .compact-cart-content {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .category-scroll-nav,
    .tabs-scroll-container {
        padding: 0 8px;
    }
}

/* Improved Floating Cart Styles (Used across all menu layouts) */
.menu-floating-cart {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
    animation: slideInUp 0.3s ease;
    min-width: 280px;
    backdrop-filter: blur(10px);
}

.menu-floating-cart .cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
}

.menu-floating-cart .cart-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-floating-cart .cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.menu-floating-cart .cart-icon-wrapper i {
    font-size: 18px;
    color: white;
}

.menu-floating-cart .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.menu-floating-cart .cart-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-floating-cart .cart-items-text {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 2px;
}

.menu-floating-cart .cart-total {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.menu-floating-cart .cart-view-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(5px);
}

.menu-floating-cart .cart-view-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.menu-floating-cart .cart-view-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Floating Cart */
@media (max-width: 768px) {
    .menu-floating-cart {
        bottom: 15px;
        min-width: 260px;
        left: 16px;
        right: 16px;
        transform: none;
        width: calc(100% - 32px);
    }
    
    .menu-floating-cart .cart-content {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .menu-floating-cart .cart-view-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .menu-floating-cart {
        bottom: 10px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        min-width: auto;
    }
    
    .menu-floating-cart .cart-content {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .menu-floating-cart .cart-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .menu-floating-cart .cart-icon-wrapper i {
        font-size: 16px;
    }
    
    .menu-floating-cart .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    
    .menu-floating-cart .cart-total {
        font-size: 15px;
    }
    
    .menu-floating-cart .cart-view-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}