/* Extra visual effects not covered by utilities */
#mas-app .hero-clip {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
#mas-app .glass-nav {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#mas-app .custom-green-header{
  background-color: var(--mas-primary);
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 35%, rgba(0,0,0,.08) 100%),
    url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
  background-repeat: repeat;
}
#mas-app .mas-modal-backdrop{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
  display:none;
}
#mas-app .mas-modal{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#mas-app .mas-modal.is-open,
#mas-app .mas-modal-backdrop.is-open{
  display:flex;
}
#mas-app .mas-modal-card{
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
#mas-app .mas-modal-card header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
#mas-app .mas-modal-card header h3{
  margin:0; font-size: 16px; font-weight: 700;
}
#mas-app .mas-modal-close{
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor:pointer;
  padding: 2px 8px;
}
#mas-app .mas-modal-body{
  padding: 16px;
}
#mas-app .mas-qr-img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
}

/* Make WPBakery sections breathe (remove "fixed height" issues) */
.vc_row,
.wpb_row,
.vc_section {
  min-height: unset !important;
}


/* Pagination */
#mas-app .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;border-radius:12px;border:1px solid rgba(0,0,0,.12);margin:0 4px;padding:0 12px;font-weight:700;color:#111;background:#fff;}
#mas-app .page-numbers.current{background:var(--mas-primary);border-color:var(--mas-primary);color:#fff;}
#mas-app .page-numbers:hover{filter:brightness(.97);}
