:root {
    --primary-color: #6B4E31; /* Rich coffee brown */
    --accent-color: #D4A373; /* Warm caramel */
    --highlight-color: #8B5E3C; /* Toasted almond */
    --text-color: #2E2E2E; /* Deep charcoal */
    --background-color: #F9EFE6; /* Creamy latte */
    --card-bg: #FFFFFF; /* Crisp white */
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --glow: 0 0 15px rgba(212, 163, 115, 0.3);
}

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    background: linear-gradient(135deg, var(--background-color), #E8D9C8);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

/* Subtle background texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Ccircle cx="50" cy="50" r="2" fill="rgba(107,78,49,0.05)"/%3E%3C/svg%3E');
    opacity: 0.3;
    z-index: -1;
}

.cafe-menu, .cafe-admin-login {
    max-width: 1200px;
    padding: 70px 20px 40px; /* Increased top padding to 70px for higher lang-toggle */
    margin: 0 auto;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.cafe-menu h2, .cafe-admin-login h1 {
    font-size: 2em;
    text-align: center;
    color: var(--primary-color);
    margin: 0 0 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cafe-admin-login .login-header p {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1em;
    margin: 0 0 30px;
    font-style: italic;
}

.cafe-admin-login .dashicons-coffee {
    vertical-align: middle;
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.5em;
    animation: coffeePulse 2s infinite;
}

.login-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow), var(--glow);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    animation: slideUp 0.8s ease-out;
}

.error-notice {
    background: rgba(220, 50, 50, 0.1);
    color: #dc3232;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95em;
    border: 1px solid rgba(220, 50, 50, 0.3);
}

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

.form-group label {
    display: block;
    font-size: 1em;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--highlight-color);
    box-shadow: var(--glow);
    background: #fff;
}

.form-group input.error {
    border-color: #dc3232;
    animation: shake 0.3s;
}

.cafe-admin-login .button {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cafe-admin-login .button:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.category-filters::-webkit-scrollbar {
    height: 8px;
}

.category-filters::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.category-filters::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.filter-btn {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--accent-color);
    color: var(--card-bg);
    border-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--glow), var(--shadow);
}

.menu-category {
    margin-bottom: 40px;
    position: relative;
    display: none;
    animation: fadeInCategory 0.5s ease-in-out;
}

.menu-category.active {
    display: block;
}

.menu-category h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin: 0 0 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    cursor: pointer; /* Indicate clickable */
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow), var(--shadow);
}

.item-image {
    flex: 0 0 auto;
    position: relative;
}

.cafe-image-link {
    pointer-events: none;
}

.item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.5s ease;
}

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

.item-image .image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #eee, #ddd);
    border-radius: 20px 20px 0 0;
}

.item-details {
    padding: 20px;
    text-align: center;
    flex: 1;
}

.item-title {
    font-size: 1.5em;
    margin: 0 0 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.item-desc {
    font-size: 0.95em;
    color: var(--text-color);
    margin: 0 0 15px;
    font-style: italic;
}

.item-price {
    font-size: 1.2em;
    color: var(--accent-color);
    margin: 0 0 15px;
    font-weight: 600;
}

.item-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    flex-wrap: wrap;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: rgba(212, 163, 115, 0.2);
    border-radius: 8px;
    padding: 5px;
}

.qty-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--highlight-color);
}

.qty-value {
    width: 40px;
    text-align: center;
    border: none;
    background: none;
    font-size: 1em;
    color: var(--text-color);
}

.add-to-cart {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: normal;
    min-width: 160px;
    text-align: center;
}

.add-to-cart:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.add-to-cart.added {
    background: #46b450;
    animation: added 0.5s ease;
}

.add-to-cart .dashicons {
    display: inline-block;
    margin-right: 5px;
}

#view-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    box-shadow: var(--shadow), var(--glow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

#view-cart-btn:hover {
    background: var(--highlight-color);
    transform: scale(1.1);
}

#view-cart-btn.pulse {
    animation: pulse 0.7s infinite;
}

#view-cart-btn .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.8em;
    padding: 4px 8px;
    border-radius: 50%;
    font-weight: 600;
}

#cart-count.active {
    background: #46b450;
    animation: bounce 0.5s;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow), var(--glow);
    transform: scale(1); /* Ensure no initial scaling */
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

.modal-content.show {
    transform: scale(1); /* Maintain full size */
}

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

.cart-header h2 {
    font-size: 1.8em;
    margin: 0;
    color: var(--primary-color);
}

.close-modal-btn {
    background: var(--primary-color);
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 1.2em;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.close-modal-btn:hover {
    background: var(--highlight-color);
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(212, 163, 115, 0.1);
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1.1em;
    color: var(--primary-color);
    font-weight: 600;
}

.item-price {
    font-size: 0.95em;
    color: var(--accent-color);
}

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

.quantity-control {
    display: flex;
    align-items: center;
    background: rgba(212, 163, 115, 0.2);
    border-radius: 8px;
    padding: 5px;
}

.qty-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--highlight-color);
}

.qty-value {
    width: 40px;
    text-align: center;
    border: none;
    background: none;
    font-size: 1em;
    color: var(--text-color);
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #dc3232;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #b71c1c;
}

.cart-footer {
    margin-top: 20px;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.order-form label {
    font-size: 1em;
    margin-bottom: 8px;
    display: block;
    color: var(--primary-color);
}

.order-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.order-form input:focus {
    border-color: var(--highlight-color);
    box-shadow: var(--glow);
}

.order-form input.error {
    border-color: #dc3232;
    animation: shake 0.3s;
}

#submit-order {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

#submit-order:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

#submit-order:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.empty-cart {
    text-align: center;
    padding: 30px;
    color: var(--text-color);
    font-size: 1.1em;
    font-style: italic;
}

.confirmation-content {
    text-align: center;
    padding: 20px;
}

.confirmation-content .dashicons-yes {
    font-size: 60px;
    color: #46b450;
    margin: 20px 0;
    animation: bounce 1s ease;
}

.confirmation-content h2 {
    font-size: 1.8em;
    margin: 15px 0;
    color: var(--primary-color);
}

#new-order-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

#new-order-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* Home Page Styles */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('path-to-hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5em;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5em;
    margin: 0 0 30px;
    color: #fff;
    font-style: italic;
}

.menu-button {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.menu-button:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.lang-toggle {
    position: absolute;
    top: 10px; /* Moved higher from 20px */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lang-button {
    background: var(--card-bg); /* White for inactive */
    color: var(--primary-color); /* Coffee brown text */
    border: 2px solid var(--accent-color); /* Caramel border */
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-button:hover {
    background: var(--highlight-color); /* Toasted almond on hover */
    color: #fff;
    border-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.lang-button.active {
    background: var(--primary-color); /* Coffee brown for active */
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--glow), var(--shadow);
}

.overview-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.overview-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin: 0 0 20px;
    font-weight: 700;
}

.overview-section p {
    font-size: 1.1em;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin: 0 0 20px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.contact-item p, .contact-item a {
    font-size: 1.1em;
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--highlight-color);
}

.hours-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hours-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin: 0 0 20px;
    font-weight: 700;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer-section {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer-section p {
    margin: 0;
    font-size: 1em;
}

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

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes added {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes coffeePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInCategory {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); } /* Start slightly smaller for effect */
    to { opacity: 1; transform: scale(1); } /* End at full size */
}

/* Item Detail Modal */
#item-detail-modal .modal-content {
    max-width: 900px; /* Large size for big frame */
    width: 95%; /* Prominent width */
    padding: 40px; /* Spacious padding */
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: zoomIn 0.5s ease-out; /* Smooth zoom-in animation */
    transform: scale(1); /* Ensure full size */
}

.item-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.item-detail-header h2 {
    font-size: 2.2em; /* Prominent title */
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.item-detail-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.item-detail-image {
    width: 100%;
    max-height: 400px; /* Large image size */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow), var(--glow); /* Glow effect */
}

.detail-image {
    width: 100%;
    height: 400px; /* Large image */
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
    transform: scale(1.15); /* Zoomed-in image */
}

.item-detail-content .item-desc {
    font-size: 1.2em; /* Readable description */
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

.item-detail-content .item-price {
    font-size: 1.5em; /* Emphasized price */
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
}

/* Maintain zoom on modal show */
#item-detail-modal .modal-content.show {
    transform: scale(1); /* Lock in full size */
}

/* Hover effect for image */
#item-detail-modal:hover .detail-image {
    transform: scale(1.2); /* Slightly more zoom on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .cafe-menu, .cafe-admin-login {
        padding: 60px 10px 20px; /* Adjusted top padding for mobile */
    }

    .cafe-menu h2, .cafe-admin-login h1 {
        font-size: 1.8em;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        margin: 0 auto;
        max-width: 100%;
    }

    .item-actions {
        gap: 8px;
        padding: 10px;
    }

    .add-to-cart {
        padding: 8px 20px;
        font-size: 0.95em;
        min-width: 140px;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .category-filters {
        gap: 10px;
        padding: 0 5px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.95em;
    }

    .lang-toggle {
        top: 5px; /* Adjusted for mobile */
        left: 50%;
        transform: translateX(-50%);
    }

    #submit-order, #new-order-btn {
        padding: 14px 20px;
    }

    .close-modal-btn {
        padding: 6px 10px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .menu-button {
        padding: 12px 25px;
    }

    .overview-section, .contact-section, .hours-section {
        margin: 20px 10px;
        padding: 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    #item-detail-modal .modal-content {
        width: 98%; /* Large for mobile */
        padding: 30px; /* Spacious */
        max-width: none; /* Full width */
    }

    .item-detail-header h2 {
        font-size: 1.8em; /* Adjusted for mobile */
    }

    .item-detail-image {
        max-height: 300px; /* Adjusted for mobile */
    }

    .detail-image {
        height: 300px; /* Adjusted for mobile */
        transform: scale(1.15); /* Maintain zoom */
    }

    #item-detail-modal .modal-content.show {
        transform: scale(1); /* Lock in full size */
    }

    #item-detail-modal:hover .detail-image {
        transform: scale(1.2); /* Consistent hover zoom */
    }

    .item-detail-content .item-desc {
        font-size: 1.1em;
    }

    .item-detail-content .item-price {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .menu-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .lang-button {
        padding: 6px 12px;
        font-size: 0.9em;
    }

    .add-to-cart {
        padding: 8px 16px;
        font-size: 0.9em;
        min-width: 120px;
    }

    #item-detail-modal .modal-content {
        width: 98%; /* Large for small screens */
        padding: 25px; /* Spacious */
    }

    .item-detail-header h2 {
        font-size: 1.6em;
    }

    .item-detail-image {
        max-height: 250px; /* Adjusted for small screens */
    }

    .detail-image {
        height: 250px; /* Adjusted for small screens */
        transform: scale(1.15); /* Maintain zoom */
    }

    #item-detail-modal .modal-content.show {
        transform: scale(1); /* Lock in full size */
    }

    #item-detail-modal:hover .detail-image {
        transform: scale(1.2); /* Consistent hover zoom */
    }

    .item-detail-content .item-desc {
        font-size: 1em;
    }

    .item-detail-content .item-price {
        font-size: 1.2em;
    }
}
.category-filters {
    background: none !important;
    box-shadow: none !important;
}

.filter-btn {
    box-shadow: none !important;
}