* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 :root {
     --primary-color: #FF6B35;
     --secondary-color: #F7C59F;
     --accent-color: #004E89;
     --dark-color: #1A1A1A;
     --light-color: #F5F5F5;
     --success-color: #4CAF50;
     --warning-color: #FF9800;
     --gray-color: #757575;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     --transition: all 0.3s ease;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     background-color: var(--light-color);
     color: var(--dark-color);
     line-height: 1.6;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .section-title {
     text-align: center;
     margin: 60px 0 40px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .section-title p {
     color: var(--gray-color);
     max-width: 600px;
     margin: 0 auto;
 }

 .menu-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 35px;
     margin-bottom: 60px;
 }

 .menu-item {
     background-color: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
     transition: var(--transition);
     border-top: 5px solid var(--primary-color);
     position: relative;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .menu-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .menu-item-img-container {
     height: 220px;
     width: 100%;
     overflow: hidden;
     position: relative;
 }

 .menu-item-img {
     height: 100%;
     width: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
     display: block;
 }

 .menu-item > .menu-item-img {
     height: 220px;
 }

 .menu-item:hover .menu-item-img {
     transform: scale(1.1);
 }

 .menu-item-content {
     padding: 25px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .menu-item-title {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 12px;
 }

 .menu-item-title h3 {
     font-size: 1.4rem;
     color: var(--dark-color);
     flex: 1;
     font-weight: 700;
     line-height: 1.3;
 }

 .menu-item-price {
     color: var(--primary-color);
     font-weight: 800;
     font-size: 1.4rem;
     white-space: nowrap;
 }

 .menu-item-desc {
     color: var(--gray-color);
     margin-bottom: 15px;
     font-size: 0.95rem;
     line-height: 1.6;
     flex: 1;
 }

 .quantity-selector {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 15px;
     background-color: #f9f9f9;
     border-radius: 10px;
     padding: 8px;
 }

 .quantity-selector button {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background-color: white;
     border: 2px solid #eee;
     font-weight: 700;
     cursor: pointer;
     transition: var(--transition);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     color: var(--dark-color);
 }

 .quantity-selector button:hover {
     background-color: var(--primary-color);
     color: white;
     border-color: var(--primary-color);
     transform: scale(1.1);
 }

 .quantity-selector span {
     min-width: 40px;
     text-align: center;
     font-weight: 700;
     font-size: 1.2rem;
     color: var(--dark-color);
 }

 .add-to-cart {
     width: 100%;
     background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
     color: white;
     border: none;
     padding: 14px;
     border-radius: 10px;
     font-weight: 700;
     cursor: pointer;
     transition: var(--transition);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-size: 1rem;
     box-shadow: 0 5px 15px rgba(0, 78, 137, 0.2);
 }

 .add-to-cart:hover {
     background: linear-gradient(135deg, var(--primary-color), #e55a2b);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
 }

 .add-to-cart i {
     font-size: 1.1rem;
 }

 .cart-sidebar {
     position: fixed;
     top: 0;
     right: -100%;
     width: 100%;
     height: 100vh;
     z-index: 101;
     display: flex;
     flex-direction: column;
 }

 .cart-sidebar.active {
     right: 0;
 }

 .cart-items {
     flex: 1;
     overflow-y: auto;
 }

 .cart-item-details {
     flex: 1;
 }

 .cart-footer {
     border-top: 1px solid #eee;
 }

 .cart-totals div {
     display: flex;
     justify-content: space-between;
 }

 .cart-item-quantity {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 102;
     display: none;
     justify-content: center;
     align-items: center;
 }

 .modal-overlay.active {
     display: flex;
 }

 .order-form {
     background-color: white;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     font-weight: 600;
     color: var(--dark-color);
 }

 .form-buttons {
     display: flex;
 }

 .form-buttons button {
     flex: 1;
 }

 .logo {
     text-decoration: none;
 }

 .social-sidebar a,
 .footer-social a {
     text-decoration: none;
 }

 body .btn {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 15px 35px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
 }

 body .btn::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transform: translateX(-100%);
 }

 body .btn:hover::after {
     animation: shine 1.5s ease;
 }

 @keyframes shine {
     100% {
         transform: translateX(100%);
     }
 }

 body .btn:hover {
     background-color: var(--accent-color);
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 78, 137, 0.4);
 }

 body .btn-secondary {
     background-color: #f0f0f0;
     color: var(--dark-color);
     border: 2px solid #ddd;
 }

 body .btn-secondary:hover {
     background-color: #e0e0e0;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 /* Footer */
 body footer {
     background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
     color: white;
     padding: 80px 20px 30px;
     position: relative;
     overflow: hidden;
 }

 body footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
 }

 footer .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 50px;
     margin-bottom: 50px;
 }

 footer .footer-logo h3 {
     color: white;
     font-size: 2rem;
     margin-bottom: 20px;
     font-weight: 800;
 }

 footer .footer-logo span {
     color: var(--primary-color);
 }

 footer .footer-logo p {
     color: #bbb;
     line-height: 1.7;
     margin-bottom: 25px;
 }

 footer .footer-links h4,
 footer .footer-contact h4 {
     color: var(--primary-color);
     margin-bottom: 25px;
     font-size: 1.3rem;
     font-weight: 700;
     position: relative;
     padding-bottom: 10px;
 }

 footer .footer-links h4::after,
 footer .footer-contact h4::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background-color: var(--primary-color);
     border-radius: 2px;
 }

 footer .footer-links ul {
     list-style: none;
 }

 footer .footer-links li {
     margin-bottom: 12px;
 }

 footer .footer-links a {
     color: #bbb;
     text-decoration: none;
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 footer .footer-links a:hover {
     color: var(--primary-color);
     transform: translateX(5px);
 }

 footer .footer-links a i {
     font-size: 0.9rem;
     color: var(--primary-color);
 }

 footer .footer-contact p {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     gap: 12px;
     color: #bbb;
 }

 footer .footer-contact p i {
     color: var(--primary-color);
     font-size: 1.2rem;
     min-width: 25px;
 }

 footer .footer-social {
     display: flex;
     gap: 15px;
     margin-top: 25px;
 }

 footer .footer-social a {
     color: white;
     font-size: 1.4rem;
     transition: var(--transition);
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background-color: #333;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 footer .footer-social a:hover {
     color: white;
     background-color: var(--primary-color);
     transform: translateY(-5px);
 }

 footer .footer-bottom {
     text-align: center;
     padding-top: 40px;
     border-top: 1px solid #444;
     color: #999;
     font-size: 0.95rem;
 }

 body .checkout-btn {
     background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
     transition: var(--transition);
 }

 body .checkout-btn:hover {
     background: linear-gradient(135deg, var(--primary-color), #e55a2b);
 }

 html,
 body {
     max-width: 100%;
     overflow-x: hidden;
 }

 img {
     max-width: 100%;
     height: auto;
 }

 @media (max-width: 992px) {
     .social-sidebar {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .header-container {
         flex-wrap: wrap;
         gap: 10px;
     }

     .logo h1 {
         font-size: 1.5rem;
         line-height: 1.1;
     }

     .desktop-nav {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex !important;
     }

     .cart-sidebar {
         max-width: 100% !important;
     }

     .order-form,
     .modal-content {
         width: 95% !important;
         max-width: 600px;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 35px;
     }
 }

 @media (max-width: 480px) {
     body .btn {
         width: 100%;
         max-width: 100%;
         text-align: center;
     }

     body footer {
         padding: 60px 16px 25px;
     }

     footer .footer-social a {
         width: 42px;
         height: 42px;
     }
 }
