/* Tailwind CSS CDN Alternative - Custom CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.z-50 { z-index: 50; }

/* Flexbox */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Spacing */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 8rem; padding-bottom: 5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.ml-2 { margin-left: 0.5rem; }

/* Sizing */
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 3rem; }
.w-full { width: 100%; }
.w-80 { width: 20rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 3rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: auto; }
.h-full { height: 100%; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-h-\[90vh\] { max-height: 90vh; }

/* Colors */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-200 { background-color: #fde68a; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }
.bg-amber-700 { background-color: #b45309; }
.bg-amber-800 { background-color: #92400e; }
.bg-amber-900 { background-color: #78350f; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-200 { background-color: #fed7aa; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-600 { background-color: #16a34a; }
.bg-red-100 { background-color: #fee2e2; }
.bg-pink-600 { background-color: #DB0858; }

.text-white { color: #ffffff; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-amber-100 { color: #DB7D12; }
.text-amber-200 { color: #fde68a; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }
.text-amber-900 { color: #78350f; }
.text-red-400 { color: #f87171; }
.text-green-800 { color: #166534; }
.text-red-800 { color: #991b1b; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-amber-200 { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); }
/*.from-amber-50 { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); }*/
.from-amber-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
/*.from-amber-600 { --tw-gradient-from: #ff9800; --tw-gradient-stops: var(--tw-gradient-from), #4f2913; }*/
.from-amber-900 { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); }
.to-amber-600 { --tw-gradient-to: #d97706; }
.to-amber-800 { --tw-gradient-to: #92400e; }
.to-amber-900 { --tw-gradient-to: #78350f; }
.to-orange-50 { --tw-gradient-to: #fff7ed; }
.to-orange-200 { --tw-gradient-to: #fed7aa; }
.via-amber-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); }
.via-amber-800 { --tw-gradient-stops: #0a0a0a, #4f1e00, #7d3d19; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-amber-100 { border-color: #fef3c7; }
.border-amber-600 { border-color: #d97706; }
.border-amber-700 { border-color: #b45309; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Transforms */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.rotate-3 { --tw-rotate: 3deg; }
.-rotate-3 { --tw-rotate: -3deg; }
.-rotate-6 { --tw-rotate: -6deg; }
.rotate-6 { --tw-rotate: 6deg; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }

/* Hover States */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-amber-800:hover { color: #92400e; }
.hover\:text-amber-900:hover { color: #78350f; }
.hover\:bg-amber-200:hover { background-color: #fde68a; }
.hover\:bg-amber-700:hover { background-color: #b45309; }
.hover\:bg-amber-800:hover { background-color: #92400e; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-pink-700:hover { background-color: #be185d; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.group:hover .group-hover\:translate-x-1 { --tw-translate-x: 0.25rem; }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.bg-opacity-50 { --tw-bg-opacity: 0.5; }

/* Object Fit */
/*.object-cover { object-fit: cover; }*/

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Line Clamp */
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Fill */
.fill-current { fill: currentColor; }

/* Custom Styles */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Responsive */
/* Mobile First Responsive Design */
@media (max-width: 639px) {
    .container { padding: 0 0.75rem; }
    
    /* Mobile header adjustments */
    .header-logo h1 { font-size: 1rem; }
    .header-logo p { font-size: 0.625rem; }
    
    /* Mobile hero section */
    .hero-title { font-size: 1.875rem !important; line-height: 1.2; }
    .hero-subtitle { font-size: 1rem; }
    .hero-description { font-size: 0.875rem; }
    
    /* Mobile buttons */
    .mobile-btn { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
    .mobile-btn-secondary { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
    
    /* Mobile stats */
    .stats-number { font-size: 1.5rem; }
    .stats-label { font-size: 0.75rem; }
    
    /* Mobile product cards */
    .product-card { margin-bottom: 1rem; }
    .product-title { font-size: 1.125rem; }
    .product-price { font-size: 1.5rem; }
    
    /* Mobile modal */
    .modal-content { margin: 0.5rem; max-height: 95vh; }
    .modal-image { height: 200px; }
    
    /* Mobile menu width */
    .mobile-menu-panel { width: 280px !important; }
    
    /* Mobile contact cards */
    .contact-card { padding: 1rem; }
    .contact-icon { width: 2rem; height: 2rem; }
    
    /* Mobile footer */
    .footer-brand h3 { font-size: 1.125rem; }
    .footer-section h4 { font-size: 1rem; }
    
    /* Mobile text sizes */
    .text-4xl { font-size: 1.875rem; line-height: 1.2; }
    .text-6xl { font-size: 2.25rem; line-height: 1.1; }
    .text-xl { font-size: 1.125rem; }
    .text-2xl { font-size: 1.25rem; }
    .text-3xl { font-size: 1.5rem; }
    
    /* Mobile spacing */
    .py-20 { padding-top: 8rem; padding-bottom: 3rem; }
    .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
    .gap-12 { gap: 2rem; }
    .gap-8 { gap: 1.5rem; }
    .mb-16 { margin-bottom: 2rem; }
    .mb-12 { margin-bottom: 1.5rem; }
    
    /* Mobile grid adjustments */
    .lg\:grid-cols-2 { grid-template-columns: 1fr; }
    .lg\:grid-cols-3 { grid-template-columns: 1fr; }
    .lg\:grid-cols-4 { grid-template-columns: 1fr; }
    .md\:grid-cols-2 { grid-template-columns: 1fr; }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-1 { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
    .sm\:inline { display: inline; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:text-base { font-size: 1rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .md\:space-x-8 > * + * { margin-left: 2rem; }
    
    /* Desktop navigation visibility */
    .hidden.md\:flex { display: flex !important; }
    
    /* Remove footer logo margin on desktop */
    .footer-logo-container {
        margin-left: 0;
    }
    
    /* Show social links in desktop header */
    header .flex.items-center.space-x-4 a:not(.touch-target) {
        display: block;
    }
    
    header .flex.items-center.space-x-4 a.bg-green-600 {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:hidden { display: none; }
}

/* Additional Custom Styles */
a {
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    background: none;
}

.category-btn {
    cursor: pointer;
    border: none;
}

/* Mobile Category Cards (Only for mobile) */
@media (max-width: 767px) {
    .category-card {
        width: 100%;
        cursor: pointer;
        border: none;
        background: none;
        transition: transform 0.2s ease;
    }

    .category-card:hover {
        transform: translateY(-2px);
    }

    .category-card.active .bg-white {
        border-color: #d97706 !important;
    }

    .category-card.active .bg-amber-100 {
        background-color: #d97706 !important;
        color: white !important;
    }

    .category-card:not(.active):hover .bg-white {
        border-color: #fcd34d !important;
    }
}

/* Desktop Category Buttons (Original design) */
@media (min-width: 768px) {
    .category-btn {
        cursor: pointer;
        border: none;
        min-height: 48px;
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Product Slider Styles */
.category-slider {
    position: relative;
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.category-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fef3c7;
    border: 2px solid #d97706;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #d97706;
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-btn:disabled:hover {
    background: #fef3c7;
    color: #d97706;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.slider-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
}

/* Mobile slider adjustments */
@media (max-width: 767px) {
    .slider-item {
        flex: 0 0 calc(100% - 0rem);
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .slider-controls {
        align-self: flex-end;
    }
    
    /* Mobile slider track adjustment */
    .slider-track {
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .slider-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Product card in slider */
.slider .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slider .product-card .card-mobile {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Order Modal Styles */
#orderModal {
    backdrop-filter: blur(4px);
}

#orderModal .bg-white {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced button hover effects */
#orderModal a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: white !important;
    min-height: 60px;
}

#orderModal a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#orderModal a:active {
    transform: translateY(0);
}

/* Ensure icons are visible */
#orderModal i {
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
}

/* Force button visibility */
#orderModal .space-y-3 > a {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

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

/* Custom backdrop for mobile menu */
.bg-black.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Product grid responsive */
/*@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}*/

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch targets for mobile accessibility */
@media (max-width: 767px) {
    button, a {
        min-height: 44px;
        min-width: 44px;
        /*display: flex;*/
        align-items: center;
        justify-content: center;
    }
    
    .touch-target {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Mobile navigation improvements */
    .mobile-nav-link {
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    }
    
    /* Mobile form improvements */
    input, textarea, select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile card improvements */
    .card-mobile {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile button improvements */
    .btn-mobile {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Mobile section improvements */
    .section-mobile {
        padding: 2rem 0;
    }
    
    /* Mobile image improvements */
    .img-mobile {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
    }
    
    /* Mobile modal improvements */
    .modal-mobile {
        margin: 0.5rem;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    /* Mobile menu panel improvements */
    .mobile-menu-panel {
        width: 280px !important;
        max-width: 90vw;
    }
    
    /* Mobile category buttons */
    .category-btn {
        min-height: 48px;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    /* Mobile category filter container */
    .category-filter {
        gap: 0.5rem;
    }
    
    /* Mobile header logo adjustments */
    .header-logo .w-8 {
        width: 4rem;
        height: 4rem;
    }
    
    /* Footer logo margin only on mobile */
    .footer-logo-container {
        margin-left: 22px;
    }
    
    /* Mobile social links */
    .social-link {
        min-width: 40px;
        min-height: 40px;
        padding: 0.5rem;
    }
    
    /* Hide social links in mobile header */
    header .flex.items-center.space-x-4 a:not(.touch-target) {
        display: none;
    }
    
    header .flex.items-center.space-x-4 a.bg-green-600 {
        display: none;
    }
    
    /* Mobile footer adjustments */
    footer .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    footer .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer .space-y-4 > * + * {
        margin-top: 1rem;
    }
    
    footer .space-y-2 > * + * {
        margin-top: 0.5rem;
    }
    
    footer .space-y-3 > * + * {
        margin-top: 0.75rem;
    }
    
    /* Footer text adjustments */
    footer h3, footer h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    footer p, footer span {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Footer links */
    footer a {
        display: block;
        padding: 0.25rem 0;
        word-break: break-word;
    }
}

/* Mobile Button Visibility Fix */
.mobile-order-btn,
.instagram-btn,
.whatsapp-btn,
.phone-btn,
.order-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mobile-order-btn svg,
.instagram-btn svg,
.whatsapp-btn svg,
.phone-btn svg,
.order-btn svg {
    display: inline-block !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    fill: currentColor !important;
}

/* Instagram Original Colors */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3) !important;
}

/* WhatsApp Colors */
.whatsapp-btn {
    background: linear-gradient(to right, #10b981, #059669) !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(to right, #059669, #047857) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}

/* Order Button Colors */
.mobile-order-btn {
    background: linear-gradient(to right, #d97706, #b45309) !important;
}

.mobile-order-btn:hover {
    background: linear-gradient(to right, #b45309, #92400e) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3) !important;
}

.phone-btn {
    background: linear-gradient(to right, #d97706, #b45309) !important;
}

.phone-btn:hover {
    background: linear-gradient(to right, #b45309, #92400e) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3) !important;
}

/* Force display for mobile menu buttons */
@media (max-width: 767px) {
    .mobile-order-btn,
    .instagram-btn,
    .whatsapp-btn,
    .phone-btn,
    .order-btn {
        display: flex !important;
        min-height: 44px !important;
        min-width: 44px !important;
        touch-action: manipulation !important;
    }
}

/* Navigation Styles */
.nav-link {
    transition: all 0.3s ease;
    color: #b45309 !important; /* amber-700 */
}

.nav-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(180, 83, 9, 0.2);
}

.order-btn {
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.3);
}

.instagram-btn {
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
}

.whatsapp-btn {
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Force display for mobile menu buttons */
@media (max-width: 767px) {
    .mobile-order-btn,
    .instagram-btn,
    .whatsapp-btn,
    .phone-btn,
    .order-btn {
        display: flex !important;
        min-height: 44px !important;
        min-width: 44px !important;
        touch-action: manipulation !important;
    }
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #d97706;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    color: #b45309;
}

.swiper-pagination-bullet {
    background: #d97706;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.category-section {
    margin-bottom: 60px;
}

.category-section:last-child {
    margin-bottom: 0;
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-2 { top: 0.5rem; }
.left-2 { left: 0.5rem; }

