/* styles.css - Complete Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff8f0 0%, #f5f7fa 100%);
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo i {
    font-size: 2rem;
    color: #ffb74d;
}

/* Cart Button */
.cart-btn {
    background: rgba(255, 183, 77, 0.2);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cart-btn:hover {
    background: rgba(255, 183, 77, 0.3);
    transform: translateY(-2px);
}

.cart-count {
    background: #ff5722;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Menu Header */
.menu-header {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.menu-header h1 {
    font-size: 3rem;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.menu-header h1 i {
    color: #ffb74d;
    margin-right: 1rem;
}

.menu-header p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.tray-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid #ffb74d;
}

.tray-info h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.tray-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tray-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
}

/* Category Sections */
.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title i {
    color: #ffb74d;
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Menu Items */
.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

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

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

.item-content {
    padding: 1.5rem;
}

.item-content h3 {
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.item-description {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Per Piece Items */
.per-piece-item {
    border: 3px solid #ffb74d;
}

.per-piece-pricing {
    text-align: center;
}

.price-display {
    font-size: 1rem;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 1rem;
}

.quantity-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.qty-input {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
}

/* Tray Options */
.tray-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.tray-option {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tray-option:hover {
    border-color: #d32f2f;
    background: #fff5f5;
}

.size-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.serves {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 0.75rem;
}

/* Add Button */
.add-btn {
    background: linear-gradient(135deg, #d32f2f, #f44336);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
}

.add-btn:hover {
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
    transform: translateY(-1px);
}

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

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

.cart-header {
    padding: 1.5rem;
    background: #d32f2f;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cart-item-info h4 {
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.cart-item-size {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

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

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

.qty-btn {
    background: #d32f2f;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.quantity {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-weight: bold;
    color: #d32f2f;
}

.remove-btn {
    background: #ff5722;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.cart-total {
    text-align: center;
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

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

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

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-header {
    background: #d32f2f;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* Form Styles */
#customer-form {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 4000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.notification.success {
    border-left: 4px solid #4CAF50;
    color: #2e7d32;
}

.notification.info {
    border-left: 4px solid #2196F3;
    color: #1565c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .tray-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .tray-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 2rem 1rem;
    }
    
    .menu-header h1 {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation Dropdown Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu .active {
    background: rgba(255, 183, 77, 0.2);
    color: #ffb74d;
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #d32f2f;
    transform: translateX(5px);
}

.dropdown-menu li:first-child a {
    border-radius: 10px 10px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 10px 10px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Disclaimer Section Styles */
.disclaimer-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d32f2f;
}

.disclaimer-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.disclaimer-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    flex-shrink: 0;
}

.disclaimer-checkbox label {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.disclaimer-link {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.disclaimer-link:hover {
    border-bottom-color: #d32f2f;
    color: #b71c1c;
}

/* Success Modal Styles */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    animation: fadeIn 0.3s ease;
}

.success-modal {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.success-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 2rem;
    text-align: center;
}

.success-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-content {
    padding: 2rem;
}

.success-details h3 {
    color: #d32f2f;
    margin: 1.5rem 0 1rem 0;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.success-details li:last-child {
    border-bottom: none;
}

.success-details i {
    color: #25d366;
    width: 20px;
}

.disclaimer-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #ff9800;
}

.disclaimer-info p {
    margin: 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-info i {
    color: #ff9800;
}

.success-actions {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .cart-section {
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #d32f2f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-radius: 10px;
        margin: 0 1rem;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        margin: 0;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* makes the new select fit the theme */
#order-type {
    width:100%;
    padding:1rem;
    border:2px solid #e0e0e0;
    border-radius:10px;
    font-family:inherit;
}


/* Menu Item Image Styles */
.item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.item-image img.loaded {
    opacity: 1;
}

.menu-item:hover .item-image img {
    transform: scale(1.05);
}

/* Placeholder for missing images */
.item-image.no-image::before {
    content: '🍽️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.item-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Image loading animation */
/* Disable the loading spinner overlay on images.
   Previously, a rotating border created an hourglass effect that kept
   spinning even after images were loaded. Users found this distracting,
   so the pseudo-element is hidden by default. */
.item-image::after {
    display: none;
}

.item-image img:not(.loaded) + .item-image::after {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced hover effects for menu items with images */
.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(211, 47, 47, 0.1) 0%, rgba(255, 183, 77, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item .item-content {
    position: relative;
    z-index: 2;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .item-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .item-image {
        height: 160px;
    }
    
    .item-image.no-image::before {
        font-size: 2rem;
    }
}

/* ========= FOOTER (International Menu) ========= */
.rayu-footer{
  background:#151618;
  color:#e9e9ee;
  margin-top:48px;
  border-top:4px solid #d32f2f;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.rayu-footer a{ color:#ffcc66; text-decoration:none; }
.rayu-footer a:hover{ text-decoration:underline; }

.rf-wrap{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  display:grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap:28px;
}

.rayu-footer h4{
  font-size:1.35rem;
  margin:0 0 8px 0;
  color:#fff;
}
.rayu-footer h5{
  font-size:1.05rem;
  margin:0 0 12px 0;
  color:#ffd37a;
}

.rf-col p{ margin:0; }
.rf-col.brand .tagline{ color:#ffd37a; margin-bottom:6px; }
.rf-col.brand .mini{ color:#cfcfd6; opacity:.9; }

.rf-social{ margin-top:14px; display:flex; gap:10px; }
.rf-social a{
  width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center;
  background:#202226; border-radius:50%; border:1px solid #2a2d32;
}
.rf-social a i{ color:#ffd37a; }

.rf-col.links ul,
.rf-col .rf-list{
  list-style:none; padding:0; margin:0; display:grid; gap:10px;
}
.rf-col .rf-list li{ display:flex; align-items:flex-start; gap:10px; color:#d9d9de; }
.rf-col .rf-list li i{ color:#8ee6a5; margin-top:3px; width:18px; text-align:center; }

.rf-bottom{
  border-top:1px solid #25272c;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:16px 20px; max-width:1200px; margin:0 auto;
  color:#bdbdc5; font-size:.95rem;
}
.rf-bottom .sep{ margin:0 8px; opacity:.6; }
.rf-bottom__right a{ color:#ffcc66; font-weight:600; }

/* --- Responsive --- */
@media (max-width: 1000px){
  .rf-wrap{
    grid-template-columns: 1.7fr 1fr 1fr;
  }
}
@media (max-width: 768px){
  .rf-wrap{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .rf-wrap{
    grid-template-columns: 1fr;
  }
  .rf-bottom{
    flex-direction:column;
    text-align:center;
  }
}

/* ==== Dropdown card (match Indian Catering look) ==== */
.menu-item { display: grid; grid-template-columns: 56px 1fr; gap: 14px; }
.menu-item .item-image { display: none !important; }   /* hide pictures */
.menu-item .item-icon { display:flex; align-items:center; justify-content:center; font-size:34px; color:#ffb74d; }
.menu-item h3 { margin:0 0 4px; font-size:1.05rem; line-height:1.3; color:#b32020; }
.menu-item .item-description { color:#555; font-size:.92rem; margin:0 0 10px; }

.size-label { display:block; font-weight:600; margin:8px 0 4px; color:#333; }
.size-select {
  width:100%;
  padding:.6rem .75rem;
  border:2px solid #e6e6e6;
  border-radius:10px;
  background:#fff;
  font-size:1rem;
}

.per-piece-pricing { display:grid; grid-template-columns:1fr auto; gap:10px; align-items:center; }
.quantity-section { display:grid; grid-auto-flow:column; gap:8px; align-items:center; }
.qty-input { width:84px; padding:.5rem .6rem; border:2px solid #e6e6e6; border-radius:10px; }

/* Grid density for this page */
.items-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap:16px; }
@media (max-width:1024px){ .items-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:640px){ .items-grid{ grid-template-columns:1fr; } .menu-item{ grid-template-columns:48px 1fr; } }

/* ===== Rayu Footer (5 Columns Responsive) ===== */
.rayu-footer {
  background:#101214; color:#e9eef3; margin-top:48px;
}
.rayu-footer a { color:#ffd27a; text-decoration:none; }
.rayu-footer a:hover { text-decoration:underline; }

/* Grid layout */
.rayu-footer__inner {
  max-width:1400px; margin:auto; padding:50px 24px;
  display:grid; gap:28px;
  grid-template-columns: repeat(5, minmax(0,1fr));
}
@media (max-width:1100px) { .rayu-footer__inner { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px) { .rayu-footer__inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width:500px) { .rayu-footer__inner { grid-template-columns: 1fr; } }

.rayu-foot-col { min-width:0; }
.rayu-foot-title {
  font-size:1.35rem; color:#fff; margin:0 0 8px;
}
.rayu-foot-sub {
  font-size:1.05rem; color:#ffd27a; margin:0 0 10px; letter-spacing:.3px;
}
.rayu-foot-text { color:#d3dbe3; margin:0 0 16px; }

.rayu-foot-links,
.rayu-foot-contact { list-style:none; margin:0; padding:0; }
.rayu-foot-links li+li, .rayu-foot-contact li+li { margin-top:8px; }

.rayu-foot-social a {
  display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center;
  border-radius:50%; background:#1b1f23; margin-right:10px; font-size:18px; color:#ffd27a;
  transition:transform .15s ease, background .2s ease;
}
.rayu-foot-social a:hover { transform:translateY(-2px); background:#242a2f; }

/* Bottom bar */
.rayu-foot-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.18));
}
.rayu-foot-bottom__inner {
  max-width:1400px; margin:auto; padding:14px 24px;
  display:flex; gap:16px; align-items:center; justify-content:space-between; flex-wrap:wrap;
  color:#cfd7df; font-size:.95rem;
}
.rayu-foot-credit a { color:#ffd27a; }

/* WhatsApp Rectangle Sticky Button - Optimized */
.whatsapp-rectangle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 8px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    min-height: 100px;
    max-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-rectangle:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.whatsapp-content i {
    font-size: 20px;
    margin-bottom: 3px;
    order: 1;
}

.whatsapp-content span {
    font-size: 11px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    order: 2;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-rectangle {
        padding: 10px 6px;
        min-height: 90px;
        max-width: 40px;
    }
    
    .whatsapp-content i {
        font-size: 18px;
    }
    
    .whatsapp-content span {
        font-size: 10px;
    }
}
