
        .lm-shops-page {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, #FAFAFA 0%, #F0FDFA 100%);
        }

        .lm-wrapper {
            max-width: 1400px;
            margin: auto;
            padding: 50px 109px;
            padding-bottom: 80px;
        }






/*.lm-meta {*/
/*    margin-top: 10px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 6px;*/
/*    font-size: 14px;*/
/*    color: #555;*/
/*}*/

/*.meta-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*}*/

/*.meta-item i {*/
/*    color: #e63946;*/
/*    font-size: 14px;*/
/*}*/




/* GRID */
.lm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 360px));
    gap: 30px;
}

/* CARD */
.lm-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.lm-img-wrapper {
    position: relative;
    overflow: hidden;
}

.lm-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lm-card:hover .lm-cover {
    transform: scale(1.05);
}

/* Soft Gradient Overlay */
.lm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* Logo overlapping */
.lm-logo {
    position: absolute;
    bottom: 0px;
    left: 5px;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      
}

.lm-logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 50%;
}

/* Category badge */
.lm-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #14B8A6;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.business_type {
    background: #14B8A6;
    color: #fff;
    width: 25%;
 padding: 2px 1px;
    font-size: 12px;
    border-radius: 4px;
    text-align: center;
}

/* BODY */
.lm-card-body {
     padding: 14px 7px 20px;
     display: flex;
    flex-direction: column;
    flex: 1;
}

.lm-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lm-desc {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 15px;
}

.lm-meta {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}

/* BUTTON */
.lm-btn {
    margin-top: auto;
    padding: 12px;
    text-align: center;
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.lm-btn:hover {
    opacity: 0.9;
}


      
        
.hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image styling */
.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps it filling properly */
    top: 0;
    left: 0;
    z-index: 0;
}

/* Content above image */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.hero .swiper {
    width: 100%;
}

.hero .swiper-slide {
    width: 100% !important;
}



        /* RESPONSIVE */
        @media (max-width:768px) {
             .lm-wrapper {
        padding: 10px 20px;
    }
        
            .lm-search-row { flex-direction: column; }
            .lm-search-btn { width: 100%; }
        }
