header{
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    padding-top: 15px;
    padding-bottom: 15px;
}
body{
    font-size: 16px;
}
header.single_tenant_header{
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}
img{
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;;
}
p{
    font-size: 18px;
}
:where(.wp-site-blocks) > *{
    margin-top: 0px;
}
.wp-block-site-logo.is-default-size img{
    width: auto;
    max-width: 110px;
}
.content_wrapper{
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ============================
   HERO SLIDER
============================ */

.mm-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mm-hero-fullheight {
    height: 100vh;
    
    margin-top: 0;
}

.mm-hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.mm-hero-slider .mm-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Info box bottom-left, desktop only */
.mm-hero-info-box {
    position: absolute;
    left: 40px;
    bottom: 40px;
    max-width: 380px;
    background: rgba(34, 15, 35, 0.85); /* tweak to match Figma */
    color: #fff;
    padding: 15px 30px;
    display: flex;
    gap: 24px;
    z-index: 5;
    border-left: 4px solid #FFFFFF;
}

.mm-hero-info-item {
    min-width: 0;
}
.mm-hero-info-item:first-child {
    border-right: 2px solid #FFFFFF33;
    padding-right: 20px;
}

.mm-hero-info-label {
    display: flex;
    
    gap: 8px;
    
    margin-bottom: 8px;
        flex-direction: column;
}

.mm-hero-info-icon {
    font-size: 18px; /* will be replaced by SVG later */
}

.mm-hero-info-title {
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 16px;
}

.mm-hero-info-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.mm-hero-info-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}
.mm-hero-info-icon img {
    max-width: 32px;
}
/* Swiper controls – you will replace arrows with your SVGs via CSS later */
.mm-hero-slider .swiper-button-prev,
.mm-hero-slider .swiper-button-next {
    color: #fff;
}

.mm-hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.mm-hero-slider .swiper-pagination-bullet-active {
    background: #fff;
    width: 18px;
}
.mm-hero-mediumheight {
  max-height: 500px;
  overflow: hidden;
}

.mm-hero-mediumheight .swiper,
.mm-hero-mediumheight .swiper-slide {
  height: 500px;
}
.mm-hero-mediumheight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-shop-page-custom main{
    margin-top: 0px !important;
}
.page-template-shop-page-custom main > div{
    padding-top: 0px !important;
}

/* Hide info box on mobile as requested */
@media (max-width: 768px) {
    .mm-hero-info-box {
        display: none;
    }
}


/* TENATNS PAGE GRID */

.mm-tenants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mm-tenant-card {
  text-decoration: none;
  color: inherit;
}

.mm-tenant-name {
  margin-top: 10px;
  text-align: center;
}
.mm-tenants-grid .mm-tenant-card .mm-tenant-title{
    font-size: 18px;
}
.mm-tenants-grid .mm-tenant-card a{
    text-decoration: none;;
}
/* HEADER BASE */
.mm-header {
    
    background:transparent;
}

.mm-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}
header.single_tenant_header .mm-header-inner{
    padding: 0px 20px;
}
/* LOGO */
.mm-header-logo {
    flex: 0 0 auto;
}

/* NAV */
.mm-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mm-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.mm-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
header.single_tenant_header .mm-menu li a {
    color: #000;
}
/* SEARCH */
.mm-header-search {
    flex: 0 0 auto;
}

.mm-header-search button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* MOBILE TOGGLE (hidden desktop) */
.mm-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* --------------------
   MOBILE STYLES
-------------------- */
@media (max-width: 768px) {

    .mm-header-inner {
        justify-content: space-between;
    }

    /* Hide desktop items */
    .mm-header-search {
        display: none;
    }

    .mm-header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        justify-content: flex-start;
        border-top: 1px solid #eee;
    }

    .mm-header-nav.active {
        display: block;
    }
    .mm-header-nav.active .mm-menu li a{
        color: #000;
    }

    .mm-menu {
        flex-direction: column;
        gap: 0;
    }

    .mm-menu li {
        border-bottom: 1px solid #eee;
    }

    .mm-menu li a {
        display: block;
        padding: 15px 20px;
    }

    .mm-menu-toggle {
        display: block;
    }
}


/* FOOTER */
/* FOOTER BASE */
.mm-footer {
    background: #1b1618;
    color: #fff;
    padding: 60px 40px 30px;
    font-size: 14px;
}

.mm-footer a {
    color: #fff;
    text-decoration: none;
}
.mm-footer a, .mm-footer p{
    font-size: 14px;
}
/* MAIN GRID */
.mm-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* BRAND */
.mm-footer-logo img {
    
    margin-bottom: 16px;
}

.mm-footer-description {
    line-height: 1.6;
    color: #cfcfcf;
}

/* HEADINGS */
.mm-footer-heading {
    color: #caa35c;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

/* LINKS */
.mm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mm-footer-links li {
    margin-bottom: 10px;
}

.mm-footer-links a {
    color: #cfcfcf;
}

.mm-footer-links a:hover {
    color: #fff;
}

/* CONTACT */
.mm-footer-contact p {
    margin-bottom: 10px;
    color: #cfcfcf;
}

/* BOTTOM BAR */
.mm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.mm-footer-copy {
    color: #cfcfcf;
    margin: 0;
}

/* SOCIAL */
.mm-footer-social {
    display: flex;
    gap: 12px;
}

.mm-footer-social a {
    
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* MOBILE */
@media (max-width: 900px) {
    .mm-footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mm-footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}


.mm-tenants-section {
    padding: 30px 0;
}

.mm-section-title {
    font-size: 40px;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
}

.mm-section-desc {
    margin-bottom: 32px;
    color: #666;
}

.mm-tenant-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 16px;
    margin-bottom: 40px;
}

.mm-tenant-filters input,
.mm-tenant-filters select {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.mm-tenants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mm-tenant-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.mm-tenant-title {
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 36px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
    .mm-tenant-filters {
        grid-template-columns: 1fr;
    }

    .mm-tenants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.mm-tenant-categories {
    padding: 60px 0;
}

.mm-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #ddd;
    margin-top: 30px;
}

.mm-category-card {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 40px 24px;
    text-align: left;
    text-decoration: none;
    color: #000;
    position: relative;
}

.mm-category-card:nth-child(5n) {
    border-right: none;
}

.mm-category-icon img {
    max-width: 50px;
    margin-bottom: 20px;
}
.flex_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mm-category-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.mm-category-arrow {
    font-size: 18px;
}
.mm-tenant-offers{
    padding-bottom: 50px;
}
.mm-home-shop-nav{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.flex_btns_link{
    display: flex;
    justify-content: space-between;
}
.next_prev_btns{
    background: #B59255;
    border-radius: 100%;
    /* padding: 10px; */
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.next_prev_btns.swiper-button-disabled{
        background: #D0D5DD;
}
/* Mobile */
@media (max-width: 900px) {
    .mm-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.mm-single-tenant{
    background-color: #f1f1f1;
}
.mm-breadcrumbs {
    padding: 16px 0;
    font-size: 14px;
    
    text-transform: uppercase;
}
.breadcrumb-links {
    display: flex;
    gap: 12px;
    align-items: center;
}
.breadcrumb-links a {
    text-decoration: none;
    color: #475467;
}
.mm-tenant-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
        align-items: center;
    background-repeat: no-repeat;
    background-position: right center;
}

.mm-tenant-sidebar {
    border-left: 1px solid #eee;
    padding-left: 24px;
}
.mm-tenant-sidebar h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.mm-tenant-contact{
    font-size: 16px;
    list-style: none;
    padding: 0;
    margin: 0;

        display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}
.mm-tenant-contact li{
    display: flex;
    align-items: center;
    gap: 13px;
}
.mm-tenant-contact img{
    border: 1px solid #D0D5DD;
    padding: 5px;
    border-radius: 50%;
}
.mm-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mm-offer-date{
    font-size: 14px;
    
}
.mm-offer-date > span{
    background: #A42E80;
    color: #fff;
    border-radius: 10px;
    padding: 3px 10px;
}
.mm-offer-card a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.mm-offer-card a h3{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}
.mm-section-label{
    font-size: 16px;
    color: #B59255;
    display: block;
    font-weight: 500;
    line-height: normal;
}
.mm-home-shop-text .mm-section-title{
    margin: 0;
}
.mm-home-shop-text{
    padding-top: 100px;
}
.mm-section-description{
    max-width: 800px;
}
.mm-home-shop-text a.mm-btn{
    background: #B59255;
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    line-height: normal;
    align-items: center;
}
.mm-shop-swiper{
    margin-top: 40px;
}
.mm-shop-name{
    text-transform: uppercase;
    margin-top: 15px;
}
.mm-shop-image{
    width: 100%;
    height: 312px;
    overflow: hidden;
    position: relative;
}
.dine_wrapper .mm-shop-image{
    height: 256px;
}
.mm-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       
    object-position: center;
    display: block;
}
@media (max-width: 900px) {
    .mm-home-shop-text {
        background-image: none !important;
        padding-top: 20px;
    }
    .mm-tenant-layout{
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .mm-tenant-sidebar{
        padding-left: 0;
    }
}
.full_width_image{
    margin-top: 80px;
}
.dine_full_width{
    width: 100%;
    padding: 50px 0;
    background: #EBDBC726;
}
.dine_wrapper .mm-home-shop-text{
    background-image: none;
    padding-top: 0px;
}
.swiper-button-lock{
    display: block !important;
}