/* ── GLOBAL OVERFLOW FIX ── */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #3E2723;
}

::-webkit-scrollbar-thumb {
    background: #8B634B;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5D4037;
}

/* ── HERO SLIDER ── */
.lm-hero { 
    position: relative; 
    width: 100%; 
    margin-top: -68px; 
    overflow: hidden; 
    padding: 0 !important; 
    height: calc(100vh + 68px) !important; 
}
.lm-hero .owl-carousel, 
.lm-hero .owl-stage-outer, 
.lm-hero .owl-stage { 
    height: 100% !important; 
}
.lm-hero .owl-item { 
    height: calc(100vh + 68px) !important; 
    min-height: 600px; 
}

.lm-hero .slider-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lm-hero .slider-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 12, 10, 0.7) 0%, rgba(18, 12, 10, 0.4) 50%, rgba(18, 12, 10, 0.75) 100%);
}

.lm-hero .slider-item .slider-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.lm-hero .slider-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 30px rgba(0, 0, 0, 0.5);
}

.lm-hero .slider-text .slide-tag {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 4px;
    color: #c9a96e;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.lm-hero .slider-text .slide-tag::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #c9a96e;
    margin: 8px auto 0;
    opacity: 0.8;
}

.lm-hero .slider-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.lm-hero .slider-text-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 2rem;
    border: none;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: none;
}

.lm-hero .slider-text .btn-hero {
    display: inline-block;
    padding: 13px 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50px;
    margin: 0 10px;
    background: transparent;
    text-shadow: none;
}

.lm-hero .slider-text .btn-hero:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lm-hero .slider-text .btn-hero.filled {
    background: #c9a96e;
    color: #111;
    border-color: #c9a96e;
    font-weight: 700;
}

.lm-hero .slider-text .btn-hero.filled:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.4);
}

.lm-hero .owl-dots {
    display: none !important;
}

.lm-hero .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.lm-hero .owl-dots .owl-dot.active span {
    background: #8B634B;
    border-color: #8B634B;
}

/* ── INFO BAR ── */
.lm-info-bar {
    background: linear-gradient(90deg, #3E2723 0%, #5D4037 100%);
    padding: 1.2rem 0;
    width: 100%;
    position: relative;
}

.lm-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.lm-info-bar .info-item i {
    color: #a17860;
    font-size: 1.1rem;
}

.lm-info-bar .info-item strong {
    color: #fff;
}

.lm-info-bar .social-icons a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: color 0.3s;
    margin-left: 12px;
    text-decoration: none;
}

.lm-info-bar .social-icons a:hover {
    color: #a17860;
}

/* ── SECTION COMMON ── */
.lm-section {
    padding: 3rem 0;
    width: 100%;
    position: relative;
}

.lm-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.lm-section .section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lm-section .section-heading p {
    color: #8B634B;
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 0.95rem;
}

.lm-section.dark .section-heading h2 {
    color: #fff;
}

.lm-section.dark .section-heading p {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Global btn-hero outside hero ── */
.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #8B634B;
    color: #8B634B;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-hero:hover {
    background: #8B634B;
    color: #fff;
}

.btn-hero.filled {
    background: #8B634B;
    color: #fff;
    border-color: #8B634B;
}

.btn-hero.filled:hover {
    background: #5D4037;
    border-color: #5D4037;
    color: #fff;
}

/* ── WELCOME / ABOUT ── */
.lm-welcome {
    background: #fff;
}

.lm-welcome .welcome-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #3E2723;
    margin-bottom: 1rem;
}

.lm-welcome .welcome-text h2 span {
    color: #8B634B;
}

.lm-welcome .welcome-text p {
    color: #6D4C41;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── SERVICES ── */
.lm-services {
    background: linear-gradient(180deg, #FAF3EF 0%, #fff 100%);
}

.lm-service-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.lm-service-card .icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid #8B634B;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: all 0.3s;
}

.lm-service-card .icon-wrap i {
    transform: rotate(-45deg);
    font-size: 1.8rem;
    color: #8B634B;
}

.lm-service-card:hover .icon-wrap {
    background: #8B634B;
}

.lm-service-card:hover .icon-wrap i {
    color: #fff;
}

.lm-service-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #3E2723;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lm-service-card p {
    color: #8D6E63;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── MENU GRID (SMALL BOXES) ── */
.lm-menu-section {
    background: #3E2723;
    padding: 3rem 0 0 0;
    width: 100%;
    overflow: hidden !important;
    position: relative;
}

.lm-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden !important;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.lm-menu-grid::-webkit-scrollbar {
    display: none;
}

/* Chrome, Safari, Opera */
.lm-menu-card {
    position: relative;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 300px;
    transition: none !important;
}

.lm-menu-card:hover {
    transform: none;
    box-shadow: none;
}

.lm-menu-card .img-wrap {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.lm-menu-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.lm-menu-card:hover .img-wrap img {
    transform: scale(1.1);
}

.lm-menu-card .menu-text {
    width: 50%;
    height: 100%;
    padding: 2rem 1.5rem;
    background: #4E342E;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

.lm-menu-card .menu-text h6 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.lm-menu-card .menu-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lm-menu-card .menu-text .price-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.lm-menu-card .menu-text .price {
    color: #c9a96e;
    font-weight: 700;
    font-size: 1.1rem;
}

.lm-menu-card .menu-text .btn-order {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.lm-menu-card .menu-text .btn-order:hover {
    background: #c9a96e;
    border-color: #c9a96e;
    color: #111;
}

/* Alternate Rows for checkerboard effect */
.lm-menu-card:nth-child(n+4):nth-child(-n+6),
.lm-menu-card:nth-child(n+10):nth-child(-n+12) {
    flex-direction: row-reverse;
}

.lm-menu-card:nth-child(n+4):nth-child(-n+6) .menu-text,
.lm-menu-card:nth-child(n+10):nth-child(-n+12) .menu-text {
    background: #5D4037;
    /* Lighter shade for alternating row text */
}

/* ── TABBED MENU (FULL MENU) ── */
.lm-tab-menu-wrapper {
    padding: 0;
    background: #4E342E;
    width: 100%;
    overflow: hidden !important;
}

.lm-tab-menu-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100%;
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
    .lm-tab-menu-img {
        min-height: 400px;
    }
}

.lm-tab-content-area {
    padding: 5rem 3rem;
}

.lm-nav-pills {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lm-nav-pills .nav-link {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.lm-nav-pills .nav-link.active,
.lm-nav-pills .nav-link:hover {
    background: transparent;
    border-color: #c9a96e;
    color: #c9a96e;
}

.lm-tab-item {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lm-tab-item .img-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid rgba(255, 255, 255, 0.05);
}

.lm-tab-item h5 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.lm-tab-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lm-tab-item .price {
    color: #c9a96e;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.lm-tab-item .btn-add {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    padding: 6px 18px;
    font-size: 0.75rem;
    border-radius: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.lm-tab-item .btn-add:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

/* ── GALLERY ── */
.lm-gallery {
    background: #3E2723;
    padding: 0;
    overflow: hidden;
}

.lm-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.lm-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.lm-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s, filter 0.6s;
}

.lm-gallery .gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.lm-gallery .gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 39, 35, 0.6);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.lm-gallery .gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

/* ── COUNTER / STATS ── */
.lm-counter {
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=60&w=1400&auto=format&fit=crop') center/cover fixed;
}

.lm-counter .overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 39, 35, 0.85);
}

.lm-counter-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lm-counter-item .icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border: 2px solid #8B634B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-counter-item .icon-wrap i {
    font-size: 1.5rem;
    color: #8B634B;
}

.lm-counter-item .counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.lm-counter-item .counter-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}

/* ── CONTACT / APPOINTMENT ── */
.lm-contact {
    background: #3E2723;
}

.lm-contact .contact-form {
    background: #4E342E;
    padding: 2.5rem;
    border-radius: 8px;
}

.lm-contact .contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.lm-contact .contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.lm-contact .contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.lm-contact .contact-form .form-control:focus {
    border-color: #8B634B;
    box-shadow: 0 0 0 2px rgba(139, 99, 75, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.lm-contact .contact-form .btn-submit {
    background: #8B634B;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.lm-contact .contact-form .btn-submit:hover {
    background: #5D4037;
}

.lm-contact .map-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.lm-contact .map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── REVIEWS ── */
.lm-reviews {
    background: #FAF3EF;
}

.lm-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(139, 99, 75, 0.08);
    border: 1px solid rgba(139, 99, 75, 0.06);
}

.lm-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 99, 75, 0.12);
}

.lm-review-card .stars {
    color: #8B634B;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lm-review-card p {
    font-style: italic;
    color: #6D4C41;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.lm-review-card .reviewer {
    font-weight: 700;
    color: #3E2723;
    font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .lm-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .lm-hero .slider-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .lm-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lm-hero .slider-text h1 {
        font-size: 2rem;
    }

    .lm-hero .slider-text .btn-hero {
        padding: 10px 24px;
        font-size: 0.75rem;
    }

    .lm-hero .slider-text-inner {
        padding: 1rem 0.5rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .lm-hero .slider-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .lm-section {
        padding: 3rem 0;
    }

    .lm-counter-item .counter-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .lm-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

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