:root {
    /* ۴ رنگ اصلی سایت */
    --color-1: #e9e1d6;  /* پس‌زمینه */
    --color-2: #3f5f48;  /* سرمه‌ای - متن و عناصر اصلی */
    --color-3: #00bfa6;  /* دکمه‌ها و عناصر تعاملی */
    --color-4: #ff6b35;  /* هاور و تاکید */
    
    /* رنگ‌های تکمیلی */
    --white: #ffffff;
    --black: #000000;
    --text-light: #ffffff;
    --text-dark: var(--color-2);
    
    /* سایه‌ها */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 3px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 10px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../1/IRANSansXFaNum-Regular.woff2') format('woff2'),
         url('../1/IRANSansXFaNum-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../1/IRANSansXFaNum-Bold.woff2') format('woff2'),
         url('../1/IRANSansXFaNum-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../1/IRANSansXFaNum-Light.woff2') format('woff2'),
         url('../1/IRANSansXFaNum-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    background: var(--color-1);
    color: var(--color-2);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Homepage Styles */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px;
    background: var(--color-1);
    flex-shrink: 0;
}

.logo {
    max-width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.curved-section {
    flex: 1;
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-2) 100%);
    border-radius: 50px 50px 0 0;
    margin-top: 0;
    padding: 30px 10px 0;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 200px);
}


.content {
    text-align: center;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 28px;
    font-weight: bold;
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #F5F5DC;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #BDC3C7;
    opacity: 0.9;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.btn {
    padding: 20px 35px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--color-4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-3);
}

.btn-secondary {
    background: var(--color-1);
    color: var(--color-2);
    border: 2px solid var(--color-2);
}

.btn-secondary:hover {
    background: var(--color-2);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-2);
}

.btn-icon {
    font-size: 20px;
}

.footer {
    background: transparent;
    color: #F5F5DC;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    flex-shrink: 0;
    border-top: 1px solid var(--color-2);
    margin-top: auto;
}

.footer a {
    color: var(--color-2);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer a:hover {
    color: #2d4333;
    text-shadow: 0 1px 3px rgba(63, 95, 72, 0.5);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-2) 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-small {
    max-width: 40px;
    height: auto;
    border-radius: 8px;
}

.header-title {
    font-size: 18px;
    font-weight: bold;
    color: #F5F5DC;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: background 0.3s ease;
    background: rgba(63, 95, 72, 0.1);
}

.cart-icon:hover {
    background: rgba(63, 95, 72, 0.2);
}

.cart-text {
    font-size: 14px;
    font-weight: bold;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-2);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Search and Filter */
.search-filter {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 70px;
    z-index: 99;
}

.search-box {
    position: relative;
    margin-bottom: 15px;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--color-1);
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: var(--color-2);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #BDC3C7;
}

.category-filter {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-btn {
    background: var(--color-1);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: var(--color-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 28px;
}

.category-image {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 5px;
}

.category-btn.active {
    background: var(--color-2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 95, 72, 0.3);
}

.category-btn:hover:not(.active) {
    background: var(--color-4);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Menu Container */
.menu-container {
    padding: 20px;
    padding-bottom: 100px;
}

.menu-items {
    display: grid;
    gap: 20px;
}

.menu-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
    border: 1px solid #ECF0F1;
    position: relative;
}

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

.item-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.item-content:hover {
    background: #F8F9FA;
}

.item-info {
    flex: 1;
}

.item-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.item-info h3 {
    font-size: 18px;
    color: var(--color-2);
    margin-bottom: 8px;
}

.item-description {
    color: #7F8C8D;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.item-price {
    margin-bottom: 10px;
}

.current-price {
    color: var(--color-2);
    font-weight: bold;
    font-size: 16px;
}

/* Sub Items Styles */
.sub-items {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

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

.sub-item-name {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.sub-item-price {
    font-size: 14px;
    color: var(--color-2);
    font-weight: bold;
}

.item-stock {
    margin-bottom: 15px;
    font-size: 14px;
}

.stock-label {
    color: #7F8C8D;
}

.stock-count {
    color: #27AE60;
    font-weight: bold;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--color-2);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(63, 95, 72, 0.3);
}

.add-to-cart-btn:hover:not(:disabled) {
    background: #2d4333;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(63, 95, 72, 0.4);
}

.add-to-cart-btn:disabled {
    background: #BDC3C7;
    cursor: not-allowed;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    background: var(--color-2);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.empty-cart {
    text-align: center;
    color: #7F8C8D;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ECF0F1;
}

.cart-item-info h4 {
    font-size: 16px;
    color: var(--color-2);
    margin-bottom: 5px;
}

.cart-item-info p {
    color: #7F8C8D;
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls button {
    background: #00D2AA;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.cart-item-controls button:hover {
    background: #00A085;
}

.cart-item-controls span {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ECF0F1;
    background: #F8F9FA;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-2);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-2) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-2) 100%);
    transform: translateY(-1px);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Restaurant Info Styles */
.restaurant-info {
    padding: 20px;
    padding-bottom: 100px;
}

.info-section {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F5F5DC;
}

.section-icon {
    font-size: 24px;
}

.section-header h2 {
    font-size: 20px;
    color: var(--color-2);
    font-weight: bold;
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ECF0F1;
}

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

.info-label {
    color: #7F8C8D;
    font-size: 14px;
}

.info-value {
    color: var(--color-2);
    font-weight: bold;
    font-size: 15px;
}

.contact-grid {
    display: grid;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: var(--color-4);
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    color: #7F8C8D;
    font-size: 12px;
}

.contact-value {
    color: var(--color-2);
    font-weight: bold;
    font-size: 15px;
}

.address-card {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.address-card p {
    color: var(--color-2);
    margin-bottom: 10px;
    font-size: 15px;
}

.map-btn {
    background: linear-gradient(135deg, #00D2AA 0%, #00A085 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px auto 0;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: linear-gradient(135deg, #00A085 0%, #008B74 100%);
    transform: translateY(-1px);
}

.map-icon {
    font-size: 16px;
}

.hours-grid {
    display: grid;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #F8F9FA;
    border-radius: 8px;
}

.day {
    color: var(--color-2);
    font-weight: bold;
    font-size: 14px;
}

.time {
    color: #00D2AA;
    font-weight: bold;
    font-size: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--color-4);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 20px;
}

.service-text {
    color: var(--color-2);
    font-size: 14px;
    font-weight: bold;
}

.social-grid {
    display: grid;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-item.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    color: white;
}

.social-item.telegram {
    background: linear-gradient(135deg, #0088CC 0%, #006699 100%);
    color: white;
}

.social-item.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.social-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.social-text {
    font-size: 16px;
    font-weight: bold;
}

/* Cart Button */
.cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--color-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

.cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cart-icon {
    font-size: 24px;
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Service Button */
.service-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(63, 95, 72, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: var(--color-4);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 24px;
    color: white;
}

/* Add to Cart Button */
.item-actions {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.add-to-cart-btn {
    background: var(--color-4);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    min-width: 100px;
    justify-content: center;
    display: none;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-size: 12px;
    font-weight: bold;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 0;
    border-radius: 30px;
    font-weight: bold;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    overflow: hidden;
}

.cart-notification.show {
    transform: translate(-50%, -50%) scale(1);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
}

.notification-icon {
    font-size: 20px;
    animation: bounce 0.6s ease-in-out;
}

.notification-text {
    font-size: 16px;
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Service Menu */
.service-menu {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.service-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid #ECF0F1;
}

.service-option:last-child {
    border-bottom: none;
}

.service-option:hover {
    background: #F8F9FA;
}

.service-option-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.service-option-text {
    font-size: 14px;
    color: var(--color-2);
    font-family: 'IRANSansX', 'Vazir', 'Tahoma', sans-serif;
    font-weight: bold;
}

/* Service Overlay */
.service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00D2AA 0%, #00A085 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 210, 170, 0.3);
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 18px;
}

.notification-text {
    font-size: 14px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .header {
        padding: 12px 15px;
    }
    
    .header h1 {
        font-size: 18px;
    }
    
    .search-filter {
        padding: 15px;
    }
    
    .menu-container {
        padding: 15px;
    }
    
    .item-content {
        gap: 12px;
        padding: 12px;
    }
    
    .item-image {
        width: 100px;
        height: 100px;
    }
    
    .item-info h3 {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .social-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .category-filter {
        gap: 8px;
    }
    
    .category-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .category-icon {
        font-size: 24px;
    }
    
    .category-image {
        width: 30px;
        height: 30px;
    }
    
    .search-box input {
        padding: 10px 35px 10px 12px;
        font-size: 14px;
    }
    
    .item-content {
        gap: 10px;
        padding: 10px;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
    }
    
    .item-info h3 {
        font-size: 15px;
    }
    
    .item-description {
        font-size: 13px;
    }
    
    .add-to-cart-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 15px;
    }
    
    .notification-text {
        font-size: 13px;
    }
    
    .service-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .service-icon {
        font-size: 20px;
    }
    
    .service-menu {
        bottom: 75px;
        left: 15px;
        min-width: 180px;
    }
    
    .service-option {
        padding: 12px 15px;
    }
    
    .service-option-text {
        font-size: 13px;
    }
}
