/*
Theme Name: Makai Acai
Theme URI: https://www.makaiacaibar.com/
Author: Makai Development Team
Author URI: https://www.makaiacaibar.com/
Description: A custom WordPress theme for MAKAI Açaí & Superfood Bar - Thailand's original and favorite açaí bowl destination. Features a modern, tropical design that showcases organic açaí bowls and superfood products.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: makaiacai
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready, food-and-drink

Makai Acai WordPress Theme - Bringing the taste of Brazil to Thailand
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5c3d7a;
    --secondary-color: #8b5a9e;
    --accent-color: #f7c948;
    --green-color: #4a7c59;
    --light-green: #7db88f;
    --cream-color: #faf7f2;
    --white: #ffffff;
    --dark-text: #2d2d2d;
    --light-text: #666666;
    --berry-purple: #6b3a7d;
    --tropical-pink: #e8a4c9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--cream-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Header Styles */
.site-header {
    background: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.site-header.scrolled,
.site-header.force-solid-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.site-logo span {
    color: var(--accent-color);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    font-weight: 500;
    color: var(--dark-text);
    padding: 10px 0;
    position: relative;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Default transparent state text colors (assuming dark background underneath) */
.site-header:not(.scrolled):not(.force-solid-header) .main-navigation a,
.site-header:not(.scrolled):not(.force-solid-header) .site-logo {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-header:not(.scrolled):not(.force-solid-header) .site-logo span {
    color: var(--accent-color);
}

.site-header.scrolled .main-navigation a,
.site-header.scrolled .site-logo,
.site-header.force-solid-header .main-navigation a,
.site-header.force-solid-header .site-logo {
    color: var(--dark-text);
    text-shadow: none;
}

/* Logo switching: white logo on transparent header, color logo on scrolled header */
.site-header:not(.scrolled):not(.force-solid-header) .logo-white {
    display: inline-block;
}

.site-header:not(.scrolled):not(.force-solid-header) .logo-color {
    display: none;
}

.site-header.scrolled .logo-white,
.site-header.force-solid-header .logo-white {
    display: none;
}

.site-header.scrolled .logo-color,
.site-header.force-solid-header .logo-color {
    display: inline-block;
}

.site-header:not(.scrolled):not(.force-solid-header) .mobile-menu-toggle {
    color: var(--white);
}

.site-header.scrolled .mobile-menu-toggle,
.site-header.force-solid-header .mobile-menu-toggle {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--berry-purple) 50%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .tagline {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.85;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-text);
}

.btn-primary:hover {
    background: #e6b83d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-bowl {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream-color);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-color) 0%, var(--white) 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-item-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.menu-item-content {
    padding: 30px;
}

.menu-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.menu-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.menu-item p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.7;
}

.menu-item .tags {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.value-item {
    padding: 20px;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: var(--cream-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary-color);
}

.location-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.location-card p {
    color: var(--light-text);
    margin-bottom: 10px;
}

.location-card .hours {
    font-weight: 600;
    color: var(--green-color);
}



.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}



/* Footer */
.site-footer {
    background: #2d2d2d;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #FFD700;
    /* Yellow/Gold color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section li {
    color: #e0e0e0;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD700;
    color: #2d2d2d !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 44px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text .tagline {
        font-size: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-bowl {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

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

/* About Us Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--berry-purple) 50%, var(--secondary-color) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* About Story Split Layout */
.about-story-split {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    align-items: center;
}

.split-text-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-text-inner {
    width: 100%;
    max-width: 600px;
    padding: clamp(30px, 5vw, 60px);
    box-sizing: border-box;
}

.split-image-container {
    width: 50%;
    position: relative;
    aspect-ratio: 1 / 1;
}

.split-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-split.reverse {
    flex-direction: row-reverse;
}

.about-story-split.reverse .split-text-wrapper {
    justify-content: center;
}

.about-story-split.reverse .split-text-inner {
    padding: clamp(30px, 5vw, 60px);
}

.story-text h2 {
    font-size: clamp(24px, calc(12px + 2.5vw), 40px);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text p {
    color: var(--light-text);
    font-size: clamp(14px, calc(8px + 1vw), 18px);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-more-story {
    padding: 60px 0;
    background: var(--white);
}

.story-text-block {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.story-text-block p {
    color: var(--light-text);
    font-size: clamp(14px, calc(8px + 1vw), 18px);
    line-height: 1.8;
}

.story-inline-image {
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
}

.story-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* At Makai Section - centered text + full-width image below */
.about-at-makai-section {
    padding: 0;
    background-color: #ffffff;
}

.at-makai-image-wrap {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.at-makai-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
}



.about-photo-grid {
    margin: 0;
    padding: 0;
}

.photo-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 0;
}

.photo-grid-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.mission-section {
    padding: 100px 0;
    background: var(--cream-color);
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.difference-section {
    padding: 100px 0;
    background: var(--white);
}

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

.difference-item {
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    background: var(--cream-color);
    border-radius: 0 15px 15px 0;
}

.difference-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.difference-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.difference-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
    background: var(--cream-color);
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-block {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-block p {
    color: var(--light-text);
    line-height: 1.7;
}

.brands-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.brand-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--cream-color);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
}

.brand-item h3 {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 500;
}

.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-color), var(--light-green));
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Us Page Responsive */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .about-story-split,
    .about-story-split.reverse {
        flex-direction: column-reverse;
    }

    .split-text-wrapper,
    .split-image-container {
        width: 100%;
    }

    .split-text-inner {
        padding: 50px 20px;
        max-width: 100%;
    }

    .split-image-container {
        aspect-ratio: 4 / 3; /* Keep it rectangular on mobile/tablet so it's not massively tall */
        min-height: 300px;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-logo {
        height: 60px;
    }
}

/* Our Menu Page Styles */
.menu-content-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: var(--white);
}

.menu-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.menu-categories {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.menu-categories h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-list a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.category-list a.active {
    background: var(--primary-color);
    color: var(--white);
}

.menu-items-content {
    min-height: 100vh;
}

.menu-category-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

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

.menu-category-section:last-child {
    border-bottom: none;
}

.menu-category-section h2 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* Full image fills the card */
.product-image {
    position: relative;
    width: 100%;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 0;
    border-radius: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}


/* Body panel below image */
.product-card-body {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


.product-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
    /* height equalized by JS */
}

.product-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0 0 12px;
    /* height equalized by JS equalizeCardRows() */
}

/* Grain-style dietary pill badges */
.dietary-tags {
    display: flex;
    gap: 6px;
    margin: 8px 0 12px;
    flex-wrap: wrap;
    /* height equalized by JS */
    align-items: flex-start;
    align-content: flex-start;
}

.diet-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

/* Allergy legend row */
.allergy-legend {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Nutrition — always at the bottom of the card */
.nutrition-tabs {
    margin-top: 4px;
    /* Sits at the bottom after dietary tags */
}

.size-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.size-tab {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: all 0.2s;
}

.size-tab:hover {
    background: rgba(255, 255, 255, 0.28);
}

.size-tab.active {
    background: #f5c842;
    border-color: #f5c842;
    color: #2a0045;
    box-shadow: 0 2px 8px rgba(245, 200, 66, 0.45);
}

.nutrition-panel {
    display: none;
}

.nutrition-panel.active {
    display: block;
}

.nutrition-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.nutrition-item {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}



/* Our Menu Page Responsive */
@media (max-width: 1024px) {
    .menu-layout {
        grid-template-columns: 220px 1fr;
        gap: 30px;
    }

    .category-list a {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .menu-layout {
        grid-template-columns: 1fr;
    }

    .menu-categories {
        position: relative;
        top: 0;
    }

    .category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-list li {
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .category-list {
        grid-template-columns: 1fr;
    }

    .nutrition-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Location Page Styles */
.locations-page-section {
    padding: 80px 0;
    background: var(--white);
}

.locations-intro {
    text-align: center;
    margin-bottom: 60px;
}

.locations-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.locations-intro p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.locations-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.location-card-page {
    background: var(--cream-color);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.location-card-page h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-details {
    margin-bottom: 25px;
}

.location-details p {
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: 15px;
}

.location-details .address {
    font-weight: 600;
    color: var(--dark-text);
}

.location-details .hours {
    color: var(--green-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.map-section {
    padding: 80px 0;
    background: var(--cream-color);
}

.map-placeholder {
    background: var(--white);
    padding: 100px;
    border-radius: 20px;
    text-align: center;
    color: var(--light-text);
}

.location-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-color), var(--light-green));
    text-align: center;
}

.location-cta-section .cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.location-cta-section .cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.delivery-locations-section {
    padding: 80px 0;
    background: var(--cream-color);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.delivery-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.delivery-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.delivery-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.delivery-card p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 8px;
}

.delivery-card .address {
    font-weight: 500;
    color: var(--dark-text);
}

.btn-outline-small {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 10px;
}

.btn-outline-small:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Us Page Styles */
.contact-page-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-block>p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--cream-color);
    border-radius: 12px;
}

.method-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.method-info p {
    color: var(--light-text);
    font-size: 14px;
}

.method-info a {
    color: var(--primary-color);
}

.method-info a:hover {
    text-decoration: underline;
}

.social-connect h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-links-page {
    display: flex;
    gap: 15px;
}

.social-link-page {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--cream-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link-page:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-icon {
    font-weight: 700;
}

.social-name {
    font-size: 14px;
    font-weight: 500;
}

.contact-form-block {
    background: var(--cream-color);
    padding: 40px;
    border-radius: 20px;
}

.contact-form-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form-page label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.contact-form-page input,
.contact-form-page select,
.contact-form-page textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form-page input:focus,
.contact-form-page select:focus,
.contact-form-page textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-page textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background: var(--cream-color);
}

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

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
}

.faq-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Location & Contact Page Responsive */
@media (max-width: 768px) {
    .locations-grid-page {
        grid-template-columns: 1fr;
    }

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

    .contact-form-page .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-page {
        flex-wrap: wrap;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.menu-preview-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.menu-preview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.menu-preview-image:hover {
    transform: translateY(-5px);
}

/* Home Menu Grid Styles */
.home-menu-section {
    padding: 100px 0;
    background-color: var(--white);
}


.home-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.home-menu-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-menu-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-menu-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.home-menu-card:hover .card-image-wrapper {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 25px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-menu-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .home-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .card-image-wrapper {
        height: auto;
    }

    .home-menu-card h3 {
        font-size: 18px;
    }
}



/* Home Locations Section Styles */
.home-locations-section {
    padding: 100px 0;
    background-color: #FDFBF7;
    /* Light cream background matching the image */
}

.home-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.location-card-modern {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-accent-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 100%;
}

.location-card-modern.delivery .card-accent-bar {
    background: linear-gradient(90deg, var(--accent-color), #f9d87c);
}

.loc-content-wrapper {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.loc-header-modern {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    min-height: 110px;
}

.loc-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.location-card-modern h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.loc-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loc-badge.dine-in {
    background-color: rgba(74, 124, 89, 0.1);
    color: var(--green-color);
}

.loc-badge.delivery {
    background-color: rgba(247, 201, 72, 0.15);
    color: #d4a017;
}

.loc-address-modern {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.loc-info-grid {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #F9F5F0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text {
    flex-grow: 1;
}

.info-text .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.info-text a {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.2s;
}

.info-text a:hover {
    color: var(--primary-color);
}

.hours-list-modern {
    display: grid;
    gap: 6px;
}

.h-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
}

.h-row strong {
    color: var(--dark-text);
}

.btn-directions-modern {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-directions-modern:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 61, 122, 0.2);
}

.loc-map-modern {
    height: 180px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    flex-shrink: 0;
}

.loc-map-modern iframe {
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.location-card-modern:hover .loc-map-modern iframe {
    filter: grayscale(0%);
}

.map-overlay-click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .home-locations-grid {
        grid-template-columns: 1fr;
    }

    .loc-content-wrapper {
        padding: 25px;
    }
}

/* More Delivery Coverage Styles */
.more-delivery-coverage {
    text-align: center;
    margin-top: 80px;
}

.more-delivery-coverage h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.more-delivery-coverage p {
    font-size: 20px;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.delivery-areas-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.delivery-area-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 700px;
}

.delivery-area-item .area-name {
    text-align: left;
    color: var(--dark-text);
    font-weight: 700;
    font-size: 18px;
}

.delivery-area-item .area-time {
    text-align: right;
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .more-delivery-coverage h3 {
        font-size: 24px;
    }

    .more-delivery-coverage p {
        font-size: 16px;
    }

    .delivery-area-item {
        max-width: 100%;
        padding: 0 20px;
        gap: 15px;
    }

    .delivery-area-item .area-name,
    .delivery-area-item .area-time {
        font-size: 15px;
    }
}

/* Order Delivery Section Styles */
.order-delivery-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.order-delivery-section .section-title {
    margin-bottom: 25px;
}

.delivery-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.delivery-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.delivery-app-card:hover {
    transform: translateY(-5px);
}

.delivery-app-card .app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
}

.delivery-app-card .app-logo img {
    width: 260px;
    height: auto;
    object-fit: contain;
}

.delivery-app-card .order-now {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    margin-top: -50px;
}

.delivery-app-card:hover .order-now {
    color: var(--secondary-color);
}

/* Contact Us Section */
.contact-us-section {
    padding: 100px 0;
    background: var(--white);
}

.connect-with-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 50px 20px;
}

.connect-with-us-wrapper .social-icon-grid,
.connect-with-us-wrapper .social-icon-grid.unified {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 auto;
    gap: 24px;
    max-width: 1100px;
}

.connect-with-us-wrapper .social-icon-card {
    min-width: 0;
    width: 100%;
}

.connect-with-us-wrapper .social-handle {
    white-space: nowrap;
    overflow: visible;
    font-size: 12px;
}

.connect-with-us-wrapper .social-icon-card.email .social-handle {
    font-size: 11px;
}

@media (max-width: 900px) {

    .connect-with-us-wrapper .social-icon-grid,
    .connect-with-us-wrapper .social-icon-grid.unified {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .connect-with-us-wrapper .social-icon-grid,
    .connect-with-us-wrapper .social-icon-grid.unified {
        grid-template-columns: 1fr;
    }
}

/* Social Icon Grid — vertical icon layout */
.social-icon-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.social-icon-grid.two-cols {
    max-width: 700px;
    margin: 50px auto 0;
}

.social-icon-grid.three-cols {
    max-width: 900px;
    margin: 50px auto 0;
}

.social-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    gap: 14px;
    transition: transform 0.3s ease;
    min-width: 120px;
}

.social-icon-card:hover {
    transform: translateY(-6px);
}

.social-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}

.social-icon-card:hover .social-icon-circle {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Brand circle colors */
.social-icon-card.line .social-icon-circle {
    background: #06C755;
}

.social-icon-card.email .social-icon-circle {
    background: #3a3a3a;
}

.social-icon-card.fb .social-icon-circle {
    background: #1877F2;
}

.social-icon-card.ig .social-icon-circle {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-card.tiktok .social-icon-circle {
    background: #111111;
}

.social-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
}

.social-handle {
    font-size: 13px;
    color: #888;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .social-icon-grid {
        gap: 36px;
    }

    .social-icon-circle {
        width: 64px;
        height: 64px;
    }

    .social-icon-circle svg {
        width: 32px;
        height: 32px;
    }
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 25px;
    background: var(--cream-color);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Brand Colors */
.contact-card.fb .icon-wrapper {
    background: #1877F2;
}

.contact-card.ig .icon-wrapper {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-card.tiktok .icon-wrapper {
    background: #000000;
}

.contact-card.line .icon-wrapper {
    background: #E8F5E9;
}

.contact-card.email .icon-wrapper {
    background: #333333;
}

.contact-card.fb:hover {
    border-color: rgba(24, 119, 242, 0.2);
}

.contact-card.ig:hover {
    border-color: rgba(220, 39, 67, 0.2);
}

.contact-card.tiktok:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-card.line:hover {
    border-color: rgba(0, 185, 0, 0.2);
}

.contact-card.email:hover {
    border-color: rgba(51, 51, 51, 0.2);
}

.contact-grid-modern.two-cols {
    max-width: 900px;
    margin: 50px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


.contact-info {
    flex-grow: 1;
    min-width: 0;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card .arrow-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {

    .contact-grid-modern,
    .contact-grid-modern.two-cols {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 20px;
    }
}

/* Delivery Options Section */
.delivery-options-section {
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.delivery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 15px;
    background: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.delivery-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.delivery-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.delivery-name {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    display: block;
}

.order-btn {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.delivery-card:hover .order-btn {
    transform: translateX(5px);
}

/* Delivery Brand Colors */
.delivery-card.grab .delivery-logo {
    background: #00B14F;
}

.delivery-card.lineman .delivery-logo {
    background: #06C755;
}

.delivery-card.foodpanda .delivery-logo {
    background: #D70F64;
}

.delivery-card.robinhood .delivery-logo {
    background: #FBC02D;
}

.delivery-card.grab:hover {
    border-color: rgba(0, 177, 79, 0.2);
}

.delivery-card.lineman:hover {
    border-color: rgba(6, 199, 85, 0.2);
}

.delivery-card.foodpanda:hover {
    border-color: rgba(215, 15, 100, 0.2);
}

.delivery-card.robinhood:hover {
    border-color: rgba(251, 192, 45, 0.2);
}

@media (max-width: 768px) {
    .delivery-options-section {
        padding: 20px;
    }

    .delivery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Nutrition Info */
.nutrition-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.nutrition-item {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.nutrition-item span {
    font-size: 14px;
}

/* Fullscreen Hero Slider */
.fullscreen-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

/* Slider Backgrounds */
.slider-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay */
.slider-backgrounds::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* Centered Hero Content */
.hero-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-content-centered h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-content-centered .hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: var(--white);
    opacity: 1;
}

/* Logo Image Styling */
.header-logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content-centered h1 {
        font-size: 36px;
    }

    .hero-content-centered .hero-subtitle {
        font-size: 16px;
    }
}

/* Family of Brands Section */
.about-brands-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.family-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}

.family-brands-grid .brand-logo {
    /* height: 120px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-brands-grid .brand-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .family-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .family-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}


.vitatrade-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-item img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}