/* =========================================================
   MAO FISH POINT — THEME (redesign)
   All rules are namespaced with "mfp-" so they never clash
   with the legacy bootstrap/style.css already loaded.
   ========================================================= */

:root{
  --mfp-primary: #E4472A;
  --mfp-primary-dark: #BE3419;
  --mfp-secondary: #0B3D4C;
  --mfp-secondary-light: #124F63;
  --mfp-whatsapp: #25D366;
  --mfp-whatsapp-dark: #1EBE5D;
  --mfp-bg: #F6F7F9;
  --mfp-card: #FFFFFF;
  --mfp-text: #1F2430;
  --mfp-muted: #6B7280;
  --mfp-border: #E7E9EC;
  --mfp-radius: 14px;
  --mfp-radius-sm: 8px;
  --mfp-shadow: 0 4px 16px rgba(15, 30, 40, .08);
  --mfp-shadow-lg: 0 10px 30px rgba(15, 30, 40, .16);
  --mfp-header-h: 68px;
}

body{
  background: var(--mfp-bg);
  color: var(--mfp-text);
  font-family: 'Poppins', sans-serif;
}

a{ text-decoration:none; }
img{ max-width:100%; }

.mfp-container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------- HEADER ---------- */
.mfp-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #E4472A;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.mfp-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: var(--mfp-header-h);
}

.mfp-logo{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-weight:700;
  font-size:22px;
  letter-spacing:.5px;
  white-space:nowrap;
}
.mfp-logo span{ color:#fff; }
.mfp-logo .mfp-logo-accent{ color: #FFB199; }

.mfp-nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0; padding:0;
}
.mfp-nav-links a{
  color:#fff;
  opacity:.88;
  font-weight:500;
  font-size:15px;
  transition:.2s;
}
.mfp-nav-links a:hover, .mfp-nav-links a.active{
  opacity:1;
  color:#FFD8CC;
}

.mfp-nav-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.mfp-cart-btn{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:18px;
  cursor:pointer;
  border:none;
}
.mfp-cart-btn:hover{ background:rgba(255,255,255,.22); }

.mfp-cart-badge{
  position:absolute;
  top:-4px; right:-4px;
  background:#fff;
  color: var(--mfp-primary);
  font-size:11px;
  font-weight:700;
  min-width:18px; height:18px;
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  padding:0 4px;
  border:2px solid #E4472A;
}

.mfp-burger{
  display:none;
  width:42px; height:42px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.mfp-mobile-nav{
  display:none;
  flex-direction:column;
  background: #E4472A;
  padding: 8px 18px 18px;
}
.mfp-mobile-nav.open{ display:flex; }
.mfp-mobile-nav a{
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  font-weight:500;
}

@media (max-width: 860px){
  .mfp-nav-links{ display:none; }
  .mfp-burger{ display:flex; align-items:center; justify-content:center; }
}

/* ---------- HERO (compact intro) ---------- */
.mfp-hero{
  background:
    linear-gradient(120deg, rgba(11,61,76,.94), rgba(11,61,76,.82)),
    var(--mfp-secondary);
  padding: 28px 0 8px;
  color:#fff;
}
.mfp-hero-text{ text-align:center; max-width:640px; margin:0 auto; }
.mfp-hero-text h1{
  font-size: 26px;
  font-weight:700;
  margin-bottom:8px;
}
.mfp-hero-text p{
  font-size:14.5px;
  opacity:.9;
  line-height:1.6;
  margin:0 auto;
}
.mfp-hero-cta{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

@media (max-width: 760px){
  .mfp-hero-text h1{ font-size:21px; }
}

/* ---------- GLOVO-STYLE PROMO CAROUSEL ---------- */
.mfp-promo-wrap{
  background: var(--mfp-secondary);
  padding: 18px 0 34px;
}
.mfp-promo-carousel{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  height:200px;
  box-shadow: var(--mfp-shadow-lg);
  background: var(--mfp-secondary);
}
@media (min-width:600px){
  .mfp-promo-carousel{ height:280px; }
}
@media (min-width:992px){
  .mfp-promo-carousel{ height:380px; }
}

.mfp-promo-slide{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity .7s ease;
  background-size:100% 100%;
  background-repeat:no-repeat;
  background-position:center;
  background-color: var(--mfp-secondary);
  z-index:1;
}
.mfp-promo-slide.active{ opacity:1; z-index:2; }
.mfp-promo-slide::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(5,15,20,.72) 0%, rgba(5,15,20,.15) 55%, rgba(5,15,20,0) 80%);
}

.mfp-promo-caption{
  position:absolute; left:20px; right:20px; bottom:20px;
  z-index:3;
  color:#fff;
}
.mfp-promo-caption span.mfp-promo-tag{
  display:inline-block;
  background: var(--mfp-primary);
  font-size:11px;
  font-weight:700;
  padding:3px 10px;
  border-radius:999px;
  margin-bottom:8px;
}
.mfp-promo-caption h3{ font-size:19px; font-weight:700; margin:0 0 4px; }
.mfp-promo-caption p{ font-size:12.5px; opacity:.9; margin:0; max-width:440px; }
@media (min-width:768px){
  .mfp-promo-caption h3{ font-size:26px; }
  .mfp-promo-caption p{ font-size:14px; }
}

.mfp-promo-dots{
  position:absolute; bottom:16px; right:20px; z-index:4;
  display:flex; gap:6px;
}
.mfp-promo-dot{
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,.5);
  border:none; padding:0; cursor:pointer;
  transition:.2s;
}
.mfp-promo-dot.active{ background:#fff; width:20px; border-radius:5px; }

.mfp-promo-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.9); border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:17px; color: var(--mfp-secondary); cursor:pointer; z-index:4;
  opacity:0; transition:.2s;
}
.mfp-promo-carousel:hover .mfp-promo-arrow{ opacity:1; }
.mfp-promo-arrow.prev{ left:14px; }
.mfp-promo-arrow.next{ right:14px; }
@media (max-width:600px){ .mfp-promo-arrow{ display:none; } }

/* ---------- SECTION HEADS ---------- */
.mfp-section{ padding: 36px 0; }
.mfp-section-head{ margin-bottom:18px; }
.mfp-section-head h2{
  font-size:22px;
  font-weight:700;
  color:var(--mfp-text);
  margin:0 0 4px;
}
.mfp-section-head p{
  color:var(--mfp-muted);
  font-size:14px;
  margin:0;
}

/* ---------- CATEGORY CHIPS (small, even on large screens) ---------- */
.mfp-categories{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 96px));
  gap:14px;
  justify-content:flex-start;
}
.mfp-cat-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  width:96px;
}
.mfp-cat-thumb{
  width:72px; height:72px;
  border-radius:2px;
  overflow:hidden;
  border:2px solid var(--mfp-border);
  background:#fff;
  box-shadow: var(--mfp-shadow);
  transition:.2s;
}
.mfp-cat-item:hover .mfp-cat-thumb{
  border-color: var(--mfp-primary);
  transform: translateY(-2px);
}
.mfp-cat-thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.mfp-cat-label{
  margin-top:8px;
  font-size:12px;
  font-weight:600;
  color:var(--mfp-text);
  line-height:1.25;
}

@media (max-width: 480px){
  .mfp-categories{
    grid-template-columns: repeat(auto-fill, minmax(72px, 84px));
    gap:10px;
  }
  .mfp-cat-item{ width:84px; }
  .mfp-cat-thumb{ width:64px; height:64px; }
}

/* ---------- PRODUCT GRID / CARDS ---------- */
.mfp-product-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr); /* small / mobile screens */
  gap:18px;
}

@media (max-width: 480px){
  .mfp-product-grid{ gap:10px; }
}

/* medium screens: 3 per row */
@media (min-width: 768px){
  .mfp-product-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* large screens: 4 per row */
@media (min-width: 1100px){
  .mfp-product-grid{ grid-template-columns: repeat(4, 1fr); }
}

.mfp-product-card{
  background: var(--mfp-card);
  border-radius: var(--mfp-radius);
  box-shadow: var(--mfp-shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:.2s;
  border:1px solid var(--mfp-border);
}
.mfp-product-card:hover{
  box-shadow: var(--mfp-shadow-lg);
  transform: translateY(-3px);
}

.mfp-product-img{
  width:100%;
  height:170px;
  overflow:hidden;
  background:#f1f2f4;
  display:block;
}
.mfp-product-img img{
  width:100%; height:100%; object-fit:cover; display:block; transition:.35s;
}
.mfp-product-card:hover .mfp-product-img img{ transform:scale(1.06); }

@media (min-width: 768px){
  .mfp-product-img{ height:230px; }
}

.mfp-product-body{
  padding:12px 14px 14px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.mfp-product-title{
  font-size:14.5px;
  font-weight:600;
  color:var(--mfp-text);
  margin:0 0 4px;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:37px;
}
.mfp-product-desc{
  font-size:12.5px;
  color:var(--mfp-muted);
  margin:0 0 8px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:32px;
}
.mfp-product-price{
  font-size:16px;
  font-weight:700;
  color:var(--mfp-primary);
  margin: 0 0 10px;
}

.mfp-product-actions{
  display:flex;
  gap:8px;
  margin-top:auto;
}

.mfp-btn{
  flex:1;
  border:none;
  border-radius: var(--mfp-radius-sm);
  padding:9px 8px;
  font-size:12.5px;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  transition:.2s;
  white-space:nowrap;
}
.mfp-btn-outline{
  background:#fff;
  color: var(--mfp-secondary);
  border:1.5px solid var(--mfp-secondary);
}
.mfp-btn-outline:hover{ background: var(--mfp-secondary); color:#fff; }

.mfp-btn-primary{
  background: var(--mfp-primary);
  color:#fff;
}
.mfp-btn-primary:hover{ background: var(--mfp-primary-dark); }

.mfp-btn-whatsapp{
  background: var(--mfp-whatsapp);
  color:#fff;
}
.mfp-btn-whatsapp:hover{ background: var(--mfp-whatsapp-dark); }

.mfp-btn-block{ width:100%; flex:none; }

/* ---------- TOAST ---------- */
.mfp-toast{
  position:fixed;
  left:50%;
  bottom:26px;
  transform: translateX(-50%) translateY(20px);
  background: var(--mfp-text);
  color:#fff;
  padding:12px 18px;
  border-radius: 999px;
  font-size:13.5px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow: var(--mfp-shadow-lg);
  z-index:1600;
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
}
.mfp-toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(0);
  pointer-events:auto;
}
.mfp-toast a, .mfp-toast button{
  color: #7CFFB2;
  font-weight:700;
  background:none;
  border:none;
  cursor:pointer;
  font-size:13.5px;
  white-space:nowrap;
}

/* ---------- CART DRAWER ---------- */
.mfp-cart-overlay{
  position:fixed; inset:0;
  background:rgba(10,15,20,.5);
  z-index:1800;
  opacity:0;
  pointer-events:none;
  transition:.25s;
}
.mfp-cart-overlay.open{ opacity:1; pointer-events:auto; }

.mfp-cart-drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:400px;
  max-width:92vw;
  background:#fff;
  z-index:1900;
  display:flex;
  flex-direction:column;
  transform: translateX(100%);
  transition:.28s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,.2);
}
.mfp-cart-drawer.open{ transform: translateX(0); }

.mfp-cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px;
  border-bottom:1px solid var(--mfp-border);
}
.mfp-cart-head h3{ margin:0; font-size:18px; font-weight:700; }
.mfp-cart-close{
  border:none; background:#f1f2f4; width:34px; height:34px; border-radius:50%;
  font-size:16px; cursor:pointer; color:var(--mfp-text);
}

.mfp-cart-items{
  flex:1;
  overflow-y:auto;
  padding: 10px 18px;
}

.mfp-cart-empty{
  text-align:center;
  color:var(--mfp-muted);
  padding: 60px 20px;
  font-size:14px;
}

.mfp-cart-item{
  display:flex;
  gap:12px;
  padding:14px 0;
  border-bottom:1px solid var(--mfp-border);
}
.mfp-cart-item img{
  width:64px; height:64px; border-radius:10px; object-fit:cover; flex-shrink:0; background:#f1f2f4;
}
.mfp-cart-item-info{ flex:1; min-width:0; }
.mfp-cart-item-title{
  font-size:13.5px; font-weight:600; margin:0 0 4px;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.mfp-cart-item-price{ font-size:13px; color:var(--mfp-primary); font-weight:700; margin:0 0 8px; }

.mfp-qty-control{
  display:flex;
  align-items:center;
  gap:10px;
}
.mfp-qty-control button{
  width:26px; height:26px;
  border-radius:6px;
  border:1px solid var(--mfp-border);
  background:#fafafa;
  cursor:pointer;
  font-weight:700;
  color:var(--mfp-text);
}
.mfp-qty-control span{ font-size:13px; font-weight:600; min-width:16px; text-align:center; }

.mfp-cart-item-remove{
  border:none; background:none; color:#b5b8bf; cursor:pointer; font-size:15px;
  align-self:flex-start;
}
.mfp-cart-item-remove:hover{ color:var(--mfp-primary); }

.mfp-cart-foot{
  padding:16px 18px 20px;
  border-top:1px solid var(--mfp-border);
}
.mfp-cart-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  font-weight:700;
  margin-bottom:12px;
}
.mfp-cart-total-row span:last-child{ color: var(--mfp-primary); }
.mfp-cart-note{
  font-size:12px;
  color:var(--mfp-muted);
  margin-bottom:12px;
  line-height:1.5;
}

.mfp-fab-cart{
  display:none;
  position:fixed;
  right:18px; bottom:18px;
  z-index:900;
  background: var(--mfp-primary);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  font-size:14px;
  box-shadow: var(--mfp-shadow-lg);
  align-items:center;
  gap:8px;
}
.mfp-fab-cart.show{ display:inline-flex; }

/* ---------- BOTTOM NAV (mobile) ---------- */
.mfp-bottom-nav{
  display:none;
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:1500;
  background:#fff;
  border-top:1px solid var(--mfp-border);
  box-shadow: 0 -4px 16px rgba(15,30,40,.1);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  align-items:stretch;
}
.mfp-bn-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:6px 2px;
  border:none;
  background:none;
  color: var(--mfp-muted);
  font-size:10.5px;
  font-weight:600;
  border-radius:10px;
  transition:.15s;
}
.mfp-bn-item i{ font-size:18px; }
.mfp-bn-item.active,
.mfp-bn-item:hover{
  color: var(--mfp-primary);
}
.mfp-bn-icon-wrap{ position:relative; display:inline-flex; }
.mfp-bn-badge{
  position:absolute;
  top:-6px; right:-10px;
  background: var(--mfp-primary);
  color:#fff;
  font-size:10px;
  font-weight:700;
  min-width:16px; height:16px;
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  padding:0 3px;
}

@media (max-width: 860px){
  .mfp-bottom-nav{ display:flex; }
  body{ padding-bottom: 64px; }
  .mfp-cart-btn{ display:none; } /* cart now lives in the bottom nav */
}

/* ---------- OFFER BADGES / PRICING ---------- */
.mfp-product-card{ position:relative; }
.mfp-offer-badge{
  position:absolute;
  top:10px; left:10px;
  z-index:5;
  background: var(--mfp-primary);
  color:#fff;
  font-size:10.5px;
  font-weight:700;
  padding:4px 10px;
  border-radius:999px;
  box-shadow: var(--mfp-shadow);
}
.mfp-price-original{
  text-decoration: line-through;
  color: var(--mfp-muted);
  font-weight:500;
  font-size:13px;
  margin-right:8px;
}
.mfp-price-offer{
  color: var(--mfp-primary);
  font-weight:700;
}


/* ---------- FOOTER ---------- */
.mfp-footer{
  background: var(--mfp-secondary);
  color:#dfe8ea;
  padding: 46px 0 20px;
  margin-top:30px;
}
.mfp-footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:28px;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.mfp-footer h4{
  color:#fff;
  font-size:16px;
  font-weight:700;
  margin-bottom:14px;
}
.mfp-footer p{ font-size:13.5px; line-height:1.7; color:#c3d2d6; }
.mfp-footer ul{ list-style:none; margin:0; padding:0; }
.mfp-footer ul li{ margin-bottom:10px; font-size:13.5px; color:#c3d2d6; }
.mfp-footer ul li a{ color:#c3d2d6; transition:.2s; }
.mfp-footer ul li a:hover{ color:#fff; }

.mfp-footer-app img{ width:140px; margin-top:6px; }

.mfp-social{ display:flex; gap:10px; margin-top:4px; }
.mfp-social a{
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
}
.mfp-social a img{ width:16px; height:16px; }
.mfp-social a:hover{ background: var(--mfp-primary); }

.mfp-footer-bottom{
  text-align:center;
  font-size:12.5px;
  color:#9fb4b9;
  padding-top:16px;
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.mfp-pd-section{ padding: 32px 0 50px; }
.mfp-pd-grid{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
}
.mfp-pd-media{
  flex:0 0 380px;
  max-width:380px;
}
.mfp-pd-media img{
  width:100%;
  border-radius: var(--mfp-radius);
  box-shadow: var(--mfp-shadow);
}
.mfp-pd-info{ flex:1; min-width:280px; }
.mfp-pd-info h1{ font-size:24px; font-weight:700; margin-bottom:8px; }
.mfp-pd-meta{ font-size:13.5px; color:var(--mfp-muted); margin-bottom:14px; }
.mfp-pd-price{ font-size:24px; font-weight:700; color:var(--mfp-primary); margin-bottom:14px; }
.mfp-pd-desc{ font-size:14.5px; color:var(--mfp-text); line-height:1.7; margin-bottom:20px; }

.mfp-pd-qty-label{ font-size:13.5px; font-weight:600; margin-bottom:8px; }
.mfp-pd-qty-box{
  display:flex; align-items:center; gap:14px; margin-bottom:22px;
}
.mfp-pd-qty-box .mfp-qty-control button{ width:36px; height:36px; font-size:16px; }
.mfp-pd-qty-box .mfp-qty-control span{ font-size:16px; min-width:24px; }

.mfp-pd-total{
  font-size:16px; font-weight:700; margin-bottom:18px;
}
.mfp-pd-total span{ color:var(--mfp-primary); }

.mfp-pd-actions{ display:flex; gap:12px; flex-wrap:wrap; max-width:420px; }
.mfp-pd-actions .mfp-btn{ padding:13px 10px; font-size:14px; flex:1 1 160px; }

.mfp-pd-till{
  margin-top:24px;
  max-width:220px;
}
.mfp-pd-till img{ border-radius:10px; box-shadow:var(--mfp-shadow); }
.mfp-pd-till-label{ font-size:12px; color:var(--mfp-muted); margin-top:6px; }

@media (max-width:760px){
  .mfp-pd-media{ flex:0 0 100%; max-width:100%; }
}

.mfp-pd-notice{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:10px;
  font-size:13px;
  line-height:1.5;
  margin-bottom:12px;
}
.mfp-pd-notice i{ font-size:16px; margin-top:1px; }
.mfp-pd-notice-delivery{
  background:#FFF4EC;
  color: var(--mfp-primary-dark);
  border:1px solid #FFD9C2;
}
.mfp-pd-notice-time{
  background:#E9F9EF;
  color:#127A3B;
  border:1px solid #B7EAC6;
  font-weight:600;
}
.mfp-pd-notice-fillet{
  background:#EEF6FA;
  color: var(--mfp-secondary);
  border:1px solid #CFE6EE;
}

/* ---------- GENERIC PAGE HERO (about / contact) ---------- */
.mfp-page-hero{
  background: linear-gradient(120deg, rgba(11,61,76,.95), rgba(11,61,76,.8)), var(--mfp-secondary);
  color:#fff;
  padding: 40px 0;
  text-align:center;
}
.mfp-page-hero h1{ font-size:28px; font-weight:700; margin:0; }

.mfp-empty-msg{
  text-align:center;
  padding:40px 20px;
  color:var(--mfp-muted);
  background:#fff;
  border-radius:var(--mfp-radius);
  box-shadow:var(--mfp-shadow);
}
