*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --red: #D92B2B;
  --red2: #B81A1A;
  --red-soft: #FFF0F0;
  --dark: #111827;
  --dark2: #1F2937;
  --text: #1a1a2e;
  --muted: #6B7280;
  --border: #E5E7EB;
  --bg: #F3F4F6;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 18px;
  --wa: #25D366;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

button {
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: none;
  background: none
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 800;
  font-size: 14px;
  transition: top .2s
}

.skip-link:focus {
  top: 0
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

/* ───── TOPBAR ───── */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  padding: 6px 0
}

.topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.topbar-left {
  display: flex;
  gap: 20px
}

.open-pill {
  background: rgba(34, 197, 94, .15);
  color: #4ADE80;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.open-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  display: inline-block;
  animation: blink 1.4s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ───── HEADER ───── */
header {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .22)
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0
}

.logo-box {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px
}

.logo-name {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.4px
}

.logo-name small {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .8px;
  opacity: .75;
  text-transform: uppercase;
  margin-top: 1px
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
  justify-content: center
}

.nav-menu a {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff
}

.nav-menu a.active {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

.nav-dropdown {
  position: relative
}

.nav-dropdown:hover>a {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px
}

.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 16px;
  min-width: 1100px;
  z-index: 400;
  display: none;
  flex-wrap: wrap;
  gap: 8px
}

.nav-dropdown:hover .mega-menu {
  display: flex
}

.mega-col {
  flex: 1;
  min-width: 160px;
  padding: 8px
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: var(--text) !important;
  padding: 8px 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 4px;
  text-decoration: none
}

.mega-cat:hover {
  color: var(--red) !important
}

.mega-cat-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover
}

.mega-cat-emoji {
  font-size: 20px
}

.mega-subs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px
}

.mega-sub-link {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #444 !important;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  text-decoration: none
}

.mega-sub-link:hover {
  background: var(--red-soft) !important;
  color: var(--red) !important
}

.mega-sub-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0
}

.mega-subs a:hover {
  background: var(--red-soft);
  color: var(--red)
}

.header-search {
  flex-shrink: 0
}

.search-input {
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-radius: 8px 0 0 8px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  width: 180px;
  outline: none;
  transition: border-color .2s, background .2s
}

.search-input::placeholder {
  color: rgba(255, 255, 255, .5)
}

.search-input:focus {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .15)
}

.search-btn {
  padding: 6.5px 14px;
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .25);
  border-left: none;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s
}

.search-btn:hover {
  background: rgba(255, 255, 255, .25)
}

.mnp-search {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border)
}

.mnp-search form {
  display: flex;
  gap: 0
}

.mnp-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px 0 0 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none
}

.mnp-search button {
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px
}

.mnp-cat {
  font-weight: 700 !important;
  color: var(--text) !important;
  padding-left: 28px !important
}

.mnp-sub {
  padding-left: 48px !important;
  font-size: 13px !important;
  color: var(--muted) !important
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center
}

.hc-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: background .18s, transform .15s
}

.hc-phone:hover {
  background: var(--bg);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s
}

/* ───── MOBILE NAV ───── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, .5)
}

.mobile-nav.open {
  display: block
}

.mobile-nav-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  padding: 0;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0)
}

.mnp-top {
  background: var(--red);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.mnp-top .logo-name {
  font-size: 16px
}

.mnp-close {
  color: #fff;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1
}

.mnp-links {
  padding: 12px 0
}

.mnp-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s
}

.mnp-links a:hover {
  background: var(--red-soft);
  color: var(--red)
}

.mnp-info {
  padding: 16px 20px;
  background: var(--bg);
  border-top: 1px solid var(--border)
}

.mnp-info p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px
}

/* ───── BREADCRUMB ───── */
.breadcrumb {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--muted);
  transition: color .15s;
  font-weight: 600
}

.breadcrumb a:hover {
  color: var(--red)
}

.breadcrumb span {
  font-weight: 800;
  color: var(--text)
}

/* ───── PRODUCT GRID ───── */
.pg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 30px
}

.pc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit
}

.pc:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
  border-color: rgba(217, 43, 43, .3)
}

.pi {
  height: 180px;
  position: relative;
  background: #F9FAFB;
  overflow: hidden;
  flex-shrink: 0
}

.pi img {
  transition: transform .5s ease
}

.pc:hover .pi img {
  transform: scale(1.06)
}

.pbadge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 7px;
  letter-spacing: .3px
}

.bh {
  background: #FEF2F2;
  color: var(--red)
}

.bn {
  background: #ECFDF5;
  color: #065F46
}

.bc {
  background: #EEF3FF;
  color: #1E40AF
}

.pf {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.pn {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.35;
  color: var(--text)
}

.ps {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1
}

.pp {
  font-size: 13px;
  font-weight: 800;
  color: var(--red)
}

.pp small {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-top: 1px
}

.pp-gray {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted)
}

/* ───── PRODUCT MODAL ───── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px
}

.modal-overlay.open {
  display: flex
}

.modal-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .3s ease;
  -webkit-overflow-scrolling: touch
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, color .2s
}

.modal-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.modal-img-wrap {
  display: flex;
  flex-direction: column;
  position: relative
}

.modal-img {
  position: relative;
  height: 380px;
  background: #F9FAFB;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  flex: 1
}

.modal-gallery-track {
  display: flex;
  height: 100%;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none
}

.modal-gallery-track img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  object-fit: contain;
  background: #F9FAFB;
  flex-shrink: 0;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none
}

.modal-img .pbadge {
  top: 14px;
  left: 14px;
  font-size: 11px;
  padding: 4px 12px;
  z-index: 3
}

.modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.modal-gallery-nav:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18)
}

.modal-gallery-nav svg {
  width: 18px;
  height: 18px;
  fill: var(--text)
}

.modal-gallery-prev {
  left: 10px
}

.modal-gallery-next {
  right: 10px
}

.modal-gallery-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px)
}

.modal-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 10px;
  background: #fff;
  border-top: 1px solid var(--border);
  overflow-x: auto;
  border-radius: 0 0 0 var(--radius-lg)
}

.modal-thumbs::-webkit-scrollbar {
  height: 4px
}

.modal-thumbs::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px
}

.modal-thumb {
  width: 58px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all .2s;
  opacity: .55
}

.modal-thumb:hover {
  opacity: .8;
  border-color: var(--muted)
}

.modal-thumb.active {
  border-color: var(--red);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(217, 43, 43, .2)
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.modal-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column
}

.modal-tag {
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: fit-content
}

.modal-info h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.3px
}

.modal-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px
}

.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px
}

.modal-spec {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text)
}

.modal-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 6px
}

.modal-price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-top: 2px
}

.modal-actions {
  margin-top: auto;
  padding-top: 16px
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: background .2s, transform .15s
}

.modal-btn:hover {
  background: #1EBE57;
  transform: translateY(-2px)
}

.modal-warn {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px
}

/* ───── WHATSAPP FLOAT ───── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
  z-index: 9
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5)
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff
}

.wa-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  animation: waPulse 2s infinite
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .5
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

/* ───── BACK TO TOP ───── */
.btt {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 450;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: transform .2s, background .2s
}

.btt:hover {
  transform: translateY(-2px);
  background: var(--red)
}

.btt svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

/* ───── FOOTER ───── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .5);
  padding: 48px 0 0
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.fb-logo .logo-box {
  background: transparent;
  flex-shrink: 0;
  width: 48px;
  height: 48px
}

.fb-lname {
  font-size: 17px;
  font-weight: 900;
  color: #fff
}

.fb-lsub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  opacity: .6;
  text-transform: uppercase
}

footer p {
  font-size: 12px;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 18px
}

footer h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .2px
}

footer ul {
  list-style: none
}

footer ul li {
  margin-bottom: 8px
}

footer ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

footer ul li a:hover {
  color: #fff
}

.fb-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 20px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 8px
}

/* ───── SHARED RESPONSIVE ───── */
@media(max-width:1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:860px) {
  .topbar {
    display: none
  }

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

  .nav-menu,
  .header-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mega-menu {
    display: none !important
  }

  .header-search {
    display: none
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .modal-overlay {
    padding: 0
  }

  .modal-panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    overflow-y: auto
  }

  .modal-body {
    grid-template-columns: 1fr
  }

  .modal-img-wrap {
    position: relative
  }

  .modal-img {
    height: 300px;
    border-radius: 0
  }

  .modal-thumbs {
    border-radius: 0;
    padding: 8px
  }

  .modal-gallery-prev {
    left: 8px
  }

  .modal-gallery-next {
    right: 8px
  }

  .modal-gallery-nav {
    width: 34px;
    height: 34px
  }

  .modal-gallery-nav svg {
    width: 16px;
    height: 16px
  }

  .modal-thumb {
    width: 52px;
    height: 40px
  }

  .modal-close {
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .9);
    z-index: 10
  }

  .modal-info {
    padding: 20px 20px 32px
  }

  .modal-info h2 {
    font-size: 20px
  }
}

@media(max-width:600px) {
  .pg {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .modal-img {
    height: 260px
  }

  .modal-gallery-nav {
    width: 30px;
    height: 30px
  }

  .modal-gallery-nav svg {
    width: 14px;
    height: 14px
  }

  .modal-thumb {
    width: 46px;
    height: 34px
  }

  .modal-info {
    padding: 16px 16px 28px
  }

  .modal-info h2 {
    font-size: 18px
  }

  .modal-spec {
    font-size: 10px;
    padding: 4px 8px
  }

  .modal-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px
  }

  .wa-float {
    bottom: 16px;
    right: 16px
  }

  .wa-btn {
    width: 52px;
    height: 52px;
    font-size: 24px
  }

  .wa-btn svg {
    width: 24px;
    height: 24px
  }

  .btt {
    width: 40px;
    height: 40px;
    left: 16px;
    bottom: 16px
  }
}