/*==============================
    {BYAP} Food Premium Template
    Fiel ao Template Original
    © 2024 BYAP - Andre Paiva
================================*/

/* Logo SVG */
.logo-svg {
    height: 48px;
    width: auto;
    color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-svg:hover { transform: scale(1.05); opacity: 0.9; }

/* Mobile side menu logo */
.side-menu .logo-svg {
    color: #fff;
    height: 40px;
    margin-bottom: 20px;
}

/*=========================
   CSS Variables
=========================*/
:root {
    --primary-green: #84b813;
    --gradient-start: #fc2a40;
    --gradient-end: #ff5606;
    --text-dark: #444444;
    --text-grey: #666666;
    --text-light: #b8b8b8;
    --bg-light: #f9f9f9;
    --bg-light-grey: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

/*=========================
   Reset & Base
=========================*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    overflow-x: hidden;
    position: relative;
}

/*=========================
   Typography
=========================*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
}

.font-playfair { font-family: var(--font-heading); }
.Playfair { font-family: var(--font-heading); }
.Roboto { font-family: var(--font-body); }

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gradient-end);
}

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

/*=========================
   Utility Classes
=========================*/
.text-gradient {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg1 {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.bg-light { background-color: var(--bg-light) !important; }
.bg-light-grey { background-color: var(--bg-light-grey) !important; }
.green { color: var(--primary-green) !important; }
.grey { color: var(--text-grey) !important; }

.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }

.max-200 { max-width: 200px; }
.color-white { color: #fff !important; }

/*=========================
   Buttons
=========================*/
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-green:hover {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-gradient {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 15px;
}

.btn-rounded {
    border-radius: 50px;
}

/*=========================
   Preloader
=========================*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper img {
    max-width: 250px;
}

/*=========================
   Header & Navigation
=========================*/
.header-with-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

.header-with-topbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Logo Text Style */
.logo-text {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
    display: inline-block;
}

.logo-text:hover {
    color: var(--primary-green);
}

/* =============================
   Navigation - Desktop & Mobile
   ============================= */
.navbar-top-default {
    padding: 15px 0;
    background: var(--white);
}

/* Desktop only (>= 992px): Logo left, menu center, social right */
@media (min-width: 992px) {
    .navbar-top-default.center-logo .container {
        position: relative;
    }
    
    .navbar-top-default.center-logo .logo.link {
        position: relative;
        z-index: 2;
    }
    
    .navbar-top-default.center-logo .navbar-collapse {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        margin-top: -20px;
    }
    
    .navbar-top-default.center-logo .social_icons {
        margin-left: auto;
    }
}

/* Social icons order */
.social_icons {
    order: 4;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark) !important;
    text-transform: capitalize;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background-color: var(--primary-green);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

/* Social Icons in Header */
.social_icons ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social_icons ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-dark);
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social_icons ul li a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* Side Nav Button (Mobile Hamburger) */
.side-nav-btn {
    cursor: pointer;
    width: 28px;
    padding: 5px 0;
}

.side-nav-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s;
}

.side-nav-btn:hover span:nth-child(2) {
    width: 70%;
}

/* Side Menu Mobile */
.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--text-dark);
    z-index: 9999;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.side-menu .inner-wrapper {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-menu .btn-close {
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 30px;
}

.side-menu .btn-close::before {
    content: '×';
}

.side-menu .side-menu-logo {
    display: block;
    margin-bottom: 30px;
}

.side-menu .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
}

.side-menu .nav-link {
    color: var(--white) !important;
    font-size: 18px;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.side-menu .nav-link::after {
    display: none;
}

.side-footer {
    margin-top: auto;
    padding-top: 30px;
}

.social-icons-simple {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 15px;
}

.social-icons-simple li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons-simple li a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#close_side_menu.active {
    opacity: 1;
    visibility: visible;
}

/*=========================
   Hero Section
=========================*/
.hero-fullscreen {
    min-height: 100vh;
    position: relative;
    background: #f8f8f8;
}

.hero-slider-wrapper {
    min-height: 100vh;
}

.hero-content-wrapper {
    min-height: 100vh;
    position: relative;
}

.hero-text {
    padding: 150px 0 100px;
}

.hero-subtitle {
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 15px;
    line-height: 30px;
    color: var(--text-grey);
    max-width: 480px;
    margin: 0 auto 40px;
}

/* Hero Decorative Elements */
.hero-ele {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-ele-left {
    left: -230px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 545px;
}

.hero-ele-right {
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 295px;
}

.hero-ele-bottom-left {
    left: 100px;
    bottom: 100px;
    max-width: 267px;
    animation-delay: 0.5s;
}

.hero-ele-top-right {
    right: 200px;
    top: 200px;
    max-width: 220px;
    animation-delay: 1s;
}

.hero-ele-top-left {
    left: 150px;
    top: -20px;
    max-width: 167px;
}

.hero-ele-mid-right {
    right: 300px;
    top: 50px;
    max-width: 90px;
}

.hero-ele-mid-left {
    left: 200px;
    top: 320px;
    max-width: 127px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/*=========================
   Section Titles (Zig-Zac)
=========================*/
.zic-img {
    margin-bottom: 30px;
}

.img-zic {
    margin-bottom: 10px;
}

.img-zic img {
    max-width: 80px;
}

.response {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--primary-green);
}

section {
    padding: 100px 0;
}

/*=========================
   About / Menu Section
=========================*/
.image-about {
    border-radius: 5px;
}

.rare-box {
    position: relative;
}

.features {
    padding-left: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.food-features-icon {
    margin-right: 20px;
}

.food-features-icon .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.feature-item:hover .icon {
    background: var(--primary-green);
    color: var(--white);
}

.feature-para {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.max {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 24px;
}

/*=========================
   Menu / Food Section
=========================*/
.food-img-before,
.food-img-after {
    position: absolute;
    z-index: 0;
    max-width: 150px;
}

.food-img-before {
    left: -50px;
    top: 0;
}

.food-img-after {
    right: -50px;
    top: 0;
}

/* Tab System */
.tab-to-accordion {
    width: 100%;
}

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

.tabset-list li {
    cursor: pointer;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tabset-list li.active .icon,
.tabset-list li:hover .icon {
    color: var(--white);
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.tabset-list .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.tabset-list h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.tab-container > div:not(.accordion-item) {
    display: none;
}

.tab-container > div.active,
.tab-container > #tab2 {
    display: block;
}

.accordion-item {
    display: none;
}

/* Menu Items */
.food-menu {
    flex: 1;
    max-width: 500px;
}

.menu-price {
    position: relative;
}

.menu-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-price p {
    color: var(--text-grey);
    font-size: 14px;
}

.price2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.hr-line {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 15px 0;
}

/*=========================
   Parallax / Stats Section
=========================*/
.parallax {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.parallax .container {
    position: relative;
    z-index: 1;
}

.head-25 {
    font-size: 25px;
    line-height: 1.4;
}

.icon-block {
    text-align: center;
}

.counter-icon {
    margin-bottom: 15px;
}

.counter-icon i {
    font-size: 50px;
    color: var(--primary-green);
}

.counters h3 {
    font-size: 50px;
    font-weight: 700;
}

.num-counts {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plus-icon {
    font-size: 30px;
}

/*=========================
   Booking Section
=========================*/
.book-img-width,
.book-img-width2 {
    position: absolute;
    z-index: 0;
}

.book-img-width {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.book-img-width img {
    max-width: 200px;
}

.book-img-width2 {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.book-img-width2 img {
    max-width: 150px;
}

.booking-para {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-grey);
}

/*=========================
   Gallery Section
=========================*/
.gallery {
    padding-bottom: 0;
}

.gallery .row.m-0 {
    margin: 0 !important;
}

.gallery .row.m-0 > div {
    padding: 0;
}

.item-img {
    position: relative;
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.col-md-8 .item-img img {
    height: 250px;
}

.item-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.item-img:hover .item-img-overlay {
    opacity: 1;
}

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

.overlay-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dinner-hover {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 15px;
}

.overlay-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/*=========================
   Deals Section
=========================*/
.mega-deal-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.deal-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.deal-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.deal-para {
    color: var(--text-grey);
    font-size: 14px;
}

/* Owl Carousel Styles */
.owl-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-green) !important;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-green) !important;
    color: var(--white);
}

.owl-carousel .owl-nav button span {
    font-size: 24px;
    line-height: 1;
}

/*=========================
   Testimonial Section
=========================*/
.testimonial {
    background: var(--text-dark);
    padding: 100px 0;
}

.feedback-slides {
    text-align: center;
}

.client-thumbnails {
    margin-bottom: 30px;
}

.testimonial-slider-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.testimonial-slider-nav .item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.testimonial-slider-nav .item.slick-current,
.testimonial-slider-nav .item:hover {
    opacity: 1;
}

.img-fill {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid var(--primary-green);
}

.img-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-heading {
    font-size: 14px;
    opacity: 0.7;
}

.single-feedback p {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/*=========================
   Blog Section
=========================*/
.our-blog {
    padding: 100px 0;
}

.blog-img .img-blog {
    overflow: hidden;
    border-radius: 5px;
}

.blog-img .img-blog img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.blog-img:hover .img-blog img {
    transform: scale(1.05);
}

.blog-para {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.blog-width {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
}

.blog-btn {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.angle-right {
    margin-left: 5px;
    font-size: 12px;
}

.pl-25 {
    padding-left: 25px;
}

/*=========================
   Contact Section
=========================*/
.contact-us {
    padding: 100px 0;
}

.contact h2,
.book-table h2 {
    font-size: 32px;
    font-weight: 600;
}

.contact-detail {
    color: var(--text-grey);
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-icon {
    color: var(--primary-green);
    margin-right: 10px;
    width: 20px;
}

.contact-form .form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
}

/*=========================
   Footer
=========================*/
.footer-sec {
    background: var(--text-dark);
    padding: 60px 0;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 32px;
}

.footer-width {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    max-width: 300px;
}

.footer-para {
    text-align: right;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.copyright-para {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

/*=========================
   Go Top Button
=========================*/
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    overflow: hidden;
}

.go-top.active {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background: var(--text-dark);
}

.go-top i {
    font-size: 14px;
    line-height: 1;
}

.go-top i:first-child {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.go-top i:last-child {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.go-top:hover i:first-child {
    transform: translateY(0);
}

.go-top:hover i:last-child {
    transform: translateY(-20px);
}

/*=========================
   WOW Animations
=========================*/
.wow {
    visibility: visible !important;
}

/*=========================
   Responsive
=========================*/
@media (max-width: 1199.98px) {
    .hero-subtitle { font-size: 36px; }
    .hero-title { font-size: 60px; }
    .hero-ele-left { max-width: 350px; left: -150px; }
    .hero-ele-right { max-width: 200px; }
}

/* =============================
   Tablet/Mobile (< 992px)
   ============================= */
@media (max-width: 991.98px) {
    /* Navbar Spacing fix - Ensure safe area */
    .navbar-top-default .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-subtitle { font-size: 30px; }
    .hero-title { font-size: 50px; }
    
    .features {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .tabset-list {
        flex-wrap: wrap;
    }
    
    .tabset-list li {
        flex: 1;
        min-width: 120px;
    }
    
    .accordion-item {
        display: block;
        padding: 15px;
        background: var(--bg-light-grey);
        margin-bottom: 5px;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .accordion-item a {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .accordion-item .icon-font {
        padding: 0 !important;
    }
    
    .accordion-item .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .accordion-item h3 {
        margin: 0;
        font-size: 16px;
    }
    
    .tabset-list {
        display: none !important;
    }
    
    .footer-para {
        text-align: center;
        margin-top: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    /* Mobile spacing - Global standard 16px */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-text {
        padding: 120px 0 80px;
    }
    
    .hero-subtitle { font-size: 24px; }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 14px; line-height: 24px; }
    
    h2 { font-size: 28px; }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .food-features-icon {
        margin: 0 0 15px;
    }
    
    .food-menu {
        max-width: 100%;
    }
    
    .parallax {
        background-attachment: scroll;
    }
    
    .head-25 { font-size: 20px; }
    .counters h3 { font-size: 36px; }
    
    .item-img img {
        height: 200px;
    }
    
    .col-lg-8 .blog-img {
        margin-bottom: 30px;
    }
    
    .pl-25 {
        padding-left: 15px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-width {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 28px; }
    .btn-large { padding: 12px 25px; font-size: 13px; }
    
    .tabset-list .icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .testimonial-slider-nav {
        flex-wrap: wrap;
    }
    
    .single-feedback p {
        font-size: 16px;
    }
}

/*=========================
   Owl Carousel Deals
=========================*/
#deal-slider.owl-carousel .owl-stage-outer {
    padding: 10px 0;
}

#deal-slider .item {
    padding: 10px;
}

#deal-slider.owl-carousel .owl-nav {
    margin-top: 40px;
    text-align: center;
}

#deal-slider.owl-carousel .owl-nav button.owl-prev,
#deal-slider.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-green) !important;
    border-radius: 50%;
    margin: 0 10px;
    background: transparent !important;
    color: var(--primary-green);
    transition: all 0.3s ease;
    font-size: 18px;
}

#deal-slider.owl-carousel .owl-nav button:hover {
    background: var(--primary-green) !important;
    color: var(--white);
}

/*=========================
   Slick Testimonial
=========================*/
.testimonial-slider-nav .slick-slide {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-slider-nav .slick-slide.slick-current {
    opacity: 1;
}

.testimonial-slider-for {
    margin-top: 30px;
}

/*=========================
   Additional Utilities
=========================*/
.font-weight-600 {
    font-weight: 600 !important;
}

.valign {
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallaxie {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.m-mb-20 {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .m-mb-20 {
        margin-bottom: 20px;
    }
    
    .margin-991 {
        margin: 0 auto;
    }
    
    .parallax-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ============================================
   FAANG-LEVEL ACCESSIBILITY FIXES
   Standards: WCAG 2.1 AA, Apple HIG
   ============================================ */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Visible - Keyboard Navigation */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--cor-primaria, #6366f1);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip Link - Screen Readers */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cor-primaria, #6366f1);
  color: white;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
  
  button, a {
    border: 2px solid currentColor;
  }
}

/* Print Styles */
@media print {
  *,
  *::before,
  *::after {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
  }
  
  .no-print,
  nav,
  header,
  footer,
  .loader,
  .preloader {
    display: none !important;
  }
}

/* Selection Highlight */
::selection {
  background: var(--cor-primaria, #6366f1);
  color: white;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

@supports (scroll-behavior: smooth) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/* Loading Skeleton Base */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error State Base */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
  color: var(--texto-muted, #888);
}

.error-state::before {
  content: "⚠️";
  font-size: 48px;
}

/* Empty State Base */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--texto-muted, #888);
}

.empty-state::before {
  content: "📭";
  font-size: 48px;
}

/* Touch Target Size (WCAG) */
button,
a,
[role="button"],
input[type="submit"],
input[type="button"],
.btn {
  min-height: 44px;
  min-width: 44px;
}

/* Visible Scrollbar for Accessibility */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Content Visibility for Performance */
.below-fold {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}


/* ============================================
   FAANG-LEVEL ROUND 2 - UX & INTERACTION
   ============================================ */

/* Active States for All Interactive Elements */
button:active,
a:active,
[role="button"]:active,
.btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* Enhanced Hover States */
button:hover,
a:hover,
[role="button"]:hover,
.btn:hover {
  transform: translateY(-1px);
}

/* Haptic-like Feedback (visual) */
@keyframes haptic-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.97); }
}

.haptic:active {
  animation: haptic-pulse 0.15s ease-out;
}

/* Improved Loading Animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.loading-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Interaction Feedback */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
  border-color: var(--cor-primaria, #6366f1);
}

/* Better Disabled State */
button:disabled,
input:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Micro-interactions */
.card,
.btn,
article {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Spring Animation */
@keyframes spring {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.animate-spring {
  animation: spring 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Subtle Entrance Animation */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

/* Stagger Animation Helper */
.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }

/* Premium Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--cor-primaria, #6366f1), var(--cor-secundaria, #a855f7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Button */
.btn-premium {
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-premium:hover::before {
  transform: translateX(100%);
}


/* ============================================
   FAANG-LEVEL FINAL - PERFORMANCE & POLISH
   ============================================ */

/* Prevent CLS - Aspect Ratio for Images */
img {
  aspect-ratio: attr(width) / attr(height);
  height: auto;
  max-width: 100%;
}

/* Placeholder Aspect Ratios */
.img-16-9 { aspect-ratio: 16/9; }
.img-4-3 { aspect-ratio: 4/3; }
.img-1-1 { aspect-ratio: 1/1; }
.img-3-2 { aspect-ratio: 3/2; }

/* Optimized Font Loading */
body {
  font-display: swap;
}

/* Content Visibility for Below Fold */
section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* Better Focus Ring */
*:focus-visible {
  outline: 2px solid var(--cor-primaria, #6366f1);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip visible focus for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Tabindex Navigation Indicator */
[tabindex]:focus-visible {
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.4);
}

/* Performance: GPU Acceleration for Animations */
.animate-gpu,
[data-aos] {
  will-change: transform;
  transform: translateZ(0);
}

/* Reduce Repaints */
.fixed-header,
.sticky-nav,
header,
nav {
  will-change: transform;
  contain: layout style;
}

/* Touch Action for Better Mobile */
button,
a,
[role="button"] {
  touch-action: manipulation;
}

/* iOS Smooth Scrolling */
.scroll-container {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Prevent FOUC */
.js-loading *,
.js-loading *:before,
.js-loading *:after {
  animation-play-state: paused !important;
}

/* Critical Render Path */
.critical {
  contain: content;
}

/* Lazy Fade In */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Optimized Shadows (GPU) */
.shadow-optimized {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateZ(0);
}

/* Better Typography */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p, li {
  text-wrap: pretty;
  max-width: 70ch;
}

/* Fluid Typography */
html {
  font-size: clamp(14px, 1vw + 12px, 18px);
}

/* Better Image Rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  object-fit: cover;
}

/* Optimized Gradients */
.gradient-optimized {
  background: linear-gradient(135deg, var(--cor-primaria, #6366f1), var(--cor-secundaria, #a855f7));
  background-attachment: fixed;
}

/* Vibration API Hook (CSS indicator) */
.haptic-feedback {
  --haptic-active: 0;
}

.haptic-feedback:active {
  --haptic-active: 1;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

/* Light Mode Support */
@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
  }
}


/* Garantir que imagens carregadas apareçam */
img.loaded {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Esconder skeletons quando carregado */
.skeleton-container.loaded .skeleton-placeholder,
.skeleton-container.loaded .skeleton,
.loaded > .skeleton {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Fallback visual para elementos vazios */
.bento-card:empty,
.card:empty,
.portfolio-item:empty {
  min-height: 100px;
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

/* Lucide icons fallback */
[data-lucide]:empty::before {
  content: "•";
  font-size: 1.5em;
  opacity: 0.3;
}



/* ========================================
   BYAP Fix: Robust Visual Fallbacks
   ======================================== */

/* Garantir que imagens carregadas apareçam */
img.loaded {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Forçar imagens a aparecerem após 2s mesmo sem .loaded */
@keyframes forceShow {
  to { opacity: 1; }
}

img[data-src], img.lazy {
  animation: forceShow 0.3s ease 2s forwards;
}

/* Esconder skeletons quando carregado */
.skeleton-container.loaded .skeleton-placeholder,
.skeleton-container.loaded .skeleton,
.loaded > .skeleton {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Esconder skeletons após 3s */
@keyframes hideSkeleton {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.skeleton-placeholder,
.skeleton {
  animation: hideSkeleton 0.3s ease 3s forwards;
}

/* Fallback visual para elementos vazios */
.bento-card:empty,
.card:empty,
.portfolio-item:empty {
  min-height: 100px;
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

/* Lucide icons - garantir tamanho */
[data-lucide] svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

