/* CSS Variables - Will be overridden by theme */
:root {
    --primary: #007AFF;
    --secondary: #5856D6;
    --background: #F5F5F7;
    --card-bg: #FFFFFF;
    --text: #1D1D1F;
    --text-secondary: #86868B;
    --radius: 12px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    padding-bottom: 100px;
    position: relative;
    min-height: 100vh;
}

/* Hero Header */
.hero-header {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 50px 24px 35px;
    text-align: center;
    overflow: hidden;
    min-height: 200px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-location:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
}

.location-pin {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #EA4335 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(234, 67, 53, 0.5);
    animation: pulse-pin 2s ease-in-out infinite;
}

@keyframes pulse-pin {
    0%, 100% { box-shadow: 0 3px 12px rgba(234, 67, 53, 0.5); }
    50% { box-shadow: 0 3px 20px rgba(234, 67, 53, 0.7); }
}

.location-pin i {
    color: white;
    font-size: 12px;
}

.hero-link-icon {
    font-size: 9px;
    opacity: 0.7;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.hero-location:hover .hero-link-icon {
    transform: translate(2px, -2px);
}

.hero-about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.hero-about-wrapper:has(.hero-about:empty) {
    display: none;
}

.about-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(var(--primary-rgb, 0, 122, 255), 0.35);
}

.about-icon i {
    color: white;
    font-size: 14px;
}

.hero-about {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.hero-about:empty {
    display: none;
}

/* Sticky Nav */
.sticky-nav {
    position: sticky;
    top: 0;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 40px;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    transition: background 0.2s;
    width: 40px;
}

.back-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}


/* Categories Section */
.categories-section {
    padding: 20px;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.category-pill {
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.category-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-pill:hover {
    border-color: var(--primary);
}

/* Search Section */
.search-section {
    padding: 0 20px 20px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-secondary);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: none;
    border-radius: var(--radius);
    background: var(--card-bg);
    font-size: 16px;
    color: var(--text);
    box-shadow: var(--shadow);
}

.search-input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

/* Hot Offers Section */
.hot-offers-section {
    padding: 0 20px 20px;
}

.hot-offers-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hot-offers-container::-webkit-scrollbar {
    display: none;
}

.hot-offer-card {
    min-width: 300px;
    max-width: 320px;
    background: linear-gradient(135deg, var(--hot-offer-gradient-start, var(--primary)), var(--hot-offer-gradient-end, var(--secondary)));
    border-radius: calc(var(--radius) + 4px);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hot-offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hot-offer-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hot-offer-card:hover::after {
    opacity: 1;
}

.hot-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.hot-offer-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.hot-offer-description {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 16px;
    line-height: 1.5;
    color: white;
    font-weight: 400;
}

.hot-offer-discount {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    font-size: 18px;
    font-weight: 800;
    backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Items Section */
.items-section {
    padding: 0 20px 20px;
}

.category-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.items-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.2s;
}

.item-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: calc(var(--radius) - 4px);
    object-fit: cover;
    flex-shrink: 0;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.item-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.item-price {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
}

.item-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.item-add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
}

/* Item Detail Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    animation: fadeIn 0.3s;
}

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

.modal-content {
    background: var(--card-bg);
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow-y: auto;
    animation: slideUp 0.3s;
    position: relative;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-detail-hero {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.item-detail-content {
    padding: 24px 20px;
    margin-top: -20px;
    background: var(--card-bg);
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
}

.item-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-detail-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.item-detail-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.allergens-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.allergen-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: calc(var(--radius) / 2);
    font-size: 14px;
}

.size-selector {
    margin-bottom: 24px;
}

.size-selector-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.size-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-pill {
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.size-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.extras-section {
    margin-bottom: 24px;
}

.extras-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.extra-info {
    flex: 1;
}

.extra-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}

.extra-price {
    font-size: 14px;
    color: var(--text-secondary);
}

.extra-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.extra-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--card-bg);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

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

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius);
}

.quantity-label {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--card-bg);
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--card-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

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

.cart-item-details {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #FF3B30;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.cart-btn {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.cart-btn-whatsapp {
    background: #25D366;
    color: white;
}

.cart-btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.cart-btn-clear {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cart-btn-clear:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateY(-1px);
}

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

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    animation: fadeIn 0.3s;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}

.checkout-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn-primary,
.btn-secondary {
    padding: 14px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-text {
    font-size: 16px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating-cart-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-cart-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.floating-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #FF3B30;
    color: white;
    border-radius: 12px;
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
    border: 2px solid var(--card-bg);
}

.floating-cart-badge:empty {
    display: none;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-header {
        padding: 80px 40px 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-location {
        font-size: 15px;
        padding: 12px 22px 12px 12px;
    }
    
    .location-pin {
        width: 38px;
        height: 38px;
    }
    
    .location-pin i {
        font-size: 16px;
    }
    
    .hero-about-wrapper {
        padding: 20px 24px;
    }
    
    .about-icon {
        width: 42px;
        height: 42px;
    }
    
    .about-icon i {
        font-size: 18px;
    }
    
    .hero-about {
        font-size: 15px;
    }
    
    .items-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modal-content {
        max-width: 600px;
        margin: 0 auto;
        border-radius: var(--radius);
    }

    .nav-title {
        font-size: 20px;
    }

    .floating-whatsapp-btn {
        width: 72px;
        height: 72px;
        font-size: 28px;
        bottom: 108px;
        right: 32px;
    }

    .floating-cart-btn {
        width: 72px;
        height: 72px;
        font-size: 28px;
        bottom: 32px;
        right: 32px;
    }

    .cart-drawer {
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .items-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    body {
        background-image: 
            radial-gradient(circle at 15% 40%, rgba(0, 122, 255, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 85% 70%, rgba(88, 86, 214, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 50% 90%, rgba(0, 122, 255, 0.02) 0%, transparent 50%);
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 40px 16px 30px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-location {
        font-size: 12px;
        padding: 8px 14px 8px 8px;
        gap: 8px;
    }
    
    .location-pin {
        width: 28px;
        height: 28px;
    }
    
    .location-pin i {
        font-size: 12px;
    }
    
    .hero-link-icon {
        display: none;
    }
    
    .hero-about-wrapper {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .about-icon {
        width: 32px;
        height: 32px;
    }
    
    .about-icon i {
        font-size: 14px;
    }
    
    .hero-about {
        font-size: 13px;
    }
    
    .sticky-nav {
        padding: 12px 16px;
    }
    
    .nav-title {
        font-size: 16px;
    }
    
    .floating-cart-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
        bottom: 20px;
        right: 16px;
    }

    .floating-cart-badge {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
        padding: 0 4px;
    }

    .floating-whatsapp-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
        bottom: 88px;
        right: 16px;
    }

    .cart-drawer {
        max-width: 100%;
    }

    body {
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.02) 0%, transparent 50%);
    }
    
    .category-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .item-card {
        padding: 12px;
    }
    
    .item-name {
        font-size: 16px;
    }
    
    .item-description {
        font-size: 13px;
    }
    
    .item-price {
        font-size: 16px;
    }
    
    .cart-item {
        padding: 12px;
    }
    
    .modal-content {
        padding: 16px;
        margin: 12px;
        max-height: calc(100vh - 24px);
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-header {
        padding: 32px 12px 24px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-about {
        font-size: 12px;
    }
    
    .sticky-nav {
        padding: 10px 12px;
    }
    
    .nav-title {
        font-size: 14px;
    }
    
    .floating-cart-btn,
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        right: 12px;
    }
    
    .floating-cart-btn {
        bottom: 16px;
    }
    
    .floating-whatsapp-btn {
        bottom: 78px;
    }
    
    .category-tab {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .item-card {
        padding: 10px;
    }
    
    .item-name {
        font-size: 15px;
    }
    
    .item-price {
        font-size: 15px;
    }
    
    .cart-drawer {
        padding: 12px;
    }
    
    .cart-header {
        padding-bottom: 12px;
    }
    
    .cart-title {
        font-size: 18px;
    }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(16px, env(safe-area-inset-top));
    }
    
    .cart-drawer {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    
    .floating-cart-btn {
        bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
    }
    
    .floating-whatsapp-btn {
        bottom: max(100px, calc(env(safe-area-inset-bottom) + 92px));
    }
}

