/*
 Theme Name:   NAVAT Food Truck
 Theme URI:    https://navatfoodtruck.test
 Description:  NAVAT Shawarma child theme for Hello Elementor
 Author:       NAVAT
 Author URI:   https://navatfoodtruck.test
 Template:     hello-elementor
 Version:      2.0.0
 Text Domain:  navatfoodtruck
*/

/* ==========================================================================
   CSS Variables — exact match to original navatfoodtruck.com
   ========================================================================== */
:root {
    --main-color: #e74a23;
    --secondary-color: #ff3b0b;
    --main-color-opacity: 206, 40, 41;
    --body-font: "Barlow", sans-serif;
    --heading-font: "Barlow", sans-serif;
    --bebas-font: "Bebas Neue", cursive;
    --satisfy-font: "Satisfy", cursive;
    --paragraph-color: #5f5f5f;
    --heading-color: #292929;
    --body-bg: #faf7f2;
    --footer-bg: #f6f1e7;
    --star-color: #fbbc04;
}

/* ==========================================================================
   Base / Reset
   ========================================================================== */
body.navat-site {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--paragraph-color);
    background-color: var(--body-bg);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--heading-color);
}
h1 { font-size: 86px; line-height: 1.233; }
h2 { font-size: 42px; line-height: 1.338; }
h3 { font-size: 32px; line-height: 1.383; }
h4 { font-size: 28px; line-height: 1.338; }
h5 { font-size: 24px; line-height: 1.338; }
h6 { font-size: 18px; line-height: 1.238; }

a { transition: 0.4s; }

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

/* ==========================================================================
   Buttons — pill shape with skew sweep hover
   ========================================================================== */
.navat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navat-btn::after {
    position: absolute;
    content: "";
    background: var(--main-color);
    transition: 0.6s ease-in;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(30deg);
    transform-origin: top left;
    width: 0;
}
.navat-btn:hover::after {
    height: 100%;
    width: 135%;
}
.navat-btn:hover { color: #fff !important; }

.navat-btn-secondary {
    background: var(--secondary-color);
    color: #fff;
}
.navat-btn-secondary::after {
    background: #fff;
}
.navat-btn-secondary:hover { color: var(--secondary-color) !important; }

.navat-btn-green {
    background-color: #44cf6c;
    color: #fff;
}
.navat-btn-green:hover {
    background-color: #2eb254;
}

.navat-btn-border-white {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}
.navat-btn-border-white:hover {
    background: #fff;
    color: var(--main-color) !important;
}

/* Elementor button overrides */
.navat-site .elementor-button {
    font-family: var(--body-font);
    font-weight: 600;
    border-radius: 50px !important;
    transition: 0.5s;
}

/* ==========================================================================
   Section Title Pattern (from original)
   ========================================================================== */
.navat-section-title {
    margin-bottom: 37px;
    text-align: center;
}
.navat-sub-title {
    color: var(--main-color);
    font-family: var(--satisfy-font) !important;
    font-weight: 400 !important;
    margin-bottom: 10px;
}
.navat-title {
    font-size: 42px;
    font-weight: 600;
}

/* ==========================================================================
   Header (via HFE plugin)
   ========================================================================== */
.navat-header {
    background-color: var(--main-color);
    border-bottom: 1px solid #c20608;
    min-height: 80px;
}
.navat-header a { color: #fff; text-decoration: none; }
.navat-header a:hover { color: var(--secondary-color); }
.navat-header .logo img { height: 70px; }
.navat-header .nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Force Elementor header colors */
.ehf-header .elementor-nav-menu a,
.ehf-header .elementor-widget-nav-menu a {
    color: #fff !important;
}

/* Nav menu widget styling for header */
.navat-site .ehf-header .widget_nav_menu ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.navat-site .ehf-header .widget_nav_menu ul li a {
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}
.navat-site .ehf-header .widget_nav_menu ul li a:hover {
    color: var(--secondary-color) !important;
}
/* Dropdown sub-menu */
.navat-site .ehf-header .widget_nav_menu ul li ul.sub-menu {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.05);
    min-width: 210px;
    padding: 0;
    display: none;
    flex-direction: column;
    z-index: 99;
}
.navat-site .ehf-header .widget_nav_menu ul li:hover ul.sub-menu {
    display: flex;
}
.navat-site .ehf-header .widget_nav_menu ul li ul.sub-menu li {
    border-bottom: 1px solid #f5f5f5;
}
.navat-site .ehf-header .widget_nav_menu ul li ul.sub-menu li a {
    color: #050a30 !important;
    font-size: 14px;
    padding: 10px 20px;
    display: block;
    text-transform: capitalize;
}
.navat-site .ehf-header .widget_nav_menu ul li ul.sub-menu li:hover {
    background: var(--main-color);
}
.navat-site .ehf-header .widget_nav_menu ul li ul.sub-menu li:hover a {
    color: #fff !important;
    padding-left: 30px;
}

/* ==========================================================================
   Hero / Banner
   ========================================================================== */
.navat-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.navat-hero .sub-title,
.navat-hero .elementor-heading-title.navat-sub-title {
    color: var(--secondary-color) !important;
    font-family: var(--satisfy-font) !important;
    font-weight: 400 !important;
}
.navat-hero .main-title,
.navat-hero h1 {
    color: #fff !important;
    font-family: var(--bebas-font) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 86px !important;
    line-height: 92px !important;
}
.navat-hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ==========================================================================
   Location Cards
   ========================================================================== */
.navat-location-card {
    text-align: center;
    margin-bottom: 30px;
}
.navat-location-card .location-sub {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
}
.navat-location-head {
    color: var(--secondary-color) !important;
    margin-bottom: 20px;
    line-height: 1;
    text-align: center;
}
.navat-location-card .location-img {
    margin-bottom: 20px;
    max-width: 100%;
}
.navat-location-card .location-info {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.238;
}
.navat-location-card .location-info b {
    font-weight: 700;
}

/* ==========================================================================
   About / Why Choose Us
   ========================================================================== */
.navat-about-item {
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    text-align: center;
    color: var(--heading-color);
    padding: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.navat-about-item img {
    height: 54px;
    margin-right: 10px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.navat-testimonials {
    padding: 110px 0 115px;
}
.navat-testimonial-card {
    margin-bottom: 15px;
}
.navat-testimonial-card .rating {
    color: var(--star-color);
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-flex;
}
.navat-testimonial-card .rating i {
    padding: 0 3px;
}
.navat-testimonial-card .review-text {
    font-family: Roboto, Arial, sans-serif;
    font-size: 28px;
    color: rgba(27, 27, 27, 0.7);
    font-weight: 400;
    line-height: 40px;
}
.navat-testimonial-card .reviewer-name {
    font-family: Roboto, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 10px;
}
.navat-testimonial-card .review-date {
    font-size: 26px;
}

/* Simplified testimonial cards for grid layout */
.navat-review-card {
    padding: 20px;
    box-shadow: 0 0 5px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    background: #fff;
    border-radius: 4px;
}
.navat-review-card .stars {
    color: var(--star-color);
    font-size: 16px;
    margin-bottom: 8px;
}
.navat-review-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}
.navat-review-card .date {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}
.navat-review-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(27, 27, 27, 0.7);
    margin: 0;
}

/* ==========================================================================
   Instagram Gallery
   ========================================================================== */
.navat-instagram {
    text-align: center;
}
.navat-instagram .thumb {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}
.navat-instagram .thumb img {
    width: 100%;
    transition: 0.4s ease-in;
}
.navat-instagram .thumb:hover img {
    transform: scale(1.05);
}
.navat-instagram .follow-btn {
    display: inline-block;
    width: 200px;
    height: 58px;
    margin-top: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================================================
   Featured / Video Banner
   ========================================================================== */
.navat-featured {
    padding: 145px 0 112px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}
.navat-featured .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}
.navat-featured .content {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Order Page
   ========================================================================== */
.navat-order-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}
.navat-order-select {
    width: 687px;
    max-width: calc(100% - 40px);
}
.navat-order-select select {
    width: 100%;
    font-weight: 600;
    height: 56px;
    font-size: 20px;
    padding-left: 10px;
    color: #000;
    border: none;
    background-color: var(--footer-bg);
    font-family: var(--body-font);
}
.navat-order-tabs {
    width: 687px;
    max-width: calc(100% - 40px);
}
.navat-order-tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}
.navat-order-tab-btn {
    flex: 1;
    height: 56px;
    font-weight: 600;
    font-size: 20px;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
}
.navat-order-tab-btn.active {
    color: #495057;
    background-color: var(--footer-bg);
}
.navat-order-tab-btn:not(.active) {
    color: #fff;
    background-color: #ff582f;
}
.navat-order-tab-btn:not(.active):hover {
    background-color: #ff471a;
}
.navat-order-tab-content {
    padding: 30px;
    background-color: var(--footer-bg);
}

/* Delivery service buttons */
.delivery-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
    margin-top: 20px;
}
.btn-delivery {
    display: inline-block;
    width: calc(50% - 10px);
    height: 66px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
}
.btn-delivery--doordash { background-color: #fff; }
.btn-delivery--grubhub { background-color: #fff; }
.btn-delivery--ubereats { background-color: #06bb64; }
.btn-delivery--postmates { background-color: #fff; }

/* ==========================================================================
   Footer (warm beige like original)
   ========================================================================== */
/* Footer top bar: logo + nav + button */
.navat-site .ehf-footer .elementor-widget-navigation-menu .elementor-nav-menu > li > a {
    padding: 10px 0;
}
.navat-site .ehf-footer .elementor-widget-button .elementor-button {
    padding: 12px 30px;
}

.navat-footer {
    background-color: var(--footer-bg);
}
.navat-footer .footer-inner {
    padding: 100px 0 65px;
}
.navat-footer .footer-links {
    display: flex;
    gap: 40px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}
.navat-footer .footer-links li {
    font-size: 18px;
}
.navat-footer .footer-links a {
    color: var(--heading-color);
    text-decoration: none;
}
.navat-footer .footer-links a:hover {
    color: var(--secondary-color);
}
.navat-footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}
.navat-footer .footer-bottom p {
    color: var(--heading-color);
    margin: 0;
}
.navat-footer .social-area {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.navat-footer .social-area a {
    color: var(--heading-color);
    font-size: 18px;
    text-decoration: none;
}
.navat-footer .social-area a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Locations Page
   ========================================================================== */
.navat-locations-section {
    padding-top: 120px;
    padding-bottom: 90px;
    background: var(--body-bg);
}

/* ==========================================================================
   Locations Grid Widget  (matches navatfoodtruck.com #contact)
   ========================================================================== */
.navat-locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 30px;
    max-width: 1140px;
    margin: 0 auto;
}
.navat-locations-grid--cols-1 .navat-location-card-wrap { width: 100%; max-width: 475px; }
.navat-locations-grid--cols-2 .navat-location-card-wrap { width: calc(50% - 15px); max-width: 475px; }
.navat-locations-grid--cols-3 .navat-location-card-wrap { width: calc(33.333% - 20px); }
.navat-locations-grid--cols-4 .navat-location-card-wrap { width: calc(25% - 23px); }

.navat-location-card-wrap {
    text-align: center;
}

.navat-loc-card__sub {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.navat-loc-card__head {
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary-color) !important;
    margin: 0 0 20px;
    text-align: center;
    line-height: 1;
}

.navat-loc-card__img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.navat-loc-card__btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.navat-site a.navat-loc-card__btn {
    padding: 8px 24px;
    background: var(--secondary-color);
    color: #fff !important;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: background 0.3s;
}

.navat-site a.navat-loc-card__btn:hover {
    background: var(--main-color);
    color: #fff !important;
}

h6.navat-loc-card__info {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin: 0 0 4px;
    text-align: left;
    line-height: 1.6;
}

h6.navat-loc-card__info b {
    font-weight: 700;
}

h6.navat-loc-card__info a {
    color: var(--heading-color);
    text-decoration: none;
}

h6.navat-loc-card__info a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Order Selector Widget
   ========================================================================== */
.navat-order-widget {
    max-width: 750px;
    margin: 0 auto;
}

.navat-order-widget__header {
    text-align: center;
    margin-bottom: 30px;
}

.navat-order-widget__subtitle {
    color: var(--main-color);
    font-family: var(--satisfy-font) !important;
    font-weight: 400 !important;
    font-size: 28px;
    margin-bottom: 10px;
}

.navat-order-widget__title {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.navat-order-widget__select-wrap {
    margin-bottom: 20px;
}

.navat-order-widget__select {
    width: 100%;
    height: 56px;
    font-weight: 600;
    font-size: 20px;
    padding: 0 15px;
    color: #000;
    border: none;
    background-color: var(--footer-bg);
    font-family: var(--body-font);
    cursor: pointer;
    appearance: auto;
}

.navat-order-widget__body {
    background-color: var(--footer-bg);
}

.navat-order-widget__tabs {
    display: flex;
    gap: 0;
}

.navat-order-widget__tab {
    flex: 1;
    height: 56px;
    font-weight: 600;
    font-size: 20px;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    transition: 0.3s;
}

.navat-order-widget__tab.active {
    color: #fff;
    background-color: var(--secondary-color);
}

.navat-order-widget__tab:not(.active) {
    color: #495057;
    background-color: var(--footer-bg);
}

.navat-order-widget__tab:not(.active):hover {
    background-color: #ede8dd;
}

.navat-order-widget__panel {
    padding: 30px;
}

.navat-order-widget__panel-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navat-order-widget__panel-left {
    flex: 0 0 auto;
    text-align: center;
}

.navat-order-widget__panel-center {
    text-align: center;
    margin-bottom: 20px;
}

.navat-order-widget__cheapest {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.navat-order-widget__order-btn {
    display: inline-block;
    padding: 14px 50px;
    background: var(--secondary-color);
    color: #fff !important;
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.3s;
}

.navat-order-widget__order-btn:hover {
    background: var(--main-color);
}

.navat-order-widget__panel-right {
    flex: 1;
    text-align: center;
}

.navat-order-widget__address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    color: var(--heading-color);
    margin: 0 0 10px;
}

.navat-order-widget__address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--heading-color);
}

.navat-order-widget__maps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--heading-color);
    text-decoration: underline;
}

.navat-order-widget__maps-link:hover {
    color: var(--secondary-color);
}

.navat-order-widget__services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.navat-order-widget__service {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    border-radius: 4px;
    background: #fff;
    transition: box-shadow 0.3s;
    text-decoration: none;
}

.navat-order-widget__service:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.navat-order-widget__service--ubereats {
    background: #06bb64;
}

.navat-order-widget__service img {
    max-height: 36px;
    max-width: 80%;
    object-fit: contain;
}

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */
.navat-testimonials-section {
    padding: 110px 0 115px;
    background: var(--body-bg);
    position: relative;
}

.navat-testimonials-slider {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.navat-testimonial-slide {
    padding: 32px 0 0;
}

.navat-testimonial-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.navat-testimonial-col-img {
    flex: 0 0 416px;
    max-width: 416px;
    position: relative;
}

.navat-testimonial-col-img:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.navat-testimonial-col-content {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 15px;
}

/* Image with decorative quote marks */
.navat-testimonial-thumb {
    position: relative;
    overflow: visible;
}

.navat-testimonial-thumb::before,
.navat-testimonial-thumb::after {
    content: "";
    height: 167px;
    width: 45px;
    mix-blend-mode: multiply;
    position: absolute;
    top: -87px;
    background: url('assets/img/quote.png');
    z-index: 2;
}

.navat-testimonial-thumb::before {
    left: 20px;
}

.navat-testimonial-thumb::after {
    left: 82px;
}

.navat-testimonial-thumb img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.navat-testimonial-thumb-placeholder {
    width: 100%;
    aspect-ratio: 416 / 526;
    background: #ddd;
}

/* Content area */
.navat-testimonial-content {
    margin-left: 26px;
    padding-right: 0;
}

.navat-testimonial-section-title {
    margin-bottom: 20px;
}

.navat-testimonial-subtitle {
    color: var(--main-color);
    font-family: var(--satisfy-font) !important;
    font-weight: 400 !important;
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.navat-testimonial-title {
    font-size: 42px;
    font-weight: 600;
    font-family: "Barlow", sans-serif !important;
    color: var(--e-global-color-text) !important;
    line-height: 1.338;
}

.navat-testimonial-name {
    font-size: 28px;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 600;
    margin: 30px 0 10px;
    color: var(--heading-color);
}

.navat-testimonial-date {
    font-size: 26px;
    font-family: Roboto, Arial, sans-serif;
    color: rgba(27, 27, 27, 0.7);
    margin-bottom: 10px;
}

.navat-testimonial-stars {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fbbc04;
}

.navat-testimonial-stars .star-empty {
    color: #ddd;
}

.navat-testimonial-text {
    font-size: 28px;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
    color: rgba(27, 27, 27, 0.7);
    line-height: 40px;
}

.navat-testimonial-text p {
    margin: 0;
}

/* Navigation arrows — outside container, stacked vertically */
.navat-testimonial-nav {
    position: absolute;
    right: calc((100% - 1320px) / 2 - 120px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.navat-testimonial-nav button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #e0e5ea;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paragraph-color);
    transition: 0.3s;
}

.navat-testimonial-nav button:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.navat-testimonial-nav button svg {
    width: 20px;
    height: 14px;
}

/* Hide Swiper default pagination dots */
.navat-testimonials-slider .swiper-pagination {
    display: none !important;
}

/* ==========================================================================
   Gallery Slider Widget  (matches navatfoodtruck.com #what-we-make)
   ========================================================================== */
/* Swiper overrides */
.navat-gallery-slider {
    overflow: hidden;
}

.navat-gallery-slider .swiper-pagination {
    display: none !important;
}

/* ── Mosaic grid ─────────────────────────────────── */
.navat-gallery-mosaic {
    display: grid;
    grid-template-columns: 306px 1fr 306px;
    grid-template-rows: 225px 225px;
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.navat-gallery-slot--left-top    { grid-column: 1; grid-row: 1; }
.navat-gallery-slot--left-bottom { grid-column: 1; grid-row: 2; }
.navat-gallery-slot--center      { grid-column: 2; grid-row: 1 / 3; }
.navat-gallery-slot--right-top   { grid-column: 3; grid-row: 1; }
.navat-gallery-slot--right-bottom { grid-column: 3; grid-row: 2; }

/* When a column has only one slot, span both rows */
.navat-gallery-slot--span { grid-row: 1 / 3; }

.navat-gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 100%;
}

.navat-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Play button overlay ────────────────────────── */
.navat-gallery-play {
    display: block;
    position: relative;
    height: 100%;
}

.navat-gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
    transition: transform 0.3s;
    pointer-events: none;
}

.navat-gallery-play:hover .navat-gallery-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ── Video modal ─────────────────────────────────── */
.navat-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.navat-gallery-modal--open {
    display: flex;
}

.navat-gallery-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.85);
}

.navat-gallery-modal__body {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 90%;
    text-align: right;
}

.navat-gallery-modal__close {
    background: none;
    border: none;
    color: #999;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px 5px;
    transition: color 0.2s;
}

.navat-gallery-modal__close:hover {
    color: #fff;
}

.navat-gallery-modal__body video {
    width: 100%;
    max-height: 80vh;
    display: block;
    background: #000;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1500px) {
    .navat-testimonial-nav {
        right: 20px;
    }
}

@media (max-width: 1440px) {
    .navat-hero h1 {
        font-size: 74px !important;
        line-height: 80px !important;
    }
}

@media (max-width: 1199px) {
    .navat-hero h1 {
        font-size: 56px !important;
        line-height: 62px !important;
    }
    h2 { font-size: 38px; }
    .navat-testimonial-nav button { width: 60px; height: 60px; }
}

@media (max-width: 1024px) {
    /* HFE mobile nav: keep logo stable, dropdown as overlay */
    .ehf-header .elementor-widget-navigation-menu {
        position: static;
    }
    .ehf-header .elementor-widget-navigation-menu .hfe-nav-menu__layout-horizontal {
        position: static;
    }
    .ehf-header .hfe-nav-menu__toggle {
        flex-shrink: 0;
    }
    .ehf-header .hfe-dropdown {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 999;
    }
    /* Lock logo size on mobile so it doesn't jump when menu opens */
    .ehf-header .elementor-widget-site-logo {
        flex-shrink: 0;
        max-width: 115px;
    }
    .ehf-header .elementor-widget-site-logo img {
        width: auto;
        max-height: 50px;
    }
    /* Keep buttons + badge in one row */
    .ehf-header .elementor-element-9fbdec3 {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .ehf-header .elementor-element-9fbdec3 .navat-btn {
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .navat-header .logo img { height: 45px; }
    h1 { font-size: 56px; }
    h2 { font-size: 38px; }
    .navat-locations-grid--cols-3 .navat-location-card-wrap,
    .navat-locations-grid--cols-4 .navat-location-card-wrap { width: calc(50% - 15px); }
    .navat-gallery-mosaic {
        grid-template-columns: 200px 1fr 200px;
        grid-template-rows: 160px 160px;
        gap: 15px;
    }
    .navat-hero h1 {
        font-size: 50px !important;
        line-height: 56px !important;
    }
    .navat-testimonial-row {
        flex-direction: column;
    }
    .navat-testimonial-col-img {
        flex: 0 0 100%;
        max-width: 400px;
        padding-right: 0;
        margin: 0 auto 30px;
    }
    .navat-testimonial-col-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
    .navat-testimonial-content {
        margin-left: 0;
        padding-right: 0;
    }
    .navat-testimonial-nav {
        position: relative;
        top: auto;
        transform: none;
        flex-direction: row-reverse;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .navat-hero h1 {
        font-size: 45px !important;
        line-height: 50px !important;
    }
    .navat-hero p { font-size: 16px; }
    .navat-testimonials-section { padding: 60px 0 70px; }
    .navat-testimonial-title { font-size: 32px; }
    .navat-testimonial-name { font-size: 22px; }
    .navat-testimonial-date { font-size: 18px; }
    .navat-testimonial-text { font-size: 18px; line-height: 28px; }
    .navat-testimonial-nav button { width: 50px; height: 50px; }
    .navat-locations-grid--cols-2 .navat-location-card-wrap,
    .navat-locations-grid--cols-3 .navat-location-card-wrap,
    .navat-locations-grid--cols-4 .navat-location-card-wrap { width: 100%; max-width: 475px; }
    .navat-location-card-wrap { margin-bottom: 30px; }
    h6.navat-loc-card__info { text-align: center; }
    .navat-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 250px 180px;
        gap: 12px;
    }
    .navat-gallery-slot--left-top    { grid-column: 1; grid-row: 1; }
    .navat-gallery-slot--left-bottom { grid-column: 2; grid-row: 1; }
    .navat-gallery-slot--center      { grid-column: 1 / 3; grid-row: 2; }
    .navat-gallery-slot--right-top   { grid-column: 1; grid-row: 3; }
    .navat-gallery-slot--right-bottom { grid-column: 2; grid-row: 3; }
    .navat-gallery-play-icon { width: 50px; height: 50px; }
    .navat-order-widget__panel-row { flex-direction: column; }
    .navat-order-widget__title { font-size: 32px; }
    .navat-order-widget__select { height: 48px; font-size: 18px; }
    .navat-order-widget__tab { height: 48px; font-size: 18px; }
    .navat-order-widget__panel { padding: 20px; }
    .navat-order-widget__service { height: 50px; }
    .navat-footer .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .navat-order-select select {
        height: 46px;
        font-size: 18px;
    }
    .navat-order-tab-btn {
        height: 46px;
        font-size: 18px;
    }
    .navat-order-tab-content {
        padding: 20px;
    }
    .btn-delivery {
        height: 46px;
        width: calc(50% - 10px);
    }
    .navat-instagram .follow-btn {
        width: 150px;
        height: 43px;
    }
}

@media (max-width: 575px) {
    .navat-hero h1 {
        font-size: 38px !important;
        line-height: 44px !important;
    }

    footer .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* ==========================================================================
   NAVAT Button Widget
   ========================================================================== */
.elementor-widget-navat_button {
    margin-bottom: 0 !important;
}

.navat-btn-wrap {
    line-height: 0;
}

.navat-site a.navat-btn,
.navat-site a.navat-btn:visited {
    display: inline-block;
    text-decoration: none !important;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    line-height: 1;
    vertical-align: middle;
    box-sizing: border-box;
}

/* Sweep hover effect */
.elementor-button,
.navat-loc-card__btn {
    position: relative;
    overflow: hidden;
}

.elementor-button:after,
.navat-loc-card__btn:after {
    transition: .6s ease-in;
    z-index: 3;
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(30deg);
    transform-origin: top left;
    width: 0;
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.25);
}

.elementor-button:hover:after,
.navat-loc-card__btn:hover:after {
    width: 25%;
    left: 100%;
}

header {
    position: sticky !important;
    top: 0 !important;
    box-shadow: 0 4px 6px 0 rgba(12,0,46,.05);
    background: rgba(250,247,242,.9);
    transition: all 0.3s ease;
}

body:not(.scrolled).home header .hfe-nav-menu > li > a,
body:not(.scrolled).home header .hfe-nav-menu > li > div > a{
    color: #fff !important;
}

body:not(.scrolled).home header {
    position: fixed !important;
    left: 0;
    right: 0;
    background: none !important;
}

.sub-menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hfe-site-logo-set .hfe-site-logo-container {
    text-align: left !important;
}

@media (max-width: 767px) {
    header .hfe-nav-menu__layout-horizontal {
        top: 107px !important;
        border-radius: 0 !important;

    }

    header .hfe-nav-menu__layout-horizontal ul {
        border: none !important;
        background: #ff643e !important;
    }

    header .hfe-nav-menu__layout-horizontal ul > li {
        border-radius: 0 !important;
        background: transparent !important;
    }

    header .hfe-nav-menu__layout-horizontal ul > li > a,
    header .hfe-nav-menu__layout-horizontal ul > li > div > a {
        color: #fff !important;
        background: none !important;
        text-transform: uppercase !important;
        font-weight: 400 !important;
    }

    header .hfe-nav-menu__layout-horizontal ul .sub-menu a {
        text-transform: none !important;
    }

    .hfe-nav-menu__toggle {
        position: absolute;
        top: 5px;
        right: 0;
    }
}


