/* Modern Menu Price List Styles */
.menu-price-list {

    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(52, 17, 8, 0.10);
    padding: 36px 28px 28px 28px;
    margin: 30px auto 40px auto;
    max-width: 480px;
    border: 1.5px solid #FFD700;
}

/* Footer Section */
.main-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-logo-text span {
    color: var(--accent);
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 4px;
}

.contact-text {
    flex: 1;
    line-height: 1.5;
}

.opening-hours {
    list-style: none;
}

.opening-hours li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.day {
    color: rgba(255, 255, 255, 0.9);
}

.time {
    color: var(--accent);
    font-weight: 500;
}

.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: white;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.mobile-auth {
    display: none;
}

.close-menu {
    display: none;
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
        border-radius: 5px;
        width: 100%;
    }

    .newsletter-button {
        padding: 12px;
        margin-top: 10px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 15px 15px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}


.menu-price-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-price-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(52, 17, 8, 0.06);
    font-size: 1.06rem;
    color: #2f0d06;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.18s, transform 0.18s;
}

.menu-price-list li:last-child {
    border-bottom: none;
}

.menu-price-list li strong {
    color: #FFD700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.menu-price-list a {
    color: #4c190b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.menu-price-list a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.menu-price-list span {
    font-size: 0.98rem;
    color: #341108;
    font-weight: 700;
    background: linear-gradient(90deg, #fff9e6, #fff3d6);
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 0 6px 18px rgba(52, 17, 8, 0.04);
}

/* Fix: Ensure telephone numbers are not auto-styled blue/underlined on iOS
   iOS Safari may auto-detect phone numbers and wrap them with anchors
   or add x-apple-data-detectors. These rules force white, non-underlined
   appearance site-wide for telephone links/detections. */
a[href^="tel"],
a[href*="tel"],
a[x-apple-data-detectors],
a[x-apple-data-detectors] * {
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-text-decoration-color: transparent !important;
    text-decoration-color: transparent !important;
}

/* Extra specificity for header/top-bar phone text (if present) */
.top-bar a[href^="tel"],
.top-bar-item a[href^="tel"],
.top-bar-item,
.header-top a[href^="tel"] {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Prevent link tap highlight color from showing as blue on some mobile browsers */
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Two-column layout on wider screens for category groups */
.menu-price-list .category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 18px;
}

.menu-price-list li a {
    color: inherit;
    text-decoration: none;
}

.menu-price-list li:hover {
    background: rgba(52, 17, 8, 0.02);
    transform: translateY(-2px);
}

/* Category heading and price badge styles for the menu list */
.menu-price-list .category h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    /* headings: white */
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.menu-price-list .category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-price-list .category ul li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
}

.menu-price-list .category ul li a {
    color: #ffffff;
    /* menu item names: white as requested */
    text-decoration: none;
    font-weight: 600;
}

.menu-price-list .price-badge {
    background: linear-gradient(90deg, #fff9e6, #fff3d6);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    color: #341108;
    box-shadow: 0 6px 18px rgba(52, 17, 8, 0.04);
}

@media (max-width: 900px) {
    .menu-price-list .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart count badge for navbar cart icon */

/* Active nav link styling */
nav ul li a.active {
    color: var(--accent);
    font-weight: 700;
}

nav ul li a.active::after {
    width: 100%;
}

/* Utility: ensure active links are clearly visible on small screens */
@media (max-width: 768px) {
    nav ul li a.active {
        color: var(--accent);
    }
}

/* See-products button (used on Juice / Bakery / Combos pages) */
.see-products-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 28px;
    background: linear-gradient(90deg, #FFD700 0%, #ffec99 100%);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(52, 17, 8, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.see-products-btn i {
    margin-right: 8px;
}

.see-products-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 32px rgba(52, 17, 8, 0.18);
}

.see-products-btn:focus {
    outline: 3px solid #fff2b8;
    outline-offset: 3px;
}

.cart-count-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #ff2222;
    color: #fff;
    font-size: 16px;
    padding: 2px 7px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    z-index: 1002;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    display: inline-block;
    line-height: 1.2;
    border: 2px solid #fff;
    background-clip: padding-box;
    visibility: visible;
    opacity: 1;
}

/* Ensure parent li and a do not hide overflow */
nav ul li[style],
#cartNavLink[style] {
    overflow: visible !important;
    z-index: 1001 !important;
}

.spin-game-container {
    background: linear-gradient(135deg, #fffbe6 0%, #f9f5f2 100%);
    border-radius: 24px;
    padding: 40px 30px 30px 30px;
    margin: 40px auto 60px auto;
    max-width: 650px;
    box-shadow: 0 8px 32px rgba(52, 17, 8, 0.08);
    text-align: center;
}

/* Combo Card Styles for Products Page */
.combo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.combo-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.combo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.combo-info {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.combo-info h3 {
    color: #341108;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.combo-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.combo-price {
    font-weight: bold;
    color: #4c190b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.combo-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 8px;
}

.combo-discount {
    background: #FFD700;
    color: #341108;
    font-weight: bold;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.95rem;
    margin-left: 8px;
}

.combo-info .add-to-cart {
    background-color: #4c190b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.combo-info .add-to-cart:active {
    transform: scale(0.95);
    background-color: #341108;
}

/* Combo Add-to-Cart Button for Products Page */
.combo-info .add-to-cart {
    background-color: #341108;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.combo-info .add-to-cart:active {
    transform: scale(0.95);
    background-color: #4c190b;
}

.combo-info .add-to-cart:hover {
    background-color: #FFD700;
    color: #341108;
}

/* Add-to-cart button for all product cards on products page */
.add-cart-btn {
    background: #341108 !important;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.add-cart-btn.added {
    background: #4CAF50 !important;
    color: white !important;
    transform: scale(1.08);
}

.add-cart-btn:hover {
    background: #FFD700 !important;
    color: #341108 !important;
    transform: scale(1.05);
}

/* Add margin between add-to-cart and discount */

.combo-discount {
    margin-left: 8px;
    margin-top: 10px;
    display: inline-block;
}

.bakery-info img,
.bakery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bakery-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bakery-info h3 {
    color: #341108;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bakery-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.bakery-price {
    font-weight: bold;
    color: #4c190b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bakery-info .add-to-cart {
    background-color: #4c190b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.bakery-info .add-to-cart:active {
    transform: scale(0.95);
    background-color: #341108;
}

.bakery-info .add-to-cart:hover {
    background-color: #341108;
}

/* Juice Card Styles for Products Page */
.juice-info,
.juice-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.juice-info:hover,
.juice-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.juice-info img,
.juice-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.juice-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.juice-info h3 {
    color: #341108;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.juice-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.juice-price {
    font-weight: bold;
    color: #4c190b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.juice-info .add-to-cart {
    background-color: #4c190b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.juice-info .add-to-cart:active {
    transform: scale(0.95);
    background-color: #341108;
}

.juice-info .add-to-cart:hover {
    background-color: #341108;
}

/* Style for select size dropdown in product cards */
.size-select {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid #FFD700;
    background: #f9f5f2;
    color: #341108;
    font-size: 1rem;
    margin-right: 10px;
    margin-bottom: 0;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(52, 17, 8, 0.06);
    appearance: none;
    cursor: pointer;
}

.size-select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px #FFD70033;
}

.size-select option {
    background: #fffbe6;
    color: #341108;
    font-size: 1rem;
    padding: 8px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade-in animation for main content */
main,
.main-content,
.section-title,
.products-grid,
.hero-content,
.featured-products,
.bakery-grid,
.juice-grid,
.combos-grid,
.menu-header,
.menu-grid {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Card hover pop effect */
.product-card,
.bakery-card,
.juice-card,
.combo-card,
.menu-card {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover,
.bakery-card:hover,
.juice-card:hover,
.combo-card:hover,
.menu-card:hover {
    transform: translateY(-12px) scale(1.04) rotate(-1deg);
    box-shadow: 0 12px 36px rgba(52, 17, 8, 0.18);
    z-index: 2;
}

/* Button hover effect */
.btn,
.btn-hero,
.order-now-btn {
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn:hover,
.btn-hero:hover,
.order-now-btn:hover {
    transform: translateY(-3px) scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.18);
}

/* Nav link underline slide */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Footer fade-in */
footer,
.main-footer {
    opacity: 0;
    animation: fadeInFooter 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes fadeInFooter {
    to {
        opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #341108;
    /* Dark brown */
    --secondary: #4c190b;
    /* Medium brown */
    --accent: #FFD700;
    /* Golden accent */
    --light: #ffffff;
    /* White background */
    --dark: #341108;
    /* Dark brown for text */
    --text: #333333;
}

body {
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    .top-bar-item span {
        color: #ffffff !important;
    }
}

.top-bar-item i {
    margin-right: 8px;
    color: var(--accent);
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
}

/* Header */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-register {
    background-color: var(--secondary);
    color: white;
    border: none;
}

.btn-register:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 17, 8, 0.6);
    /* Using primary color with opacity */
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-shop {
    background-color: var(--secondary);
    color: white;
    border: none;
}

.btn-contact {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-shop:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-contact:hover {
    background-color: white;
    color: var(--dark);
    transform: translateY(-3px);
}

/* Featured Products Section */
.featured-products {
    padding: 80px 20px;
    background-color: #f9f5f2;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 0;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: #341108;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    min-height: unset;
}

.product-price {
    font-weight: bold;
    color: #4c190b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 8px;
}

.product-discount {
    background: #FFD700;
    color: #341108;
    font-weight: bold;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.95rem;
    margin-left: 8px;
}

.add-to-cart {
    background-color: #4c190b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    font-size: 1rem;
}

.add-to-cart:active {
    transform: scale(0.95);
    background-color: #341108;
}

.add-to-cart:hover {
    background-color: #341108;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}

.product-info {
    padding: 20px 20px 0 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 18px;
    font-size: 1rem;
    min-height: 48px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.2rem;
}

.add-to-cart {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: var(--primary);
}

/* Special Offers */
.special-offers {
    padding: 80px 20px;
    background-color: var(--primary);
    color: white;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    font-size: 3rem;
    margin-right: 20px;
    color: var(--accent);
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    nav ul li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        color: #ffffff important;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-hero {
        width: 200px;
    }

    .offer-card {
        flex-direction: column;
        text-align: center;
    }

    .offer-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .top-bar-item span {
        font-size: 12px;
        color: #ffffff !important;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        color: var(--light);
    }
}

/* Newsletter Form Styles */
.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: white;
}

/* Mailto Form Styles */
.mailto-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mailto-form h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.mailto-form p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.mailto-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: border 0.3s;
}

.mailto-input:focus {
    border-color: var(--accent);
    outline: none;
}

.mailto-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.mailto-button:hover {
    background: var(--secondary);
}

.mailto-success {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(76, 190, 92, 0.1);
    color: #4CAF50;
    font-weight: 500;
    text-align: center;
}

.mailto-error {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(255, 82, 82, 0.1);
    color: #f44336;
    font-weight: 500;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.mobile-auth {
    display: none;
}

.close-menu {
    display: none;
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
        border-radius: 5px;
        width: 100%;
    }

    .newsletter-button {
        padding: 12px;
        margin-top: 10px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 15px 15px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Menu page specific layout (professional grid & card polish) */
#menuGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

.product-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card .product-info {
    padding: 18px 16px 22px;
}

.product-card h3 {
    font-size: 1.15rem;
    color: #2f0d06;
    margin-bottom: 6px;
}

.product-card .price {
    color: #341108;
    font-weight: 800;
    font-size: 1.08rem;
}

.product-image {
    height: 200px;
    background: #f9f5f2;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 14px 40px rgba(52, 17, 8, 0.12);
}