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

:root {
    /* Routini Brand Colors - Natural & Earthy */
    --cream: hsl(42, 24%, 87%);
    --sage: hsl(98, 14%, 69%);
    --gold: hsl(33, 33%, 64%);
    --light-gold: hsl(44, 33%, 70%);
    --light-cream: hsl(42, 15%, 88%);
    
    /* Design System Colors */
    --background: hsl(42, 24%, 87%);
    --foreground: hsl(30, 15%, 25%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(30, 15%, 25%);
    --primary: hsl(98, 14%, 69%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(33, 33%, 64%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(42, 15%, 88%);
    --muted-foreground: hsl(30, 15%, 45%);
    --accent: hsl(44, 33%, 70%);
    --accent-foreground: hsl(30, 15%, 25%);
    --border: hsl(42, 15%, 82%);
    --destructive: hsl(0, 65%, 51%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-warm: linear-gradient(135deg, var(--gold), var(--light-gold));
    --gradient-subtle: linear-gradient(180deg, var(--background), var(--light-cream));
    
    /* Shadows */
    --shadow-soft: 0 2px 20px -5px hsla(98, 14%, 69%, 0.15);
    --shadow-card: 0 4px 25px -8px hsla(98, 14%, 69%, 0.2);
    --shadow-glow: 0 0 30px hsla(44, 33%, 70%, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    
    font-weight: 600;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding-top: env(safe-area-inset-top);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    height: 2rem;
    width: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 2.5rem;*/
    height: 2.5rem;
}
.nav-icon-btn p {
    font-size:14px;
}

.nav-icon-btn:hover {
    color: var(--primary);
    background-color: var(--muted);
}

.cart-badge,
.notification-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.25rem;
    border-radius: 9999px;
    min-width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Bar */
.search-container {
    padding: 0 1rem 0.75rem;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    width: 1rem;
    height: 1rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background-color: var(--muted);
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    text-align: right;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsla(98, 14%, 69%, 0.5);
}

.search-input::placeholder {
    color: var(--muted-foreground);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.mobile-sidebar.active {
    display: block;
}

.sidebar-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.sidebar-content {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 320px;
    background-color: var(--card);
    box-shadow: var(--shadow-glow);
    padding: 1.5rem;
    padding-top: calc(1.5rem + env(safe-area-inset-top));
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.user-details {
    text-align: right;
}

.user-greeting {
    font-weight: 600;
    color: var(--foreground);
}

.user-email {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.close-btn {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background-color: var(--muted);
}

.sidebar-menu {
    margin-bottom: 2rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.2rem 1rem;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    margin-bottom: 0.5rem;
}

.sidebar-link:hover {
    background-color: var(--muted);
}

.menu-emoji {
    font-size: 1.5rem;
}

.sidebar-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Bottom Tabs */
.bottom-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.5rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
}

.tab-item:hover {
    background-color: var(--muted);
}

.tab-emoji {
    font-size: 1.125rem;
}

.tab-label {
    font-size: 0.75rem;
}

/* Hero Section */
.hero {
    padding-top: calc(8rem + env(safe-area-inset-top));
    padding-bottom: 1.5rem;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

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

.location i {
    color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
}

.location-title {
    font-weight: 500;
    font-size: 0.875rem;
}

.location-address {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.delivery-time {
    text-align: left;
}

.time {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--secondary);
}

.time-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
}

.hero-img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    text-align: right;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    justify-content: flex-end;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.feature i {
    width: 0.75rem;
    height: 0.75rem;
}

.rating-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 0.75rem;
    text-align: center;
}

.rating-score {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
}

.rating-stars {
    font-size: 0.75rem;
    color: #fbbf24;
}

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

.special-offer {
    background: linear-gradient(to right, rgba(168, 147, 126, 0.2), rgba(200, 167, 104, 0.2));
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(168, 147, 126, 0.3);
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-badge {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.offer-text {
    text-align: right;
}

.offer-title {
    font-weight: 600;
    color: var(--secondary);
}

.offer-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-large {
    padding: 1rem 2rem;
    height: 3.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: hsl(98, 14%, 64%);
    box-shadow: var(--shadow-card);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-whatsapp {
    background-color: #10b981;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #059669;
}

.btn-call {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-call:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-full {
    width: 100%;
}

.rtl-rotate {
    transform: rotate(180deg);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Categories */
.categories {
    padding: 2rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background-color: var(--card);
    cursor: pointer;
    transition: var(--transition-smooth);
    transform: translateY(0);
}

.category-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-0.25rem);
}

.category-image {
    position: relative;
    height: 8rem;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-emoji {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.category-content {
    padding: 1rem;
    text-align: right;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: var(--transition-smooth);
    margin-bottom: 0.25rem;
}

.category-card:hover .category-name {
    color: var(--primary);
}

.category-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

/* Featured Products */
.featured {
    padding: 2rem 0;
    background-color: rgb(229 224 214);
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: var(--transition-smooth);
    /*flex-direction: row-reverse;*/
}

.product-card:hover {
    box-shadow: var(--shadow-glow);
}

.product-image {
    position: relative;
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.product-badges {
    position: absolute;
    top: -0.25rem;
    left: -0.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.badge-popular {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.badge-new {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.badge i {
    width: 0.5rem;
    height: 0.5rem;
}

.product-info {
    flex: 1;
    text-align: right;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.product-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.375rem;
    font-size: 0.7rem;
    border: 1px solid rgba(167, 182, 161, 0.3);
    color: var(--primary);
    border-radius: 0.375rem;
    height: 1.25rem;
}

.tag i {
    width: 0.5rem;
    height: 0.5rem;
}
.tag img {
    width: 1rem;
    height: 1rem;
}

.product-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    justify-content: flex-end;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat:first-child {
    color: var(--muted-foreground);
}

.stat:nth-child(2) {
    color: var(--primary);
}

.stat:last-child {
    color: #fbbf24;
}

.stat i {
    width: 0.75rem;
    height: 0.75rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.product-price {
    text-align: left;
}

.original-price {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
}

.add-btn {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-btn:hover {
    background-color: hsl(98, 14%, 64%);
}

.add-btn i {
    width: 1rem;
    height: 1rem;
}

/* Contact */
.contact {
    padding: 3rem 0;
    background-color: rgba(220, 214, 204, 0.2);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    text-align: right;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.card-icon {
    background-color: rgba(167, 182, 161, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.card-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-text {
    text-align: right;
}

.contact-main {
    font-weight: 500;
    color: var(--foreground);
}

.contact-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-icon {
    background-color: rgba(167, 182, 161, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.hours-time {
    font-weight: 500;
    color: var(--primary);
}

.hours-day {
    color: var(--foreground);
}

.hours-note {
    padding: 0.75rem;
    background-color: rgba(168, 147, 126, 0.1);
    border-radius: 0.75rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

.social-list {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;

}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    justify-content: flex-end;
    flex-direction: column;
}

.social-item:hover {
    background-color: rgba(220, 214, 204, 0.5);
}

.social-text {
    text-align: right;
}

.social-handle {
    font-weight: 500;
    color: var(--foreground);
}

.social-name {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.social-icon {
    padding: 0.5rem;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.social-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.instagram {
    background-color: #ec4899;
}

.facebook {
    background-color: #2563eb;
}

.whatsapp {
    background-color: #10b981;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Cart Modal */
.cart-modal,
.meal-modal {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: none;
}

.cart-modal.active,
.meal-modal.active {
    display: block !important;
}

.cart-overlay,
.meal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.cart-content,
.meal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-header,
.meal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-title,
.meal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.back-btn {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background-color: var(--muted);
}

.cart-body,
.meal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    margin-bottom: 50px;
}

.cart-footer {
    flex-shrink: 0;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-summary {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
}

.summary-label {
    color: var(--foreground);
}

.summary-value {
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-cart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.empty-cart-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--muted);
    border-radius: 1rem;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-image {
    width: 5rem;
    height: 5rem;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    text-align: right;
}

.cart-item-name {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.cart-item-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

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

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

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--foreground);
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.quantity-btn:hover {
    background-color: var(--muted);
}

.quantity-display {
    font-weight: 600;
    color: var(--foreground);
    width: 2rem;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--destructive);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: var(--transition-smooth);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding-top: calc(7rem + env(safe-area-inset-top));
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .categories-grid {
        gap: 0.75rem;
    }
    
    .category-image {
        height: 7rem;
    }
    
    .contact-grid {
        gap: 1rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }

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

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

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

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

.animate-slide-in {
    animation: slideInRight 0.3s ease-out;
}

.animate-slide-out {
    animation: slideOutRight 0.3s ease-out;
}