/*
Theme Name: LaPlatouri Restaurant
Theme URI: https://laplatouri.ro/
Author: Miruna Ionescu Cristina
Author URI: https://dafcode.com/
Description: Tema moderna pentru restaurantul La Platouri - meniu zilnic si WooCommerce
Version: 2.1
*/

/*=========================================================
  CSS VARIABLES
=========================================================*/

:root {
    --lp-primary:        #E86A28;
    --lp-primary-dark:   #C45018;
    --lp-primary-light:  #F28C58;
    --lp-primary-bg:     #FEF3EB;
    --lp-warm:           #F0AA50;
    --lp-warm-dark:      #CC8830;
    --lp-cream:          #FEF8F2;
    --lp-cream-dark:     #F8EFE0;
    --lp-ink:            #1C0F08;
    --lp-ink-mid:        #5C3D2E;
    --lp-ink-light:      #9C7A6A;
    --lp-surface:        #FFFFFF;
    --lp-border:         rgba(232, 106, 40, 0.18);
    --lp-border-light:   rgba(232, 106, 40, 0.09);
    --lp-shadow:         0 8px 32px rgba(28, 15, 8, 0.10);
    --lp-shadow-strong:  0 20px 60px rgba(28, 15, 8, 0.15);
    --lp-radius:         16px;
    --lp-radius-sm:      10px;
    --lp-radius-lg:      28px;
    --lp-header-height:  88px;
    --lp-transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);

    /* Compatibilitate cu clasele vechi mc- */
    --accent-color:      #E86A28;
    --mc-blue:           #E86A28;
    --mc-green:          #E86A28;
    --mc-orange:         #E86A28;
    --mc-ink:            #1C0F08;
    --mc-ink-strong:     #120A05;
    --mc-light:          #FEF8F2;
    --mc-slate:          #3D1F14;
    --mc-mist:           #F5E8D8;
    --mc-surface:        #FFFFFF;
    --mc-surface-alt:    #FBF2EA;
    --mc-border:         rgba(232, 106, 40, 0.18);
    --mc-card-radius:    16px;
    --mc-card-shadow:    0 8px 32px rgba(28, 15, 8, 0.10);
    --mc-card-shadow-strong: 0 20px 60px rgba(28, 15, 8, 0.15);
    --mc-gradient:       linear-gradient(135deg, #E86A28 0%, #F28C58 50%, #F0AA50 100%);
    --mc-gradient-soft:  linear-gradient(160deg, rgba(232, 106, 40, 0.07), rgba(240, 170, 80, 0.11));
    --mc-shadow:         0 20px 60px rgba(28, 15, 8, 0.15);
    --mc-header-height:  88px;
}

/*=========================================================
  RESET & GLOBAL
=========================================================*/

*, *::before, *::after {
    box-sizing: border-box;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

figure.aligncenter { text-align: center; }
.has-text-align-center { text-align: center; }
.accent-color-text { color: var(--lp-primary) !important; }

body {
    font-family: "Inter", "Work Sans", sans-serif;
    color: var(--lp-ink);
    background-color: var(--lp-cream);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", "Georgia", serif;
    color: var(--lp-ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

a {
    color: var(--lp-primary);
    transition: color var(--lp-transition);
}

a:hover {
    color: var(--lp-primary-dark);
}

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

/*=========================================================
  BUTTONS
=========================================================*/

.mc-btn,
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--lp-transition);
    white-space: nowrap;
}

.mc-btn-primary,
.lp-btn-primary {
    background: var(--lp-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 106, 40, 0.35);
}

.mc-btn-primary:hover,
.lp-btn-primary:hover {
    background: var(--lp-primary-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(232, 106, 40, 0.45);
    transform: translateY(-2px);
}

.mc-btn-outline,
.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border: 2px solid var(--lp-primary);
}

.mc-btn-outline:hover,
.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: #fff;
    transform: translateY(-2px);
}

.mc-btn-ghost,
.lp-btn-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}

.mc-btn-ghost:hover,
.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-color: #fff;
}

.mc-btn-whatsapp { background: #25D366; color: #fff; }
.mc-btn-whatsapp:hover { background: #1ebe5c; color: #fff; }
.mc-btn-facebook { background: #1877F2; color: #fff; }
.mc-btn-facebook:hover { background: #1464d8; color: #fff; }
.mc-btn-instagram { background: linear-gradient(135deg, #E1306C, #C13584, #833AB4); color: #fff; }
.mc-btn-instagram:hover { opacity: 0.9; color: #fff; }

/*=========================================================
  HEADER
=========================================================*/

#site-header {
    background: rgba(253, 248, 243, 0.97);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--lp-header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 2px 16px rgba(28, 15, 8, 0.06);
    backdrop-filter: blur(12px);
    transition: box-shadow var(--lp-transition), background var(--lp-transition);
}

body.scrolled #site-header {
    box-shadow: 0 4px 24px rgba(28, 15, 8, 0.12);
    background: rgba(253, 248, 243, 0.99);
}

body.admin-bar #site-header {
    top: 32px;
}

body.admin-bar #main-wrapper {
    padding-top: calc(var(--lp-header-height) + 32px);
}

#site-header .container {
    width: 100%;
}

#site-header #site-header-logo img {
    max-height: 68px;
    width: auto;
}

/* Navigation */
#main-navigation > ul > li > a {
    font-size: 15px;
    padding: 8px 16px;
    color: var(--lp-ink);
    font-weight: 600;
    border-radius: 999px;
    transition: all var(--lp-transition);
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

#main-navigation > ul > li > a:hover {
    color: var(--lp-primary);
    background: var(--lp-primary-bg);
}

#main-navigation > ul > li.current-menu-item > a,
#main-navigation > ul > li.current-menu-ancestor > a {
    color: var(--lp-primary);
    background: var(--lp-primary-bg);
    font-weight: 700;
}

#site-header #main-navigation > ul > li:hover .dropdown-menu {
    display: block;
}

#site-header #main-navigation > ul > li .dropdown-menu .dropdown-item.active {
    background: var(--lp-primary);
}

/* ── Mobile hamburger ── */
#menu-toggle-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-left: auto;
    cursor: pointer;
    border-radius: 8px;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}
#menu-toggle-wrapper:hover { background: var(--lp-primary-bg); }
#menu-toggle-wrapper span,
#menu-toggle-wrapper span::before,
#menu-toggle-wrapper span::after {
    display: block;
    height: 2px;
    background: var(--lp-ink, #1a1a1a);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    position: relative;
}
#menu-toggle-wrapper span::before,
#menu-toggle-wrapper span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
}
#menu-toggle-wrapper span::before { top: -7px; }
#menu-toggle-wrapper span::after  { top:  7px; }

/* Transformare X când e deschis */
#menu-toggle-wrapper.active span           { background: transparent; }
#menu-toggle-wrapper.active span::before   { transform: translateY(7px) rotate(45deg); }
#menu-toggle-wrapper.active span::after    { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer (sidebar din dreapta) — removed; unified block below ── */

/* Overlay întunecat în spate */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }

/* Stiluri linkuri în drawer */
#mobile-menu-wrapper .mobile-menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#mobile-menu-wrapper .mobile-menu-content > ul > li > a,
#mobile-menu-wrapper .mobile-menu-content > div > ul > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--lp-ink, #1a1a1a);
    text-decoration: none;
    border-bottom: 1px solid var(--lp-border-light, rgba(0,0,0,.06));
    transition: color .2s, background .2s;
}
#mobile-menu-wrapper .mobile-menu-content > ul > li > a:hover,
#mobile-menu-wrapper .mobile-menu-content > div > ul > li > a:hover {
    color: var(--lp-primary);
    background: var(--lp-primary-bg);
}
#mobile-menu-wrapper .mobile-menu-content li.current-menu-item > a {
    color: var(--lp-primary);
}

/* Sub-meniu */
#mobile-menu-wrapper .sub-menu { padding-left: 16px; }
#mobile-menu-wrapper .sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 15px;
    color: var(--lp-ink-mid, #666);
    text-decoration: none;
    border-bottom: 1px solid var(--lp-border-light, rgba(0,0,0,.04));
}
#mobile-menu-wrapper .sub-menu { display: none; }
#mobile-menu-wrapper .menu-item-has-children.submenu-open > .sub-menu { display: block; }

/* Buton submeniu */
.mc-submenu-toggle {
    background: none;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    color: var(--lp-ink-mid);
    line-height: 1;
}
.mc-submenu-toggle::after { content: '›'; }
.menu-item-has-children { position: relative; }
.menu-item-has-children.submenu-open > .mc-submenu-toggle { transform: rotate(90deg); }

/* WooCommerce Cart in Header */
.lp-header-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--lp-primary-bg);
    border: 1.5px solid var(--lp-border);
    border-radius: 999px;
    color: var(--lp-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--lp-transition);
    white-space: nowrap;
}

.lp-header-cart:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

.lp-header-cart svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lp-cart-count {
    background: var(--lp-primary);
    color: #fff;
    border-radius: 999px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 5px;
    transition: all var(--lp-transition);
}

.lp-header-cart:hover .lp-cart-count {
    background: #fff;
    color: var(--lp-primary);
}

/* Mobile Menu Toggle */
#menu-toggle-wrapper {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#menu-toggle-wrapper span {
    background: var(--lp-primary);
    height: 2.5px;
    width: 28px;
    border-radius: 2px;
    transition: var(--lp-transition);
    display: block;
}

#menu-toggle-wrapper span:before,
#menu-toggle-wrapper span:after {
    content: "";
    position: absolute;
    width: 100%;
    background: var(--lp-primary);
    height: 2.5px;
    border-radius: 2px;
    left: 0;
}

#menu-toggle-wrapper span:before { top: -10px; }
#menu-toggle-wrapper span:after { top: 10px; }

#menu-toggle-wrapper.active span:before { opacity: 0; }
#menu-toggle-wrapper.active span { transform: rotate(45deg); background: var(--lp-ink); }
#menu-toggle-wrapper.active span:after { transform: rotate(-95deg); top: 0; background: var(--lp-ink); }

/* ── Drawer header (logo + X) ── */
.lp-drawer-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--lp-border-light);
    background: var(--lp-surface);
}
.lp-drawer-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.lp-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    background: transparent;
    color: var(--lp-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--lp-transition), color var(--lp-transition);
    padding: 0;
    flex-shrink: 0;
}
.lp-drawer-close:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

/* Drawer cart footer */
.lp-drawer-cart {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--lp-border-light);
    margin-top: 8px;
}
.lp-drawer-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-ink);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--lp-border);
    transition: background var(--lp-transition), color var(--lp-transition), border-color var(--lp-transition);
}
.lp-drawer-cart-link:hover {
    background: var(--lp-primary-bg);
    color: var(--lp-primary);
    border-color: var(--lp-primary);
}

/* Mobile Menu */
#mobile-menu-wrapper {
    background: var(--lp-surface);
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100%;
    width: 70vw;
    max-width: 380px;
    padding-top: 72px;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    border-left: 1px solid var(--lp-border);
    box-shadow: -12px 0 40px rgba(28, 15, 8, 0.15);
}

body.admin-bar #mobile-menu-wrapper { padding-top: 132px; }

#mobile-menu-wrapper.active { right: 0; }

#mobile-menu-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#mobile-menu-wrapper ul li a {
    color: var(--lp-ink);
    text-decoration: none;
}

#mobile-menu-wrapper .mobile-menu-content > ul > li > a {
    font-weight: 600;
    font-size: 16px;
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--lp-border-light);
    transition: color var(--lp-transition), background var(--lp-transition);
}

#mobile-menu-wrapper .mobile-menu-content > ul > li > a:hover {
    color: var(--lp-primary);
    background: var(--lp-primary-bg);
}

#mobile-menu-wrapper .mobile-menu-content > ul > li > a.dropdown-toggle::after {
    display: none;
}

#mobile-menu-wrapper .dropdown-menu,
#mobile-menu-wrapper .sub-menu {
    background: var(--lp-cream);
    position: relative;
    margin: 0;
    border: none;
    padding: 0;
}

#mobile-menu-wrapper .dropdown-menu a,
#mobile-menu-wrapper .sub-menu a {
    padding: 12px 40px;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid var(--lp-border-light);
}

#mobile-menu-wrapper .menu-item-has-children { position: relative; }
#mobile-menu-wrapper .menu-item-has-children > a { padding-right: 60px; }

#mobile-menu-wrapper .mc-submenu-toggle {
    position: absolute;
    right: 16px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1.5px solid var(--lp-border);
    background: #fff;
    color: var(--lp-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all var(--lp-transition);
}

#mobile-menu-wrapper .mc-submenu-toggle::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

#mobile-menu-wrapper .menu-item-has-children.submenu-open > .mc-submenu-toggle {
    background: var(--lp-primary-bg);
    transform: rotate(180deg);
}

#mobile-menu-wrapper .menu-item-has-children .sub-menu,
#mobile-menu-wrapper .menu-item-has-children .dropdown-menu { display: none; }

#mobile-menu-wrapper .menu-item-has-children.submenu-open .sub-menu,
#mobile-menu-wrapper .menu-item-has-children.submenu-open .dropdown-menu { display: block; }

/*=========================================================
  MAIN WRAPPER
=========================================================*/

#main-wrapper {
    background: var(--lp-cream);
    width: 100%;
    padding-top: var(--lp-header-height);
    overflow: hidden;
}

.mc-home { overflow: hidden; }

/*=========================================================
  SECTION GLOBALS
=========================================================*/

.mc-section {
    padding: 80px 0;
}

.mc-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.mc-section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
    color: var(--lp-ink);
}

.mc-section-subtitle {
    font-size: 17px;
    color: var(--lp-ink-mid);
    line-height: 1.7;
}

.mc-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-primary);
    background: var(--lp-primary-bg);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.mc-eyebrow-dark {
    color: var(--lp-primary);
}

/*=========================================================
  HERO
=========================================================*/

.mc-hero,
.lp-hero {
    position: relative;
    min-height: calc(100vh - var(--lp-header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0602;
}

/* Grain texture overlay */
.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center top;
    transform: none;
}

.lp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 4, 1, 0.78);
}

.mc-hero-slide {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.mc-hero-title,
.lp-hero-title {
    font-size: clamp(36px, 6vw, 72px);
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.lp-hero-title span {
    color: var(--lp-warm);
}

.mc-hero-lead,
.lp-hero-lead {
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.65;
}

.mc-hero-actions,
.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── Hero contact ── */
.lp-hero-contact {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.lp-hero-phone {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s;
}
.lp-hero-phone:hover { color: #E8A96A; }
.lp-hero-program {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

/* ── Hero slider ── */
.lp-hero-slide {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
}
.lp-hero-slide--active {
    display: flex;
}
/* Conținutul slide-ului (titlu, butoane) e în .mc-hero-slide care e relativ */
#lp-hero-slider {
    position: relative;
    min-height: calc(100vh - var(--lp-header-height));
}
#lp-hero-slider .mc-hero-wave,
#lp-hero-slider .lp-hero-scroll {
    z-index: 10;
}

/* Săgeți */
.lp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}
.lp-hero-arrow:hover {
    background: var(--lp-primary, #E86A28);
    border-color: var(--lp-primary, #E86A28);
}
.lp-hero-arrow--prev { left: 24px; }
.lp-hero-arrow--next { right: 24px; }

/* Indicatori puncte */
.lp-hero-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}
.lp-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.lp-hero-dot--active {
    background: #fff;
    transform: scale(1.35);
}

/* Tranziție fade între slide-uri */
.lp-hero-slide {
    opacity: 0;
    transition: opacity .6s ease;
}
.lp-hero-slide--active {
    opacity: 1;
}

@media (max-width: 600px) {
    .lp-hero-arrow { width: 40px; height: 40px; }
    .lp-hero-arrow--prev { left: 10px; }
    .lp-hero-arrow--next { right: 10px; }
    .lp-hero-dots { bottom: 80px; }
}

/* Hero wave */
.mc-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 3;
    background: var(--lp-cream);
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* Hero bubbles (decorative) */
.mc-hero-bubbles { display: none; }

/* Page Hero (interior pages) */
.mc-page-hero {
    padding: 80px 0 60px;
    background: var(--lp-primary-bg);
    border-bottom: 1px solid var(--lp-border);
}

.mc-page-hero--home {
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

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

.mc-page-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    color: var(--lp-ink);
}

.mc-page-lead {
    font-size: 18px;
    color: var(--lp-ink-mid);
    margin-bottom: 32px;
}

.mc-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mc-page-media {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-strong);
}

.mc-page-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*=========================================================
  MENIU ZILEI — Daily Menu (Featured Section)
=========================================================*/

/* ── Section wrapper ────────────────────────────── */
.lp-daily-menu {
    background: linear-gradient(158deg, #1C120A 0%, #2E1C0C 55%, #1A0F07 100%);
    padding: 100px 0 96px;
    position: relative;
    overflow: hidden;
}

/* Atmospheric glow */
.lp-daily-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 450px at 5% 70%,  rgba(232,169,106,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 500px 400px at 95% 10%, rgba(232, 106, 40,0.09)   0%, transparent 60%),
        radial-gradient(ellipse 400px 300px at 55% 105%,rgba(232,169,106,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Wave separator */
.lp-daily-menu-wave {
    position: absolute;
    top: -1px; left: 0; right: 0;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
}
.lp-daily-menu-wave svg { display: block; width: 100%; height: 60px; }

/* ── Badge ─────────────────────────────────────── */
.lp-daily-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,169,106,0.11);
    border: 1px solid rgba(232,169,106,0.26);
    color: #F0AA50;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.lp-daily-badge-dot {
    width: 6px; height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    flex-shrink: 0;
    animation: lp-pulse-green 2.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { box-shadow: 0 0 0 0   rgba(76,175,80,0.6); }
    50%       { box-shadow: 0 0 0 8px rgba(76,175,80,0);   }
}

/* ── Split layout ───────────────────────────────── */
.lp-daily-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── LEFT column ────────────────────────────────── */
.lp-daily-left { position: relative; }

.lp-daily-watermark {
    position: absolute;
    top: -24px; left: -16px;
    font-family: "Playfair Display", serif;
    font-size: clamp(72px, 12vw, 148px);
    font-weight: 800;
    font-style: italic;
    color: rgba(255,255,255,0.022);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.lp-daily-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 10px 0 16px;
    position: relative;
    z-index: 1;
}

.lp-daily-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.52);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 390px;
    position: relative;
    z-index: 1;
}

.lp-daily-date-row,
.lp-daily-program-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.60);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.lp-daily-program-row { color: rgba(255,255,255,0.75); }

.lp-daily-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 28px;
    position: relative;
    z-index: 1;
}

.lp-daily-countdown-label,
.lp-daily-countdown-end {
    font-size: 12px;
    color: rgba(255,255,255,0.42);
    white-space: nowrap;
}

.lp-daily-countdown-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.10);
    border-radius: 2px;
    overflow: hidden;
}

.lp-daily-countdown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lp-primary), #F0AA50);
    border-radius: 2px;
}

.lp-daily-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.lp-btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    color: rgba(255,255,255,0.80);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lp-btn-ghost-light:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.38);
    color: #fff;
}

/* ── RIGHT column ───────────────────────────────── */
.lp-daily-right { position: relative; z-index: 2; }

.lp-daily-right::before {
    content: '';
    position: absolute;
    inset: -50px -30px;
    background: radial-gradient(ellipse at center, rgba(232,169,106,0.09) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* ══ ELEGANT MENU CARD ══════════════════════════════ */
.lp-mce {
    background: #FDF8F2;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,0.06),
        0 8px 28px  rgba(0,0,0,0.32),
        0 28px 72px rgba(0,0,0,0.40),
        0 0 0 1px   rgba(232,169,106,0.18);
}

/* Card photo */
.lp-mce-photo {
    position: relative;
    height: 180px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}
.lp-mce-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.lp-mce:hover .lp-mce-photo img { transform: scale(1.04); }
.lp-mce-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(30,15,5,0.55) 100%);
    pointer-events: none;
}
.lp-mce--has-photo .lp-mce-stripe { border-radius: 0; }

/* Animated gradient top stripe */
.lp-mce-stripe {
    height: 4px;
    background: linear-gradient(90deg, #E86A28, #F0AA50, #E86A28);
    background-size: 300% 100%;
    animation: lp-stripe 5s ease-in-out infinite;
}
@keyframes lp-stripe {
    0%, 100% { background-position: 0%   center; }
    50%       { background-position: 100% center; }
}

/* Card header — terracotta */
.lp-mce-header {
    background: linear-gradient(135deg, #E86A28 0%, #C04E18 100%);
    padding: 16px 24px;
    text-align: center;
}

.lp-mce-header-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
    margin-bottom: 6px;
}

.lp-mce-header-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}

.lp-mce-header-program {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,0.60);
}

/* Courses */
.lp-mce-courses { padding: 4px 0; }

.lp-mce-course {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 22px;
    border-bottom: 1px solid rgba(28,15,8,0.07);
    transition: background 0.15s;
}
.lp-mce-course:last-child { border-bottom: none; }
.lp-mce-course:hover { background: rgba(232, 106, 40,0.04); }

.lp-mce-course-icon {
    width: 30px; height: 30px;
    background: #F5EDE0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-mce-course-body { flex: 1; min-width: 0; }

.lp-mce-course-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #E86A28;
    margin-bottom: 3px;
}

.lp-mce-course-name {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
    color: #1C0F08;
    line-height: 1.3;
}

.lp-mce-course-desc {
    font-size: 13px;
    color: #9C7A6A;
    margin-top: 3px;
    line-height: 1.5;
}

/* Footer */
.lp-mce-footer {
    background: #F5EDE0;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 2px solid rgba(232, 106, 40,0.12);
}

.lp-mce-price-block {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.lp-mce-price {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 800;
    color: #E86A28;
    line-height: 1;
}

.lp-mce-currency {
    font-size: 16px;
    font-weight: 700;
    color: #5C3D2E;
    line-height: 1;
}

.lp-mce-price-note {
    font-size: 11px;
    color: #9C7A6A;
    margin-top: 2px;
}

/* ── Fallback: centered header ──────────────────── */
.lp-daily-fallback-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ── Fallback: daily item grid ──────────────────── */
.lp-daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.lp-menu-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.lp-menu-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(232,169,106,0.40);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    transform: translateY(-5px);
}

.lp-menu-card-img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; display: block;
}

.lp-menu-card-img-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center;
    justify-content: center; font-size: 48px;
}

.lp-menu-card-body {
    padding: 20px; flex: 1;
    display: flex; flex-direction: column;
}

.lp-menu-card-category {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #F0AA50; margin-bottom: 8px;
}

.lp-menu-card-title {
    font-size: 19px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
    font-family: "Playfair Display", serif;
    line-height: 1.3;
}

.lp-menu-card-desc {
    font-size: 14px; color: rgba(255,255,255,0.56);
    line-height: 1.6; flex: 1; margin-bottom: 16px;
}

.lp-menu-card-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.lp-menu-card-price {
    font-size: 22px; font-weight: 700;
    color: #F0AA50;
    font-family: "Playfair Display", serif;
}

.lp-menu-card-price .lp-price-unit {
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,0.45);
    font-family: "Inter", sans-serif;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991.98px) {
    .lp-daily-split { grid-template-columns: 1fr; gap: 48px; }
    .lp-daily-right { order: -1; }
    .lp-daily-watermark { display: none; }
    .lp-daily-title { font-size: 36px; }
    .lp-daily-subtitle { max-width: 100%; }
}

@media (max-width: 575.98px) {
    .lp-daily-menu { padding: 80px 0 72px; }
    .lp-mce-header { padding: 20px; }
    .lp-mce-courses { padding: 4px 0; }
    .lp-mce-course  { padding: 14px 20px; }
    .lp-mce-footer  { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
    .lp-mce-price   { font-size: 34px; }
    .lp-daily-actions { flex-direction: column; }
    .lp-daily-actions .mc-btn,
    .lp-daily-actions .lp-btn-ghost-light { width: 100%; justify-content: center; }
}


/* Daily Menu Full Package Card */
.lp-menu-package {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    border-radius: var(--lp-radius-lg);
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.lp-menu-package-content h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
}

.lp-menu-package-content p {
    color: rgba(255,255,255,0.82);
    margin: 0;
}

.lp-menu-package-price {
    text-align: right;
}

.lp-menu-package-price .price-amount {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.lp-menu-package-price .price-label {
    font-size: 14px;
    opacity: 0.75;
}

/*=========================================================
  MENU CATEGORIES (WooCommerce)
=========================================================*/

.lp-categories {
    padding: 80px 0;
    background: var(--lp-cream-dark);
}

.lp-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.lp-category-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--lp-ink);
    border: 1.5px solid transparent;
    transition: all var(--lp-transition);
    display: block;
}

.lp-category-card:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 28px rgba(232, 106, 40, 0.12);
    transform: translateY(-4px);
    color: var(--lp-primary);
}

.lp-category-icon {
    width: 64px;
    height: 64px;
    background: var(--lp-primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    transition: all var(--lp-transition);
}

.lp-category-card:hover .lp-category-icon {
    background: var(--lp-primary);
}

.lp-category-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    font-family: "Playfair Display", serif;
}

.lp-category-count {
    font-size: 13px;
    color: var(--lp-ink-light);
}

/*=========================================================
  FEATURES / DE CE NOI
=========================================================*/

.mc-quality,
.lp-features {
    padding: 80px 0;
    background: var(--lp-surface);
}

.mc-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.mc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--lp-ink-mid);
    border-bottom: 1px solid var(--lp-border-light);
}

.mc-checklist li::before {
    content: '';
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--lp-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

.mc-quality-grid,
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mc-quality-card,
.lp-feature-card {
    background: var(--lp-cream);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    border: 1.5px solid var(--lp-border-light);
    transition: all var(--lp-transition);
}

.mc-quality-card:hover,
.lp-feature-card:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 24px rgba(232, 106, 40, 0.10);
}

.mc-quality-card h3,
.lp-feature-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 6px;
}

.mc-quality-card p,
.lp-feature-card p {
    font-size: 14px;
    color: var(--lp-ink-mid);
    margin: 0;
}

/*=========================================================
  PROCESS / PASI
=========================================================*/

.mc-process {
    padding: 80px 0;
    background: var(--lp-cream);
}

.mc-process-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    padding: 36px 28px;
    border: 1.5px solid var(--lp-border-light);
    height: 100%;
    transition: all var(--lp-transition);
    position: relative;
}

.mc-process-card:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 28px rgba(232, 106, 40, 0.10);
    transform: translateY(-4px);
}

.mc-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--lp-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.mc-process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--lp-ink);
}

.mc-process-card p {
    color: var(--lp-ink-mid);
    margin: 0;
    font-size: 15px;
}

/*=========================================================
  SERVICES (folosit in alte pagini)
=========================================================*/

.mc-services { padding: 80px 0; background: var(--lp-cream); }

.mc-services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mc-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mc-service-row--reverse {
    direction: rtl;
}

.mc-service-row--reverse > * {
    direction: ltr;
}

.mc-service-media {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    aspect-ratio: 4/3;
}

.mc-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mc-service-media-fallback {
    width: 100%;
    height: 100%;
    background: var(--lp-cream-dark);
}

.mc-service-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 12px;
}

.mc-service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.mc-service-text { margin-bottom: 24px; color: var(--lp-ink-mid); }

.mc-services-actions { text-align: center; margin-top: 48px; }

/*=========================================================
  PRICE LIST (pretul zilei / tarifare)
=========================================================*/

.mc-service-prices {
    padding: 80px 0;
    background: var(--lp-surface);
}

.mc-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.mc-gallery-header h2 {
    font-size: 32px;
    margin: 0;
}

.mc-price-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mc-price-search-input {
    border: 1.5px solid var(--lp-border);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    background: var(--lp-cream);
    color: var(--lp-ink);
    outline: none;
    transition: border-color var(--lp-transition);
}

.mc-price-search-input:focus {
    border-color: var(--lp-primary);
}

.mc-price-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mc-price-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-border-light);
    font-size: 15px;
}

.mc-price-item-value {
    font-weight: 700;
    color: var(--lp-primary);
    white-space: nowrap;
    margin-left: 16px;
}

.mc-price-empty {
    text-align: center;
    color: var(--lp-ink-light);
    padding: 40px;
}

/*=========================================================
  TESTIMONIALE
=========================================================*/

.mc-testimonials {
    padding: 80px 0;
    background: var(--lp-cream-dark);
    overflow: hidden;
}

.mc-testimonials-marquee {
    position: relative;
    overflow: hidden;
}

.mc-testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    scroll-behavior: smooth;
}

.mc-testimonials-track::-webkit-scrollbar { display: none; }

.mc-testimonial-card {
    flex: 0 0 340px;
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    padding: 28px;
    border: 1.5px solid var(--lp-border-light);
    scroll-snap-align: start;
    transition: all var(--lp-transition);
}

.mc-testimonial-card:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 28px rgba(232, 106, 40, 0.10);
}

.mc-testimonial-text {
    font-size: 15px;
    color: var(--lp-ink-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.mc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mc-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--lp-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--lp-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.mc-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-testimonial-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--lp-ink);
}

.mc-testimonial-role {
    font-size: 13px;
    color: var(--lp-ink-light);
}

.mc-testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.mc-testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-primary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lp-transition);
}

.mc-testimonials-arrow:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

/*=========================================================
  CLIENTS MARQUEE
=========================================================*/

.mc-clients {
    padding: 60px 0;
    background: var(--lp-surface);
}

.mc-clients-marquee { overflow: hidden; }

.mc-clients-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.mc-clients-track::-webkit-scrollbar { display: none; }

.mc-client-card {
    flex: 0 0 160px;
    background: var(--lp-cream);
    border-radius: var(--lp-radius-sm);
    padding: 20px 16px;
    text-align: center;
    border: 1.5px solid var(--lp-border-light);
}

.mc-client-logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter var(--lp-transition);
}

.mc-client-card:hover .mc-client-logo img {
    filter: none;
}

.mc-client-name {
    font-size: 12px;
    color: var(--lp-ink-light);
    margin-top: 8px;
}

/*=========================================================
  CTA / CONTACT
=========================================================*/

.mc-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--lp-primary-bg) 0%, var(--lp-cream) 100%);
}

.mc-cta-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius-lg);
    padding: 56px 48px;
    box-shadow: var(--lp-shadow);
    border: 1.5px solid var(--lp-border-light);
}

.mc-cta-card .mc-eyebrow { margin-bottom: 16px; }

.mc-cta-card h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 16px;
    color: var(--lp-ink);
}

.mc-cta-card p {
    color: var(--lp-ink-mid);
    font-size: 16px;
}

.mc-contact-card {
    background: var(--lp-cream);
    border-radius: var(--lp-radius);
    padding: 24px;
    border: 1.5px solid var(--lp-border);
    margin-bottom: 20px;
}

.mc-contact-link {
    display: block;
    color: var(--lp-ink);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-border-light);
    transition: color var(--lp-transition);
}

.mc-contact-link:last-of-type { border-bottom: none; }
.mc-contact-link:hover { color: var(--lp-primary); }

.mc-contact-meta {
    font-size: 14px;
    color: var(--lp-ink-mid);
    padding: 10px 0;
    border-top: 1px solid var(--lp-border-light);
}

.mc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/*=========================================================
  FOOTER
=========================================================*/

.mc-footer {
    background: var(--lp-ink);
    color: rgba(255,255,255,0.80);
    padding-top: 60px;
}

.mc-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    align-items: start;
}

.mc-footer-brand img {
    max-height: 64px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.mc-footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 360px;
}

.mc-footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.mc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mc-footer-links li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mc-footer-links li:last-child { border-bottom: none; }

.mc-footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--lp-transition);
}

.mc-footer-links a:hover { color: var(--lp-warm); }

.mc-footer-links span {
    color: rgba(255,255,255,0.40);
    font-size: 13px;
    margin-right: 4px;
}

.mc-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mc-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mc-footer-actions .mc-btn {
    font-size: 13px;
    padding: 9px 18px;
}

.mc-footer-bottom {
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.40);
    text-align: center;
}

.mc-footer-contact-card h4 { margin-bottom: 16px; }

/* WhatsApp Float */
.mc-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 500;
    transition: all var(--lp-transition);
    text-decoration: none;
}

.mc-whatsapp-float:hover {
    background: #1ebe5c;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.mc-whatsapp-icon svg { width: 28px; height: 28px; }

/*=========================================================
  WOOCOMMERCE
=========================================================*/

/* Product Cards */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    border: 1.5px solid var(--lp-border-light);
    overflow: hidden;
    transition: all var(--lp-transition);
    padding: 0 !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 32px rgba(232, 106, 40, 0.12);
    transform: translateY(-4px);
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    margin: 0;
    border-radius: 0;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-family: "Playfair Display", serif;
    font-size: 18px !important;
    padding: 16px 16px 4px !important;
    color: var(--lp-ink);
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: var(--lp-primary) !important;
    font-weight: 700;
    font-size: 17px;
    padding: 0 16px;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
    background: var(--lp-primary) !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-weight: 600;
    margin: 12px 16px 16px;
    padding: 10px 20px !important;
    transition: all var(--lp-transition) !important;
    width: calc(100% - 32px);
    display: block;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
    background: var(--lp-primary-dark) !important;
    transform: translateY(-2px);
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--lp-primary) !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    transition: all var(--lp-transition) !important;
    border: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--lp-primary-dark) !important;
    color: #fff !important;
}

/* Sale Badge */
.woocommerce span.onsale {
    background: var(--lp-primary) !important;
    border-radius: 999px !important;
    min-height: auto !important;
    line-height: 1.8 !important;
    padding: 3px 12px !important;
}

/* Cart */
.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-size: 20px;
    color: var(--lp-ink);
}

.woocommerce table.shop_table {
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--lp-border-light) !important;
}

.woocommerce table.shop_table th {
    background: var(--lp-cream);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-ink-mid);
}

/* Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1.5px solid var(--lp-border) !important;
    border-radius: var(--lp-radius-sm) !important;
    padding: 12px 16px !important;
    transition: border-color var(--lp-transition) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--lp-primary) !important;
    box-shadow: 0 0 0 3px rgba(232, 106, 40, 0.10) !important;
    outline: none !important;
}

/* Order */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-top-color: var(--lp-primary) !important;
    background: var(--lp-primary-bg) !important;
}

.woocommerce-page .wc-forward,
.woocommerce .wc-forward {
    background: var(--lp-primary) !important;
    color: #fff !important;
}

/*=========================================================
  PAGE TEMPLATES
=========================================================*/

/* Daily Menu Page */
#mc-daily-menu { padding-bottom: 60px; }

.mc-daily-menu-section {
    padding: 60px 0;
}

.mc-menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.mc-menu-item {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    overflow: hidden;
    border: 1.5px solid var(--lp-border-light);
    transition: all var(--lp-transition);
    display: flex;
    flex-direction: column;
}

.mc-menu-item:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 28px rgba(232, 106, 40, 0.12);
    transform: translateY(-4px);
}

.mc-menu-item-content {
    padding: 24px;
    flex: 1;
}

.mc-menu-item-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--lp-ink);
}

.mc-menu-item-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-top: 16px;
    font-family: "Playfair Display", serif;
}

.mc-menu-item-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Meniu Zilei Page (structured) */
.lp-meniu-zilei-page {
    padding: 60px 0;
}

.lp-meniu-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--lp-border-light);
    box-shadow: var(--lp-shadow);
    margin-bottom: 32px;
}

.lp-meniu-card-header {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    color: #fff;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.lp-meniu-card-header h2 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.lp-meniu-card-date {
    font-size: 15px;
    opacity: 0.82;
}

.lp-meniu-card-body {
    padding: 36px;
}

.lp-meniu-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.lp-meniu-course {
    background: var(--lp-cream);
    border-radius: var(--lp-radius-sm);
    padding: 20px;
    border: 1px solid var(--lp-border-light);
}

.lp-meniu-course-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-primary);
    margin-bottom: 8px;
}

.lp-meniu-course-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--lp-ink);
    font-family: "Playfair Display", serif;
}

.lp-meniu-course-desc {
    font-size: 13px;
    color: var(--lp-ink-mid);
    margin-top: 4px;
}

.lp-meniu-course-sep {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--lp-primary);
    margin: 8px 0 4px;
    text-transform: uppercase;
}

.lp-meniu-course-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    margin-left: 8px;
}

.lp-mce-course-sep {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin: 6px 0 3px;
    opacity: 0.7;
}

.lp-meniu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1.5px solid var(--lp-border-light);
    flex-wrap: wrap;
    gap: 16px;
}

.lp-meniu-pret {
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-primary);
    font-family: "Playfair Display", serif;
}

.lp-meniu-program {
    font-size: 14px;
    color: var(--lp-ink-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* General page */
.mc-page { min-height: 60vh; }
.mc-page-intro { max-width: 640px; margin: 20px auto 0; }

/*=========================================================
  STAGGER ANIMATION
=========================================================*/

.mc-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mc-stagger.is-visible > * { opacity: 1; transform: none; }

.mc-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.mc-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.mc-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.mc-stagger.is-visible > *:nth-child(4) { transition-delay: 0.20s; }
.mc-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.mc-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; }

/*=========================================================
  UTILITY
=========================================================*/

.wpcf7-list-item { margin-left: 0; }

.wpcf7-submit {
    background: var(--lp-primary);
    color: #fff;
    border-radius: 999px;
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--lp-transition);
}

.wpcf7-submit:hover {
    background: var(--lp-primary-dark);
}

/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width: 991.98px) {
    .mc-page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .mc-page-hero-media { display: none; }
    .mc-service-row,
    .mc-service-row--reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
    .mc-footer-top { grid-template-columns: 1fr; gap: 32px; }
    .lp-menu-package { flex-direction: column; text-align: center; }
    .lp-menu-package-price { text-align: center; }
    .mc-quality-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
    .mc-section { padding: 56px 0; }
    .mc-cta-card { padding: 36px 24px; }
    .mc-quality-grid { grid-template-columns: 1fr 1fr; }
    .lp-daily-grid { grid-template-columns: 1fr; }
    .lp-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .mc-footer-top { gap: 24px; }
    .lp-meniu-card-header { padding: 20px 24px; }
    .lp-meniu-card-body { padding: 24px; }
    .lp-meniu-courses { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    :root { --lp-header-height: 72px; --mc-header-height: 72px; }
    .lp-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-quality-grid { grid-template-columns: 1fr; }
    .lp-hero-actions,
    .mc-hero-actions { flex-direction: column; }
    .mc-btn, .lp-btn { width: 100%; justify-content: center; }
    .lp-menu-package { padding: 28px 20px; }
    .mc-testimonial-card { flex: 0 0 280px; }
}

@keyframes spin { to { transform: rotate(360deg); } }

/*=========================================================
  PROMO BAR
=========================================================*/

.lp-promo-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: linear-gradient(90deg, var(--lp-primary) 0%, var(--lp-warm-dark) 50%, var(--lp-primary) 100%);
    background-size: 200% 100%;
    animation: lp-bar-shimmer 5s linear infinite;
    color: #fff;
    text-align: center;
    padding: 10px 48px 10px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.lp-promo-bar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 10px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.lp-promo-bar a:hover { opacity: 0.82; color: #fff; }

.lp-promo-close {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 4px 6px;
    transition: color 0.2s;
    border-radius: 4px;
}

.lp-promo-close:hover { color: #fff; background: rgba(255,255,255,0.12); }

body.has-promo #site-header   { top: var(--lp-promo-h, 42px); }
body.has-promo.admin-bar #site-header { top: calc(var(--lp-promo-h, 42px) + 32px); }
body.has-promo #main-wrapper  { padding-top: calc(var(--lp-header-height) + var(--lp-promo-h, 42px)); }
body.has-promo.admin-bar #main-wrapper { padding-top: calc(var(--lp-header-height) + var(--lp-promo-h, 42px) + 32px); }
body.has-promo #mobile-menu-wrapper { padding-top: calc(var(--lp-header-height) + var(--lp-promo-h, 42px) + 20px); }

@keyframes lp-bar-shimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/*=========================================================
  HERO — PARALLAX + DECORATIONS
=========================================================*/

.lp-hero {
    will-change: transform;
}

.lp-hero-bg {
    will-change: transform;
    transition: transform 0s linear;
}

/* Floating decorative food icons */
.lp-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.lp-decor-item {
    position: absolute;
    font-size: 40px;
    opacity: 0.12;
    animation: lp-float 6s ease-in-out infinite;
    user-select: none;
}

.lp-decor-item:nth-child(1) { top: 12%; left: 6%;  animation-duration: 7s; animation-delay: 0s;   font-size: 52px; }
.lp-decor-item:nth-child(2) { top: 65%; left: 3%;  animation-duration: 5s; animation-delay: 1.5s; font-size: 36px; }
.lp-decor-item:nth-child(3) { top: 20%; right: 5%; animation-duration: 8s; animation-delay: 0.5s; font-size: 48px; }
.lp-decor-item:nth-child(4) { top: 70%; right: 8%; animation-duration: 6s; animation-delay: 2s;   font-size: 44px; }
.lp-decor-item:nth-child(5) { top: 45%; left: 12%; animation-duration: 9s; animation-delay: 1s;   font-size: 32px; }
.lp-decor-item:nth-child(6) { top: 30%; right:18%; animation-duration: 7s; animation-delay: 3s;   font-size: 36px; }

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

/* Hero texture overlay */
.lp-hero::before {
    display: none;
}

/* Hero badge */
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 169, 106, 0.20);
    border: 1px solid rgba(232, 169, 106, 0.40);
    border-radius: 999px;
    padding: 6px 14px;
    color: var(--lp-warm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.lp-hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--lp-warm);
    animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}

/* Hero scroll indicator */
.lp-hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: lp-bounce 2s ease-in-out infinite;
}

.lp-hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

@keyframes lp-bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/*=========================================================
  SCROLL REVEAL ANIMATIONS
=========================================================*/

[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="down"]  { transform: translateY(-40px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

[data-reveal][data-delay="100"].is-revealed { transition-delay: 0.1s; }
[data-reveal][data-delay="200"].is-revealed { transition-delay: 0.2s; }
[data-reveal][data-delay="300"].is-revealed { transition-delay: 0.3s; }
[data-reveal][data-delay="400"].is-revealed { transition-delay: 0.4s; }
[data-reveal][data-delay="500"].is-revealed { transition-delay: 0.5s; }

/*=========================================================
  FOOD GALLERY + LIGHTBOX
=========================================================*/

.lp-gallery {
    padding: 80px 0;
    background: var(--lp-ink);
}

.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 6px;
}

.lp-gallery-item {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    background: var(--lp-ink);
    border-radius: 4px;
}

.lp-gallery-item:nth-child(1),
.lp-gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 2;
}

.lp-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.88);
}

.lp-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.lp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 106, 40,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.lp-gallery-item:hover .lp-gallery-overlay { opacity: 1; }

.lp-gallery-caption {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.lp-gallery-item:hover .lp-gallery-caption { transform: none; }

.lp-gallery-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 20px;
}

.lp-gallery-item:hover .lp-gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(12, 5, 2, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(12px);
}

.lp-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lp-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lp-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.lp-lightbox.is-open .lp-lightbox-img { transform: scale(1); }

.lp-lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

.lp-lightbox-counter {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lp-lightbox-close,
.lp-lightbox-prev,
.lp-lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.20);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    line-height: 1;
    font-size: 20px;
}

.lp-lightbox-close {
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}

.lp-lightbox-prev,
.lp-lightbox-next {
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}

.lp-lightbox-prev { left: 20px; }
.lp-lightbox-next { right: 20px; }

.lp-lightbox-close:hover,
.lp-lightbox-prev:hover,
.lp-lightbox-next:hover {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    transform: translateY(0) scale(1.05);
}
.lp-lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lp-lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/*=========================================================
  CATEGORY FILTER TABS
=========================================================*/

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

.lp-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.lp-filter-btn {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-ink-mid);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--lp-transition);
    font-family: "Inter", sans-serif;
    white-space: nowrap;
}

.lp-filter-btn:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    background: var(--lp-primary-bg);
}

.lp-filter-btn.is-active {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 106, 40,0.30);
}

.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.lp-product-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    overflow: hidden;
    border: 1.5px solid var(--lp-border-light);
    transition: all var(--lp-transition);
    display: flex;
    flex-direction: column;
}

.lp-product-card:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 12px 40px rgba(232, 106, 40,0.14);
    transform: translateY(-5px);
}

.lp-product-card.is-hidden {
    display: none;
}

.lp-product-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--lp-cream-dark);
}

.lp-product-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lp-product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--lp-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 10px;
}

.lp-product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-product-cat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--lp-primary);
    margin-bottom: 6px;
}

.lp-product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    line-height: 1.3;
}

.lp-product-desc {
    font-size: 13px;
    color: var(--lp-ink-mid);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.lp-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--lp-border-light);
}

.lp-product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-primary);
    font-family: "Playfair Display", serif;
}

.lp-product-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--lp-ink-mid);
    font-family: "Inter", sans-serif;
}

.lp-product-add-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--lp-transition);
    flex-shrink: 0;
    text-decoration: none;
}

.lp-product-add-btn:hover {
    background: var(--lp-primary-dark);
    color: #fff;
    transform: scale(1.1);
}

/*=========================================================
  PROGRAM / HOURS WIDGET
=========================================================*/

.lp-hours-section {
    padding: 80px 0;
    background: var(--lp-surface);
}

.lp-hours-card {
    background: var(--lp-cream);
    border-radius: var(--lp-radius-lg);
    padding: 40px;
    border: 1.5px solid var(--lp-border-light);
}

.lp-hours-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 28px;
}

.lp-hours-status.is-open {
    background: rgba(34,197,94,0.12);
    color: #16a34a;
    border: 1.5px solid rgba(34,197,94,0.3);
}

.lp-hours-status.is-closed {
    background: rgba(232, 106, 40,0.10);
    color: var(--lp-primary);
    border: 1.5px solid var(--lp-border);
}

.lp-hours-status-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    animation: lp-pulse 2s ease-in-out infinite;
}

.is-open .lp-hours-status-dot  { background: #22c55e; }
.is-closed .lp-hours-status-dot { background: var(--lp-primary); }

.lp-hours-next {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 400;
}

.lp-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.lp-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--lp-radius-sm);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border-light);
    gap: 16px;
    transition: all var(--lp-transition);
}

.lp-hours-row.is-today {
    border-color: var(--lp-primary);
    background: var(--lp-primary-bg);
}

.lp-hours-row.is-today .lp-hours-day { color: var(--lp-primary); font-weight: 700; }

.lp-hours-day {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-ink);
    white-space: nowrap;
}

.lp-hours-time {
    font-size: 14px;
    color: var(--lp-ink-mid);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.lp-hours-time.is-closed-day { color: var(--lp-ink-light); font-style: italic; }

/*=========================================================
  SOCIAL FEED (Instagram + Facebook)
=========================================================*/

/* Social section — stiluri mutate inline în front-page.php */

/*=========================================================
  CART DRAWER (slide-in)
=========================================================*/

.lp-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
}

.lp-cart-drawer.is-open { pointer-events: all; }

.lp-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,5,2,0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

.lp-cart-drawer.is-open .lp-cart-overlay { opacity: 1; }

.lp-cart-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 420px;
    max-width: 92vw;
    background: var(--lp-surface);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(12,5,2,0.20);
}

.lp-cart-drawer.is-open .lp-cart-panel {
    transform: translateX(0);
}

.lp-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--lp-border-light);
    flex-shrink: 0;
}

.lp-cart-header h3 {
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-cart-header h3 svg { color: var(--lp-primary); }

.lp-cart-close-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-cream);
    color: var(--lp-ink-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--lp-transition);
    line-height: 1;
}

.lp-cart-close-btn:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

.lp-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.lp-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 48px 24px;
    text-align: center;
    color: var(--lp-ink-mid);
    gap: 12px;
}

.lp-cart-empty .icon { font-size: 56px; }
.lp-cart-empty h4 { color: var(--lp-ink); margin: 0; }
.lp-cart-empty p { margin: 0; font-size: 14px; }

.lp-cart-items { padding: 8px 0; }

.lp-cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--lp-border-light);
    align-items: flex-start;
}

.lp-cart-item-img {
    width: 68px; height: 68px;
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--lp-cream);
    border: 1px solid var(--lp-border-light);
}

.lp-cart-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.lp-cart-item-info { flex: 1; min-width: 0; }

.lp-cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-ink);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Playfair Display", serif;
}

.lp-cart-item-meta {
    font-size: 13px;
    color: var(--lp-ink-light);
    margin-bottom: 8px;
}

.lp-cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-cream);
    color: var(--lp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--lp-transition);
    line-height: 1;
}

.lp-qty-btn:hover { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }

.lp-qty-val {
    font-size: 15px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--lp-ink);
}

.lp-cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-primary);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: "Playfair Display", serif;
}

.lp-cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-ink-light);
    font-size: 18px;
    padding: 2px;
    transition: color var(--lp-transition);
    line-height: 1;
    flex-shrink: 0;
}

.lp-cart-remove:hover { color: var(--lp-primary); }

.lp-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--lp-border-light);
    flex-shrink: 0;
    background: var(--lp-cream);
}

.lp-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
}

.lp-cart-subtotal span:first-child { color: var(--lp-ink-mid); }
.lp-cart-subtotal .lp-subtotal-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-ink);
    font-family: "Playfair Display", serif;
}

.lp-cart-actions { display: flex; flex-direction: column; gap: 10px; }

.lp-cart-actions .mc-btn {
    width: 100%;
    justify-content: center;
}

/* Cart loading spinner */
.lp-cart-loading {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75);
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lp-cart-loading.is-visible { display: flex; }

.lp-cart-spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--lp-border);
    border-top-color: var(--lp-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* Cart added toast */
.lp-toast {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--lp-ink);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(12,5,2,0.25);
}

.lp-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lp-toast-icon { color: #22c55e; font-size: 18px; }

/*=========================================================
  BACK TO TOP
=========================================================*/

.lp-back-to-top {
    position: fixed;
    bottom: 96px; right: 28px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--lp-surface);
    border: 1.5px solid var(--lp-border);
    color: var(--lp-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 400;
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--lp-transition);
    box-shadow: 0 4px 16px rgba(12,5,2,0.12);
    font-size: 18px;
}

.lp-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-back-to-top:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 106, 40,0.35);
}

/*=========================================================
  WOOCOMMERCE SINGLE PRODUCT — CUSTOM
=========================================================*/

.lp-product-single {
    padding: 48px 0 80px;
    background: var(--lp-cream);
}

.lp-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--lp-ink-light);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.lp-product-breadcrumb a {
    color: var(--lp-ink-mid);
    text-decoration: none;
    transition: color var(--lp-transition);
}

.lp-product-breadcrumb a:hover { color: var(--lp-primary); }
.lp-product-breadcrumb .sep { color: var(--lp-border); }
.lp-product-breadcrumb .current { color: var(--lp-ink); font-weight: 600; }

.lp-product-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 56px;
    align-items: start;
}

/* Gallery left */
.lp-product-gallery {
    position: sticky;
    top: calc(var(--lp-header-height) + 24px);
}

.lp-product-main-img {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--lp-cream-dark);
    margin-bottom: 12px;
    cursor: zoom-in;
}

.lp-product-main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lp-product-main-img:hover img { transform: scale(1.04); }

.lp-product-badge-lg {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--lp-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-product-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.lp-product-thumbs::-webkit-scrollbar { display: none; }

.lp-product-thumb {
    flex: 0 0 80px;
    height: 80px;
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--lp-transition);
    background: var(--lp-cream-dark);
}

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

.lp-product-thumb.is-active,
.lp-product-thumb:hover { border-color: var(--lp-primary); }

/* Product info right */
.lp-product-info-wrap {}

.lp-product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--lp-primary);
    margin-bottom: 12px;
    text-decoration: none;
}

.lp-product-category-tag:hover { color: var(--lp-primary-dark); }

.lp-product-title {
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--lp-ink);
    margin-bottom: 12px;
    line-height: 1.2;
}

.lp-product-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--lp-ink-mid);
}

.lp-stars { color: var(--lp-warm-dark); letter-spacing: 2px; }

.lp-product-price-box {
    padding: 20px 24px;
    background: var(--lp-primary-bg);
    border-radius: var(--lp-radius);
    border: 1.5px solid var(--lp-border);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.lp-product-current-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-primary);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.lp-product-old-price {
    font-size: 18px;
    color: var(--lp-ink-light);
    text-decoration: line-through;
    font-family: "Playfair Display", serif;
}

.lp-product-price-unit {
    font-size: 14px;
    color: var(--lp-ink-mid);
    margin-bottom: 4px;
}

.lp-product-short-desc {
    color: var(--lp-ink-mid);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
    border-left: 3px solid var(--lp-primary);
    padding-left: 16px;
}

/* Add to cart form */
.lp-product-add-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.lp-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--lp-cream);
    border: 1.5px solid var(--lp-border);
    border-radius: 999px;
    overflow: hidden;
    width: fit-content;
}

.lp-qty-control .lp-qty-btn {
    width: 44px; height: 44px;
    border-radius: 0;
    border: none;
    background: transparent;
    font-size: 20px;
    flex-shrink: 0;
}

.lp-qty-control .lp-qty-btn:hover {
    background: var(--lp-primary);
    color: #fff;
    border-radius: 0;
}

.lp-qty-control input[type="number"] {
    width: 56px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--lp-border-light);
    border-right: 1px solid var(--lp-border-light);
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-ink);
    padding: 10px 0;
    outline: none;
    -moz-appearance: textfield;
}

.lp-qty-control input[type="number"]::-webkit-outer-spin-button,
.lp-qty-control input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

.lp-add-to-cart-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lp-add-to-cart-row .mc-btn {
    flex: 1;
    font-size: 16px;
    padding: 16px 28px;
}

.lp-wishlist-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-cream);
    color: var(--lp-ink-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--lp-transition);
    flex-shrink: 0;
}

.lp-wishlist-btn:hover { border-color: var(--lp-primary); color: var(--lp-primary); background: var(--lp-primary-bg); }
.lp-wishlist-btn.is-active { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }

.lp-product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-product-meta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-ink-mid);
}

.lp-product-meta-list li span:first-child {
    font-weight: 600;
    color: var(--lp-ink);
    min-width: 80px;
}

.lp-product-guarantee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--lp-border-light);
}

.lp-guarantee-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--lp-cream);
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border-light);
}

.lp-guarantee-icon { font-size: 24px; margin-bottom: 6px; }
.lp-guarantee-label { font-size: 12px; font-weight: 600; color: var(--lp-ink-mid); line-height: 1.3; }

/* Product tabs */
.lp-product-tabs {
    margin-top: 60px;
}

.lp-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--lp-border-light);
    margin-bottom: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}

.lp-tab-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-ink-mid);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--lp-transition);
    white-space: nowrap;
    font-family: "Inter", sans-serif;
}

.lp-tab-btn:hover { color: var(--lp-primary); }
.lp-tab-btn.is-active { color: var(--lp-primary); border-bottom-color: var(--lp-primary); }

.lp-tab-panel { display: none; }
.lp-tab-panel.is-active { display: block; }
.lp-tab-panel .lp-tab-content { color: var(--lp-ink-mid); line-height: 1.8; font-size: 16px; }

/* Related products */
.lp-related {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--lp-border-light);
}

.lp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

/*=========================================================
  MOBILE MENIU ZILEI — IMPROVED
=========================================================*/

@media (max-width: 767.98px) {
    .lp-meniu-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .lp-meniu-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-meniu-pret { font-size: 24px; }

    .lp-meniu-card-footer .mc-btn { width: 100%; justify-content: center; }

    /* Gallery mobile */
    .lp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .lp-gallery-item:nth-child(1),
    .lp-gallery-item:nth-child(7) {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Social mobile */
    .lp-social-grid {
        grid-template-columns: 1fr;
    }

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

    /* Product single mobile */
    .lp-product-layout { grid-template-columns: 1fr; gap: 32px; }
    .lp-product-gallery { position: relative; top: 0; }
    .lp-product-guarantee { grid-template-columns: repeat(3, 1fr); }

    /* Filter mobile */
    .lp-filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
    .lp-filter-bar::-webkit-scrollbar { display: none; }

    /* Cart drawer mobile */
    .lp-cart-panel { width: 100%; max-width: 100%; }

    /* Hours mobile */
    .lp-hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .lp-gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
    .lp-product-guarantee { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .lp-guarantee-label { font-size: 11px; }
    .lp-add-to-cart-row { flex-wrap: wrap; }
    .lp-add-to-cart-row .mc-btn { width: 100%; }
    .lp-hours-card { padding: 24px 20px; }
}

/*=========================================================
  SINGLE PRODUCT PAGE — SUPPLEMENTAL STYLES
=========================================================*/

/* Page wrapper */
.lp-product-page { background: var(--lp-cream); min-height: 60vh; }

/* Breadcrumb bar */
.lp-breadcrumb-bar {
    background: var(--lp-cream-dark);
    border-bottom: 1px solid var(--lp-border-light);
    padding: 12px 0;
}
.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--lp-ink-light);
    flex-wrap: wrap;
}
.lp-breadcrumb a { color: var(--lp-ink-mid); text-decoration: none; transition: color var(--lp-transition); }
.lp-breadcrumb a:hover { color: var(--lp-primary); }
.lp-bc-sep { color: var(--lp-border); }
.lp-bc-current { color: var(--lp-ink); font-weight: 600; }

/* Product hero section */
.lp-product-hero { padding: 56px 0 40px; }

/* Main image zoom overlay */
.lp-product-img-link { display: block; position: relative; height: 100%; }
.lp-product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.lp-product-img-link:hover .lp-product-img { transform: scale(1.04); }
.lp-product-img-zoom {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.88);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-primary);
    opacity: 0;
    transition: opacity var(--lp-transition);
    pointer-events: none;
}
.lp-product-img-link:hover .lp-product-img-zoom { opacity: 1; }
.lp-product-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    background: var(--lp-cream-dark);
}

/* Info column */
.lp-product-info { padding-top: 8px; }

.lp-product-cats {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--lp-primary);
    margin-bottom: 12px;
}
.lp-product-cats a { color: inherit; text-decoration: none; }
.lp-product-cats a:hover { text-decoration: underline; }

/* Rating row */
.lp-product-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.lp-star { font-size: 18px; line-height: 1; }
.lp-star-full { color: var(--lp-warm-dark); }
.lp-star-half { color: var(--lp-warm-dark); opacity: 0.6; }
.lp-star-empty { color: var(--lp-border); }
.lp-product-review-link { font-size: 14px; color: var(--lp-ink-mid); text-decoration: underline; }
.lp-product-review-link:hover { color: var(--lp-primary); }

/* Price block — wraps WooCommerce price HTML */
.lp-product-price-block {
    padding: 20px 24px;
    background: var(--lp-primary-bg);
    border-radius: var(--lp-radius);
    border: 1.5px solid var(--lp-border);
    margin-bottom: 24px;
}
.lp-product-price-block .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--lp-primary);
    font-family: "Playfair Display", serif;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.lp-product-price-block .price del { font-size: 18px; color: var(--lp-ink-light); }
.lp-product-price-block .price ins { text-decoration: none; }

/* Add to cart wrapper */
.lp-product-atc {
    margin-bottom: 24px;
}
/* Style WooCommerce form within our wrapper */
.lp-product-atc form.cart { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.lp-product-atc .quantity { display: flex; align-items: center; gap: 0; background: var(--lp-cream); border: 1.5px solid var(--lp-border); border-radius: 999px; overflow: hidden; }
.lp-product-atc .quantity .qty { width: 60px; text-align: center; border: none; background: transparent; font-size: 16px; font-weight: 700; color: var(--lp-ink); padding: 12px 0; outline: none; -moz-appearance: textfield; }
.lp-product-atc .quantity .qty::-webkit-outer-spin-button,
.lp-product-atc .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.lp-product-atc .single_add_to_cart_button {
    flex: 1;
    background: var(--lp-primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: background var(--lp-transition), transform var(--lp-transition);
    letter-spacing: 0.02em;
}
.lp-product-atc .single_add_to_cart_button:hover { background: var(--lp-primary-dark); transform: translateY(-1px); }

/* Product meta (SKU, tags) */
.lp-product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--lp-ink-mid);
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--lp-border-light);
}
.lp-product-meta strong { color: var(--lp-ink); }
.lp-product-meta a { color: var(--lp-ink-mid); text-decoration: none; }
.lp-product-meta a:hover { color: var(--lp-primary); }

/* Trust badges */
.lp-product-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-border-light);
}
.lp-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 14px 8px;
    background: var(--lp-cream);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-ink-mid);
    line-height: 1.3;
}
.lp-badge-item svg { color: var(--lp-primary); flex-shrink: 0; }

/* Tabs section */
.lp-product-tabs-section {
    background: #fff;
    padding: 56px 0;
    border-top: 1px solid var(--lp-border-light);
    border-bottom: 1px solid var(--lp-border-light);
}
.lp-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--lp-border-light);
    margin-bottom: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}
.lp-tabs::-webkit-scrollbar { display: none; }
.lp-tab {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-ink-mid);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--lp-transition);
    white-space: nowrap;
    font-family: "Inter", sans-serif;
}
.lp-tab:hover { color: var(--lp-primary); }
.lp-tab.is-active { color: var(--lp-primary); border-bottom-color: var(--lp-primary); }
.lp-tab-panels {}
.lp-product-description { color: var(--lp-ink-mid); font-size: 16px; line-height: 1.8; max-width: 760px; }
.lp-product-description h2,
.lp-product-description h3,
.lp-product-description h4 { color: var(--lp-ink); margin: 28px 0 12px; font-family: "Playfair Display", serif; }

/* Info table */
.lp-product-info-table table { width: 100%; border-collapse: collapse; max-width: 600px; }
.lp-product-info-table th,
.lp-product-info-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--lp-border-light); font-size: 14px; }
.lp-product-info-table th { font-weight: 600; color: var(--lp-ink); width: 160px; background: var(--lp-cream); }
.lp-product-info-table td { color: var(--lp-ink-mid); }
.lp-in-stock { color: #2e7d32; font-weight: 600; }
.lp-out-of-stock { color: #c62828; font-weight: 600; }
.lp-info-note { margin-top: 20px; font-size: 13px; color: var(--lp-ink-light); font-style: italic; max-width: 520px; }

/* Related products */
.lp-related-section { padding: 64px 0; background: var(--lp-cream); }
.lp-related-card {
    background: #fff;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lp-border-light);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    display: flex;
    flex-direction: column;
}
.lp-related-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-related-card-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--lp-cream-dark);
}
.lp-related-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.lp-related-card:hover .lp-related-card-img-wrap img { transform: scale(1.06); }
.lp-related-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.lp-related-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.lp-related-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lp-primary); margin-bottom: 6px; display: block; }
.lp-related-card-name { font-size: 17px; font-weight: 600; color: var(--lp-ink); margin-bottom: 8px; font-family: "Playfair Display", serif; line-height: 1.3; }
.lp-related-card-name a { color: inherit; text-decoration: none; }
.lp-related-card-name a:hover { color: var(--lp-primary); }
.lp-related-card-price { font-size: 18px; font-weight: 700; color: var(--lp-primary); margin-top: auto; }
.lp-related-card-price .price { color: var(--lp-primary); }

/* Mobile: single product */
@media (max-width: 767.98px) {
    .lp-product-badges { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .lp-badge-item { font-size: 11px; padding: 10px 4px; }
    .lp-product-tabs-section { padding: 36px 0; }
    .lp-tab { padding: 12px 18px; font-size: 14px; }
    .lp-related-section { padding: 40px 0; }
}
@media (max-width: 575.98px) {
    .lp-product-badges { grid-template-columns: 1fr 1fr; }
    .lp-badge-item:last-child { grid-column: span 2; }
    .lp-product-atc form.cart { flex-direction: column; align-items: stretch; }
    .lp-product-atc .quantity { justify-content: center; }
}


/* ══════════════════════════════════════════════════════════
   MENIU COMPLET PAGE
══════════════════════════════════════════════════════════ */
.lp-fm-hero {
    text-align: center;
    padding-bottom: 40px;
}
.lp-fm-hero-intro {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--lp-ink-mid);
    font-size: 17px;
}

.lp-fm-section {
    padding: 56px 0 100px;
    background: var(--lp-cream, #FEF8F2);
}

/* ── Search bar ── */
.lp-fm-search-wrap {
    position: relative;
    max-width: 540px;
    margin: 0 auto 60px;
}
.lp-fm-search {
    width: 100%;
    padding: 16px 52px 16px 22px;
    border: 2px solid var(--lp-border, rgba(232,106,40,0.18));
    border-radius: 50px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    background: #fff;
    color: var(--lp-ink, #1A0A00);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: 0 2px 16px rgba(232,106,40,0.06);
}
.lp-fm-search:focus {
    border-color: var(--lp-primary, #E86A28);
    box-shadow: 0 0 0 4px rgba(232,106,40,0.12);
}
.lp-fm-search::placeholder { color: rgba(92,58,32,0.45); }
.lp-fm-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-primary, #E86A28);
    pointer-events: none;
}

/* ── No results ── */
.lp-fm-no-results {
    text-align: center;
    padding: 64px 20px;
    color: var(--lp-ink-mid);
}
.lp-fm-no-results-icon { font-size: 56px; margin-bottom: 16px; }
.lp-fm-no-results h3 { font-family: "Playfair Display", serif; font-size: 24px; margin: 0 0 10px; }
.lp-fm-no-results p  { font-size: 15px; color: var(--lp-ink-light); margin: 0; }

/* ── Category group ── */
.lp-fm-cat-group { margin-bottom: 64px; }
.lp-fm-cat-group:last-child { margin-bottom: 0; }

.lp-fm-cat-title {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--lp-ink, #1A0A00);
    margin: 0 0 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--lp-primary, #E86A28);
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-fm-cat-title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lp-primary, #E86A28);
    flex-shrink: 0;
}
.lp-fm-cat-count {
    margin-left: auto;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: var(--lp-ink-light);
    background: rgba(232,106,40,0.10);
    padding: 2px 10px;
    border-radius: 20px;
}

/* ── Grid ── */
.lp-fm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

/* ── Card ── */
.lp-fm-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06), 0 0 0 1px rgba(232,106,40,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    cursor: default;
}
.lp-fm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.12), 0 0 0 1px rgba(232,106,40,0.20);
}
.lp-fm-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--lp-cream-dark, #F8EFE0);
}
.lp-fm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.lp-fm-card:hover .lp-fm-card-img img { transform: scale(1.06); }
.lp-fm-card-img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}
.lp-fm-card-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.lp-fm-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lp-primary, #E86A28);
}
.lp-fm-card-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-ink, #1A0A00);
    margin: 0;
    line-height: 1.3;
}
.lp-fm-card-desc {
    font-size: 13px;
    color: var(--lp-ink-mid, #5C3A20);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.lp-fm-card-price {
    font-size: 21px;
    font-weight: 700;
    color: var(--lp-primary, #E86A28);
    margin-top: 10px;
}
.lp-fm-card-price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-ink-light, #9C6A40);
}
.lp-fm-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--lp-ink-mid);
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .lp-fm-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .lp-fm-cat-title { font-size: 22px; }
    .lp-fm-search { font-size: 15px; padding: 14px 48px 14px 18px; }
}
@media (max-width: 479.98px) {
    .lp-fm-grid { grid-template-columns: 1fr; }
    .lp-fm-section { padding: 40px 0 72px; }
}


/* ══════════════════════════════════════════════════════════
   MENIU RESTAURANT — white flyer style
══════════════════════════════════════════════════════════ */
.lp-menu-book {
    background: #fff url('images/food%20top%20view%20set.jpg') center center / cover no-repeat;
    padding: 80px 0 72px;
    color: var(--lp-ink, #1a1a1a);
    position: relative;
    border-top: 1px solid rgba(0,0,0,.07);
}
.lp-menu-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.93);
    pointer-events: none;
}
.lp-menu-book-top,
.lp-menu-book > .container,
.lp-menu-book .lp-menu-tabs-wrap {
    position: relative;
    z-index: 1;
}

/* ── Decorative header ── */
.lp-menu-book-top,
.lp-menu-book > .container,
.lp-menu-book .lp-menu-tabs-wrap {
    position: relative;
    z-index: 1;
}
.lp-menu-book-top {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 20px;
}
.lp-menu-book-ornament {
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--lp-primary, #E86A28);
    margin-bottom: 10px;
}
.lp-menu-book-brand {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--lp-ink, #1a1a1a);
    margin: 0 0 8px;
    letter-spacing: 0.02em;
    line-height: 1;
}
.lp-menu-book-tagline {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #999;
    margin: 0;
}

/* ── CTA ── */
.lp-menu-book-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(0,0,0,.07);
}
.lp-menu-book-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--lp-primary, #E86A28);
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.lp-menu-book-cta-link:hover { opacity: 0.75; text-decoration: none; }

@media (max-width: 575px) {
    .lp-menu-book { padding: 56px 0 48px; }
    .lp-menu-book-top { margin-bottom: 32px; }
}

/* ══════════════════════════════════════════════════════════
   CARD HOVER — clickable cursor
══════════════════════════════════════════════════════════ */
.lp-card-modal-trigger {
    cursor: pointer;
}
.lp-card-modal-trigger:focus-visible {
    outline: 2px solid var(--lp-primary);
    outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════
   MODAL PREPARAT
══════════════════════════════════════════════════════════ */
.lp-item-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 6, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.28s ease;
}
.lp-item-modal-overlay.is-open { opacity: 1; }

.lp-item-modal {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.30s cubic-bezier(0.34, 1.30, 0.64, 1);
}
.lp-item-modal-overlay.is-open .lp-item-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.lp-item-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.15s, transform 0.15s;
}
.lp-item-modal-close:hover { background: #fff; transform: scale(1.08); }

/* Image panel */
.lp-item-modal-img-wrap {
    position: relative;
    background: var(--lp-cream-dark, #F8EFE0);
    overflow: hidden;
}
.lp-item-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lp-item-modal-img-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}
.lp-item-modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.12) 100%);
    pointer-events: none;
}

/* Body panel */
.lp-item-modal-body {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.lp-item-modal-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-primary, #E86A28);
}

.lp-item-modal-title {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--lp-ink, #1A0A00);
    margin: 0;
    line-height: 1.25;
}

.lp-item-modal-desc {
    font-size: 14px;
    color: var(--lp-ink-mid, #5C3A20);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.lp-item-modal-allergens {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--lp-ink-light, #9C6A40);
    background: rgba(232,106,40,0.07);
    border-radius: 8px;
    padding: 8px 12px;
    line-height: 1.5;
}
.lp-item-modal-allergens svg { flex-shrink: 0; margin-top: 1px; color: var(--lp-primary); }

.lp-item-modal-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(232,106,40,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-item-modal-price {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--lp-primary, #E86A28);
    line-height: 1;
}
.lp-item-modal-price span {
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-ink-light, #9C6A40);
    font-family: "Inter", sans-serif;
    margin-left: 3px;
}

.lp-item-modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-item-modal-cta { white-space: nowrap; }

.lp-btn-ghost-outline {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(232,106,40,0.35);
    color: var(--lp-primary, #E86A28);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.lp-btn-ghost-outline:hover {
    border-color: var(--lp-primary);
    background: rgba(232,106,40,0.06);
    color: var(--lp-primary);
    text-decoration: none;
}

/* ── Mobile modal ── */
@media (max-width: 600px) {
    .lp-item-modal {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 1fr;
        max-height: 92vh;
        border-radius: 16px;
    }
    .lp-item-modal-img-wrap { height: 220px; }
    .lp-item-modal-body { padding: 22px 20px 20px; }
    .lp-item-modal-title { font-size: 22px; }
    .lp-item-modal-price { font-size: 28px; }
    .lp-item-modal-footer { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════════════════
   MENU TABBED — category tabs + flyer-style item rows
══════════════════════════════════════════════════════════ */

/* ── Tab bar (light, full-menu page) ── */
.lp-menu-tabs-wrap {
    background: #fff;
    border-bottom: 2px solid rgba(0,0,0,.07);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.admin-bar .lp-menu-tabs-wrap { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .lp-menu-tabs-wrap { top: 46px; } }

.lp-menu-tabs-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
.lp-menu-tabs-scroll {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 4px;
}
.lp-menu-tabs-scroll::-webkit-scrollbar { display: none; }

.lp-menu-tab {
    flex-shrink: 0;
    padding: 15px 17px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #777;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: -2px;
    line-height: 1;
}
.lp-menu-tab:hover { color: var(--lp-primary, #E86A28); }
.lp-menu-tab--active {
    color: var(--lp-primary, #E86A28);
    border-bottom-color: var(--lp-primary, #E86A28);
}
.lp-menu-tab-count {
    background: rgba(0,0,0,.08);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 10.5px;
    font-weight: 700;
    opacity: .65;
}
.lp-menu-tab--active .lp-menu-tab-count {
    background: var(--lp-primary, #E86A28);
    color: #fff;
    opacity: 1;
}

/* ── Search bar ── */
.lp-menu-search-bar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: #f2f2f2;
    border-radius: 20px;
    margin: 0 0 0 auto;
    border: 1.5px solid transparent;
    transition: border-color .2s, background .2s;
}
.lp-menu-search-bar:focus-within {
    border-color: var(--lp-primary, #E86A28);
    background: #fff;
}
.lp-menu-search-bar svg { opacity: .4; flex-shrink: 0; }
.lp-menu-search-bar input {
    border: none;
    background: none;
    outline: none;
    font-size: 13px;
    color: #333;
    width: 160px;
}

/* ── Panels ── */
.lp-menu-panels-section { padding: 44px 0 80px; }
.lp-menu-panel { display: none; }
.lp-menu-panel--active { display: block; }
.lp-menu-search-results { display: none; }
.lp-menu-search-results--active { display: block; }
.lp-menu-no-results { text-align: center; padding: 48px 20px; color: var(--lp-ink-mid, #888); }
.lp-menu-no-results-icon { font-size: 40px; margin-bottom: 12px; }

/* ── Panel header ── */
.lp-menu-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--lp-primary, #E86A28);
}
.lp-menu-panel-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--lp-ink, #1a1a1a);
    margin: 0;
    line-height: 1;
}
.lp-menu-panel-count {
    background: var(--lp-primary, #E86A28);
    color: #fff;
    border-radius: 20px;
    padding: 4px 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── Item rows ── */
.lp-menu-rows { list-style: none; margin: 0; padding: 0; }

.lp-menu-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 12px;
    margin: 0 -12px;
    border-bottom: 1px solid rgba(0,0,0,.055);
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s;
}
.lp-menu-row:last-child { border-bottom: none; }
.lp-menu-row:hover { background: rgba(232,106,40,.05); }
.lp-menu-row:focus-visible {
    outline: 2px solid var(--lp-primary, #E86A28);
    outline-offset: 2px;
}

.lp-menu-row-info { flex: 1; min-width: 0; }

.lp-menu-row-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-ink, #1a1a1a);
    line-height: 1.3;
}
.lp-menu-row-desc {
    font-size: 12px;
    color: #aaa;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 480px;
    font-style: italic;
}

/* Orange circle price badge */
.lp-menu-row-price {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--lp-primary, #E86A28);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    box-shadow: 0 3px 10px rgba(232,106,40,.28);
    text-align: center;
}
.lp-menu-row-price small {
    font-size: 8.5px;
    font-weight: 500;
    opacity: .82;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.lp-menu-row-price--empty {
    background: rgba(0,0,0,.07);
    color: #bbb;
    box-shadow: none;
    font-size: 20px;
    font-weight: 400;
}

/* ── No results ── */
.lp-menu-no-results { text-align: center; padding: 60px 20px; color: #aaa; }
.lp-menu-no-results-icon { font-size: 48px; margin-bottom: 12px; }

/* ══ Home menu — tab bar overrides (light context) ══ */
.lp-menu-book .lp-menu-tabs-wrap {
    position: static;
    background: transparent;
    border-bottom: 2px solid rgba(0,0,0,.08);
    box-shadow: none;
    margin-bottom: 36px;
}
.lp-menu-book .lp-menu-panel { display: none; }
.lp-menu-book .lp-menu-panel--active { display: block; }

/* ── Panel header: dark pill badge like "Our Drinks" in the flyer ── */
.lp-menu-book .lp-menu-panel-header {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 28px;
}
.lp-menu-book .lp-menu-panel-title {
    background: var(--lp-ink, #1a1a1a);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 30px;
}
.lp-menu-book .lp-menu-panel-count { display: none; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .lp-menu-row-desc { display: none; }
    .lp-menu-row-price { width: 46px; height: 46px; font-size: 12px; }
    .lp-menu-search-bar { display: none; }
    .lp-menu-panels-section { padding: 28px 0 60px; }
    .lp-menu-panel-title { font-size: 18px; }

    /* Touch targets mai mari pe mobil */
    .lp-menu-row { padding: 16px 0; min-height: 56px; }
    .lp-menu-tab  { padding: 14px 14px; font-size: 12px; }

    /* Modal full-screen pe mobil */
    .lp-item-modal {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
    }
    .lp-item-modal-overlay {
        align-items: flex-end;
    }
    .lp-item-modal-img-wrap { max-height: 220px; }
    .lp-item-modal-img { max-height: 220px; }
}


/* ══════════════════════════════════════════════════════════
   POZE MENIU INTERACTIVE — hotspot-uri
══════════════════════════════════════════════════════════ */
.lp-hotspot-section {
    padding: 40px 0;
    background: var(--lp-cream, #FDF6EE) url('images/meniu-home.jpg') center center / cover no-repeat;
    position: relative;
}
.lp-hotspot-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(253,246,238,.88);
    pointer-events: none;
}
.lp-hotspot-section > * {
    position: relative;
    z-index: 1;
}
/* ── Slider ── */
.lp-hs-slider {
    position: relative;
}
.lp-hs-track { position: relative; }
.lp-hs-slide { display: none; }
.lp-hs-slide--active { display: block; }

.lp-hs-slide-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--lp-ink, #1a1a1a);
    text-align: center;
}

/* Săgeți */
.lp-hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 3px 14px rgba(0,0,0,.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-ink, #1a1a1a);
    transition: background .2s, color .2s, box-shadow .2s;
}
.lp-hs-arrow:hover {
    background: var(--lp-primary, #E86A28);
    color: #fff;
    box-shadow: 0 4px 18px rgba(232,106,40,.4);
}
.lp-hs-arrow--prev { left: -24px; }
.lp-hs-arrow--next { right: -24px; }

/* Indicatori puncte */
.lp-hs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.lp-hs-dot-ind {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.lp-hs-dot-ind--active {
    background: var(--lp-primary, #E86A28);
    transform: scale(1.3);
}

/* Nav mobile — ascuns pe desktop */
.lp-hs-nav-mobile { display: none; }

@media (max-width: 600px) {
    /* Ascunde săgețile absolute de pe desktop */
    .lp-hs-arrow--prev,
    .lp-hs-arrow--next { display: none; }

    /* Dots — scoase din nav-mobile pe desktop, resetate pe mobile */
    .lp-hs-dots { margin-top: 0; }

    /* Nav-mobile: row cu săgeți + dots sub slider */
    .lp-hs-nav-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
    }
    .lp-hs-nav-mobile .lp-hs-arrow {
        position: static;
        transform: none;
        width: 54px;
        height: 54px;
        background: var(--lp-primary, #E86A28);
        color: #fff;
        box-shadow: 0 4px 18px rgba(232,106,40,.5);
        flex-shrink: 0;
        border-radius: 50%;
    }
    .lp-hs-nav-mobile .lp-hs-arrow:hover,
    .lp-hs-nav-mobile .lp-hs-arrow:active {
        background: var(--lp-primary, #E86A28);
        filter: brightness(1.12);
        box-shadow: 0 6px 22px rgba(232,106,40,.65);
    }
}

/* ── Wrapper imagine — încape pe tot ecranul fără scroll ── */
.lp-hotspot-img-wrap {
    position: relative;
    display: inline-block;
    max-height: calc(100vh - 220px);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 40px rgba(0,0,0,.14);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}
.lp-hotspot-img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 220px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

/* ── Punct hotspot ── */
.lp-hotspot-dot {
    position: absolute;
    transform: translate(-50%, -50%);
    min-width: 46px;
    height: 46px;
    border-radius: 23px;
    background: var(--lp-primary, #E86A28);
    border: 2.5px solid #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(232,106,40,.55);
    transition: transform .2s, box-shadow .2s;
    padding: 0 10px;
    outline: none;
    line-height: 1;
}
.lp-hotspot-dot:hover,
.lp-hotspot-dot:focus-visible {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 3px 16px rgba(232,106,40,.8);
}
/* Numărul ascuns — accesat doar de screen readers */
.lp-hotspot-dot-num {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
/* Prețul afișat în dot */
.lp-hotspot-dot-price {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-hotspot-dot-price small {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0.9;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Animație pulse */
.lp-hotspot-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--lp-primary, #E86A28);
    opacity: 0;
    animation: lp-hs-pulse 2.2s ease-out infinite;
    pointer-events: none;
}
.lp-hotspot-dot:nth-child(3n+1) .lp-hotspot-pulse { animation-delay: 0s; }
.lp-hotspot-dot:nth-child(3n+2) .lp-hotspot-pulse { animation-delay: .7s; }
.lp-hotspot-dot:nth-child(3n+3) .lp-hotspot-pulse { animation-delay: 1.4s; }

@keyframes lp-hs-pulse {
    0%   { transform: scale(1);   opacity: .75; }
    100% { transform: scale(2.4); opacity: 0;   }
}

/* Tooltip */
.lp-hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(15,7,0,.9);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s, transform .18s;
    z-index: 20;
    max-width: 200px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}
.lp-hotspot-tooltip-price {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-primary, #e8a04a);
    letter-spacing: 0.03em;
}
.lp-hotspot-tooltip-price small {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.08em;
}
.lp-hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(15,7,0,.9);
}
.lp-hotspot-dot:hover .lp-hotspot-tooltip,
.lp-hotspot-dot:focus-visible .lp-hotspot-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
    .lp-hotspot-dot { min-width: 38px; height: 38px; border-radius: 19px; padding: 0 8px; }
    .lp-hotspot-dot-price { font-size: 12px; }
    .lp-hotspot-dot-price small { font-size: 8px; }
    .lp-hotspot-section { padding: 56px 0; }
}

/* ── Header: account button ── */
.lp-header-account {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-ink);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--lp-border);
    transition: background var(--lp-transition), color var(--lp-transition), border-color var(--lp-transition);
}
.lp-header-account svg { width: 18px; height: 18px; }
.lp-header-account:hover {
    background: var(--lp-primary-bg);
    color: var(--lp-primary);
    border-color: var(--lp-primary);
}

/* ── Add to cart button ── */
.lp-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lp-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}
.lp-add-to-cart-btn:hover {
    background: var(--lp-primary);
    filter: brightness(1.1);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,106,40,.35);
}
.lp-add-to-cart-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Menu card footer with add-to-cart ── */
.lp-menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--lp-border-light);
    margin-top: auto;
}

/* ── Meniu zilei order form ── */
.lp-meniu-order-form { margin-top: 12px; }

.lp-meniu-course-select {
    margin-bottom: 10px;
}
.lp-meniu-course-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lp-ink-light, #666);
    margin-bottom: 6px;
}
.lp-meniu-course-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-meniu-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1.5px solid transparent;
    transition: border-color .15s, background .15s;
}
.lp-meniu-radio:has(input:checked) {
    border-color: var(--lp-primary);
    background: var(--lp-primary-bg);
}
.lp-meniu-radio input { accent-color: var(--lp-primary); width: 16px; height: 16px; }

.lp-meniu-order-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

/* ── Quantity selector ── */
.lp-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--lp-border);
    border-radius: 8px;
    overflow: hidden;
    height: 38px;
}
.lp-qty-btn {
    width: 34px;
    height: 100%;
    border: none;
    background: var(--lp-cream, #f9f5f0);
    color: var(--lp-ink);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    padding: 0;
    line-height: 1;
}
.lp-qty-btn:hover { background: var(--lp-border-light); }
.lp-qty-input {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--lp-border);
    border-right: 1.5px solid var(--lp-border);
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    height: 100%;
    -moz-appearance: textfield;
    background: #fff;
}
.lp-qty-input::-webkit-outer-spin-button,
.lp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ════════════════════════════════════════════════════════════
   DESIGN v3 — Alternating Dark / Light sections
   Dark bg: #0D0806  |  Cream text: #FEF3EB
════════════════════════════════════════════════════════════ */

/* ── Meniu Restaurant → DARK ── */
.lp-menu-book {
    background:
        linear-gradient(rgba(13,8,6,0.55), rgba(13,8,6,0.55)),
        url('images/food%20top%20view%20set.jpg') center center / cover no-repeat;
    color: #FEF3EB;
    border-top: none;
}
.lp-menu-book::before {
    background: transparent;
}
.lp-menu-book-brand {
    color: #FEF3EB;
}
.lp-menu-book-tagline {
    color: rgba(254,243,235,0.45);
}
.lp-menu-book-cta {
    border-top-color: rgba(255,255,255,0.08);
}
/* Tab bar — override cu selector mai specific decât .lp-menu-book .lp-menu-tabs-wrap */
.lp-menu-book .lp-menu-tabs-wrap {
    background: #0D0806 !important;
    border-bottom: 2px solid rgba(255,255,255,0.09) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
}
.lp-menu-book .lp-menu-tab {
    color: rgba(254,243,235,0.45);
}
.lp-menu-book .lp-menu-tab:hover {
    color: var(--lp-primary, #E86A28);
}
.lp-menu-book .lp-menu-tab-count {
    background: rgba(255,255,255,0.1);
    color: rgba(254,243,235,0.6);
    opacity: 1;
}
.lp-menu-book .lp-menu-tab--active {
    color: var(--lp-primary, #E86A28);
    border-bottom-color: var(--lp-primary, #E86A28);
}
.lp-menu-book .lp-menu-tab--active .lp-menu-tab-count {
    background: var(--lp-primary, #E86A28);
    color: #fff;
}
/* Search bar */
.lp-menu-book .lp-menu-search-bar {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
.lp-menu-book .lp-menu-search-bar:focus-within {
    background: rgba(255,255,255,0.14);
    border-color: var(--lp-primary, #E86A28);
}
.lp-menu-book .lp-menu-search-bar svg {
    color: rgba(254,243,235,0.55);
    stroke: rgba(254,243,235,0.55);
}
.lp-menu-book .lp-menu-search-bar input {
    color: #FEF3EB;
}
.lp-menu-book .lp-menu-search-bar input::placeholder {
    color: rgba(254,243,235,0.38);
}
/* Panel */
.lp-menu-panel-title {
    color: #FEF3EB;
}
.lp-menu-book .lp-menu-panel-title {
    background: rgba(255,255,255,0.1);
    color: #FEF3EB;
}
/* Rows — fiecare card individual frosted glass */
.lp-menu-book .lp-menu-row {
    background: rgba(10,6,3,0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border-bottom: none;
    margin: 0 0 6px 0;
    padding: 14px 16px;
}
.lp-menu-book .lp-menu-row:hover {
    background: rgba(232,106,40,0.18);
}
.lp-menu-row-name {
    color: #FEF3EB;
}
.lp-menu-row-desc {
    color: rgba(254,243,235,0.4);
}
.lp-menu-row-price--empty {
    background: rgba(255,255,255,0.08);
    color: rgba(254,243,235,0.3);
}
.lp-menu-no-results {
    color: rgba(254,243,235,0.35);
}

/* ── Program → DARK ── */
.lp-hours-section {
    background:
        linear-gradient(rgba(13,8,6,0.82), rgba(13,8,6,0.82)),
        url('images/open/open-sign-2026-03-08-23-49-48-utc.jpg') center/cover no-repeat;
}
.lp-hours-section .mc-section-title {
    color: #FEF3EB;
}
.lp-hours-section .mc-section-subtitle {
    color: rgba(254,243,235,0.55);
}
.lp-hours-section .mc-section-label {
    color: rgba(232,106,40,0.85);
    border-color: rgba(232,106,40,0.3);
    background: rgba(232,106,40,0.1);
}
.lp-hours-card {
    background: rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lp-hours-card h3,
.lp-hours-card .lp-hours-section-title {
    color: #FEF3EB;
}
.lp-hours-row {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}
.lp-hours-row.is-today {
    background: rgba(232,106,40,0.14);
    border-color: rgba(232,106,40,0.38);
}
.lp-hours-day {
    color: #fff;
    font-weight: 600;
}
.lp-hours-row.is-today .lp-hours-day {
    color: var(--lp-primary, #E86A28);
}
.lp-hours-time {
    color: rgba(254,243,235,0.9);
    font-weight: 500;
}
.lp-hours-time.is-closed-day {
    color: rgba(254,243,235,0.4);
}

/* ── Contact CTA → DARK ── */
.mc-cta {
    background: #0D0806;
}
.mc-cta .mc-cta-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
}
.mc-cta .mc-cta-card h2 {
    color: #FEF3EB;
}
.mc-cta .mc-cta-card p {
    color: rgba(254,243,235,0.6);
}
.mc-cta .mc-contact-card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.mc-cta .mc-contact-link {
    color: rgba(254,243,235,0.8);
}
.mc-cta .mc-contact-link:hover {
    color: var(--lp-primary, #E86A28);
}
.mc-cta .mc-contact-meta {
    color: rgba(254,243,235,0.55);
}
.mc-cta .mc-section-title {
    color: #FEF3EB;
}
.mc-cta .mc-section-subtitle {
    color: rgba(254,243,235,0.55);
}

/* ── Categorii — adaugă label styling ── */
.mc-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-primary, #E86A28);
    background: rgba(232,106,40,0.08);
    border: 1px solid rgba(232,106,40,0.2);
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

/* ════════════════════════════════════════════════════════════
   PLATOURI CARDS — folosite și pe /platouri/ și pe /meniu/
════════════════════════════════════════════════════════════ */
.lp-plat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.lp-plat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    outline: none;
    display: flex;
    flex-direction: column;
}
.lp-plat-card:hover, .lp-plat-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,.13);
}
.lp-plat-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f0e8;
}
.lp-plat-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.lp-plat-card:hover .lp-plat-card-img { transform: scale(1.05); }
.lp-plat-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; color: #c9b99a;
}
.lp-plat-card-price-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--lp-primary, #E8692A);
    color: #fff;
    font-size: 15px; font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    line-height: 1.2;
}
.lp-plat-card-price-badge span { font-size: 11px; font-weight: 600; opacity: .85; }
.lp-plat-card-body {
    padding: 20px 22px 22px;
    display: flex; flex-direction: column; gap: 6px;
    flex: 1;
}
.lp-plat-card-cat {
    font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lp-primary, #E8692A);
}
.lp-plat-card-title {
    font-size: 1.1rem; font-weight: 700;
    color: var(--lp-ink, #1e1208); margin: 0;
    line-height: 1.3;
}
.lp-plat-card-desc {
    font-size: 13px; color: var(--lp-ink-mid, #7a6a58);
    line-height: 1.55; margin: 0;
    flex: 1;
}
.lp-plat-card-footer {
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid #f0ece4;
    flex-wrap: wrap;
}
.lp-plat-card-detail-btn {
    background: none; border: none; cursor: pointer;
    font-size: 13px; font-weight: 600;
    color: var(--lp-primary, #E8692A);
    display: flex; align-items: center; gap: 5px;
    padding: 0;
    transition: gap .2s;
}
.lp-plat-card-detail-btn:hover { gap: 8px; }
.lp-plat-add-btn {
    margin-left: auto;
    background: var(--lp-primary, #E8692A);
    color: #fff;
    border: none; border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: background .2s, transform .15s;
}
.lp-plat-add-btn:hover { background: #cf5a1e; transform: scale(1.04); }
.lp-plat-add-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.lp-plat-empty {
    text-align: center; padding: 80px 20px; color: #7a6a58;
}
.lp-plat-empty-icon { font-size: 56px; margin-bottom: 16px; }
.lp-plat-empty h3 { font-size: 1.4rem; color: #1e1208; margin: 0 0 10px; }
.lp-plat-empty p { margin: 0 0 24px; }

@media (max-width: 767px) {
    .lp-plat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
    .lp-plat-grid { grid-template-columns: 1fr; }
}

/* Social section — toate stilurile sunt inline în front-page.php */
