/* =========================
   KEBAILO — Studio-Chic UI
   ========================= */

:root{
  --bg: #F9F9F7;
  --text: #2F2F2F;
  --muted: rgba(47,47,47,.72);
  --muted2: rgba(47,47,47,.55);

  --accent: #840f0a;      /* principal */
  --accent2: #700a08;     /* segundo tono (más oscuro) */
  --accent-rgb: 132, 15, 10;
  --accent2-rgb: 112, 10, 8;

  --card: rgba(255,255,255,.75);
  --line: rgba(47,47,47,.10);
  --shadow: 0 18px 50px rgba(47,47,47,.08);
  --radius: 18px;
  --radius-sm: 14px;
  --serif: "DM Serif Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

img{ max-width:100%; display:block; border-radius:var(--radius); }

a{ color:inherit; text-decoration:none; }
a:hover{
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), .65);
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

h2  {
  font-size: 30px !important;
  font-family:var(--serif);
}

li {
  font-size: 14px;
}

p {
  font-size: 14px !important;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(249,249,247,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.brand-mark{
  width:10px;height:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), .35);
}
.brand-name{
  font-family:var(--serif);
  letter-spacing:.6px;
  font-size:30px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  font-size:14px;
  color:var(--muted);
  padding:8px 6px;
  border-radius:10px;
}
.nav a:hover{
  background: rgba(132, 15, 10,.10);
  text-decoration:none;
}

.header-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); text-decoration:none; }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(135deg, rgba(132,15,10,.95), rgba(112,10,8,.92));
  border-color: rgba(132,15,10,.40);
  color: #FFFFFF;
  box-shadow: 0 14px 30px rgba(132,15,10,.28);
}

.btn-primary:hover{
  border-color: rgba(112,10,8,.60);
  background: linear-gradient(135deg, rgba(132,15,10,1), rgba(112,10,8,1));
}

/* Ghost acompaña el nuevo primary sin cambiar la estética clara */
.btn-ghost{
  background: rgba(255,255,255,.72);
}

.w-full{ width:100%; }

/* Burger */
.burger{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  margin:4px 0;
  border-radius:10px;
}

/* Mobile menu */
.mobile-menu{
  border-top:1px solid var(--line);
  background: #fff;
}
.mobile-menu-inner{
  display:grid;
  gap:10px;
  padding:16px 0 20px;
}
.mobile-menu a{
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,.60);
  border:1px solid var(--line);
}

/* Sections */
.section{ padding:70px 0; }
.section-soft{ background: rgba(255,255,255,.9); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ margin-bottom:26px; }
.section-title{
  font-family:var(--serif);
  font-size:42px;
  line-height:1.05;
  margin:0 0 10px;
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

/* Hero */
.hero{
  padding:54px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.hero-copy,
.hero-media{
  min-width: 0;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:.2px;
  margin:0 0 14px;
}
.kicker .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), .25);
}
.hero-title{
  font-family:var(--serif);
  font-size:35px;
  line-height:1.0;
  margin:0 0 14px;
}
.hero-subtitle{
  margin:0 0 18px;
  color:var(--muted);
  max-width:60ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 18px;
}

.hero-metrics{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.metric{
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  min-width: 160px;
}
.metric-value{
  display:block;
  font-weight:700;
  font-size:18px;
}
.metric-label{
  display:block;
  color:var(--muted2);
  font-size:13px;
}

.hero-media{
  position:relative;
  border-radius: var(--radius);
}
.hero-media img{
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  background: rgba(249,249,247,.88);
  border: 1px solid rgba(var(--accent-rgb), .35);
  border-radius: 999px;
  padding:10px 12px;
  box-shadow: 0 18px 40px rgba(47,47,47,.10);
}
.badge-title{
  display:block;
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
}
.badge-sub{
  display:block;
  font-size:12px;
  color:var(--muted);
}

/* Category cards */
.category-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.category-card{
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px 16px;
  box-shadow: 0 18px 40px rgba(47,47,47,.06);
}
.category-card h3{
  font-family:var(--serif);
  margin:0 0 8px;
  font-size:22px;
}
.category-card p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
}
.chip{
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  background: rgba(var(--accent-rgb), .16);
  color: rgba(47,47,47,.90);
  font-weight:700;
  font-size:13px;
}
.chip:hover{
  background: rgba(var(--accent-rgb), .22);
}

/* Catalog controls */
.catalog-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin: 14px 0 18px;
  flex-wrap:wrap;
}

.tabs{
  display:flex;
  gap:8px;
  padding:6px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.60);

  /* ✅ FIX mobile */
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.tabs::-webkit-scrollbar{ display:none; } /* Chrome/Safari */
.tab{
  border:none;
  background:transparent;
  cursor:pointer;
  padding:10px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  color:var(--muted);
  white-space: nowrap;
  flex: 0 0 auto;
}
.tab.is-active{
  background: linear-gradient(135deg, rgba(132,15,10,.22), rgba(112,10,8,.18));
  color: var(--text);
}

@media (max-width: 600px){
  .catalog-controls{
    align-items: stretch;
  }
  .search{
    width: 100%;
  }
  .search input{
    width: 100%;
  }
}

.search input{
  width:min(360px, 86vw);
  border:1px solid var(--line);
  border-radius: 999px;
  padding:12px 14px;
  background: rgba(255,255,255,.70);
  outline:none;
  font-size:14px;
}
.search input:focus{
  border-color: rgba(var(--accent-rgb), .55);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .14);
}

/* Product grid */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.product-card{
  background: rgba(255,255,255,.68);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(47,47,47,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), .40);
  box-shadow: 0 26px 60px rgba(47,47,47,.10);
}
.product-card img{
  border-radius:0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-bottom:1px solid var(--line);
}

.product-body{ padding:14px 14px 16px; }
.product-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.product-top h3{
  margin:0;
  font-family:var(--serif);
  font-size:22px;
  line-height:1.1;
}

.catalog-more{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background: rgba(132,15,10,.20);
  border-color: rgba(132,15,10,.25);
  white-space:nowrap;
}

.product-desc{
  margin:0 0 10px;
  color: var(--muted);
  font-size:14px;
}
.specs{
  margin:0;
  padding-left:10px;
  color: rgba(47,47,47,.86);
  font-size:11px;
  list-style: none;
}
.specs li{ margin:6px 0; }

/* Talles como chips */
.specs li.spec-sizes{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.specs .spec-label{
  font-weight: 700;
  color: rgba(47,47,47,.86);
}

.size-tags{
  display: inline-flex;
  gap: 3px;
  flex-wrap: wrap;
}

.size-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 28px;
  height: 26px;
  padding: 0 8px;

  border-radius: 6px; /* cuadradito lindo */
  border: 1px solid rgba(132,15,10,.28);
  background: rgba(255,255,255,.65);

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.catalog-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(132,15,10,.45);
  background: rgba(132,15,10,.08);
  color: rgba(47,47,47,.88);
}

/* Sizes */
.size-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
}
.size-card{
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px 16px;
  box-shadow: 0 18px 40px rgba(47,47,47,.06);
}
.size-card h3{
  margin:0 0 10px;
  font-family:var(--serif);
  font-size:24px;
}

.steps{
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.steps li{
  margin: 0 0 6px;
}

.tip{
  margin-top:12px;
  padding:12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--accent-rgb), .28);
  background: rgba(255,255,255,.55);
  color: rgba(47,47,47,.86);
  font-size:13px;
}

.table-wrap{
  overflow:auto;
  border-radius: var(--radius-sm);
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
}
.table{
  width:100%;
  border-collapse:collapse;
  min-width: 420px;
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:14px;
}
.table th{
  font-size:13px;
  letter-spacing:.2px;
  color: rgba(47,47,47,.88);
  background: rgba(var(--accent-rgb), .10);

}
.muted{ color:var(--muted); }
.small{ font-size:12px; }

/* FAQ */
.faq{
  display:grid;
  gap:10px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.65);
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(47,47,47,.05);
}
.faq-q{
  width:100%;
  text-align:left;
  padding:16px 16px;
  border:none;
  background:transparent;
  cursor:pointer;
  font-weight:800;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq-q:hover{
  background: rgba(var(--accent-rgb), .10);
}
.chev{
  width:10px;height:10px;
  border-right:2px solid rgba(47,47,47,.75);
  border-bottom:2px solid rgba(47,47,47,.75);
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-right:6px;
}
.faq-item.is-open .chev{ transform: rotate(-135deg); }

.faq-a{
  padding: 2px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}
.faq-a p{ margin: 0;}

.center-actions{
  margin-top:18px;
}

/* Footer */
.footer{
  padding:44px 0 24px;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 3fr;
  gap:20px;
  align-items:start;
}
.footer-col h4{
  margin:0 0 10px;
  font-family: var(--serif);
  font-size:18px;
}
.footer-col ul{ margin:0; padding-left:16px; color:var(--muted); }
.footer-col li{ margin:8px 0; }
.footer-brand .brand-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.backtop{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.60);
}
.backtop:hover{
  text-decoration:none;
  background: rgba(var(--accent-rgb), .12);
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-title{ font-size:46px; }
  .category-grid{ grid-template-columns: repeat(2, 1fr); }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .size-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .burger{ display:inline-flex; flex-direction:column; }
  .btn-ghost{ display:none; } /* menos ruido en mobile */
  .section{ padding:56px 0; }
  .section-title{ font-size:34px; }
  .hero-title{ font-size:40px; }
  .metric{ min-width: 145px; }
  .product-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}


/* ===== Product Carousel (2 fotos) ===== */
.carousel{
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.35);
}

.c-viewport{ overflow: hidden; }

.c-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .28s ease;
  will-change: transform;
}

.c-track img{
  width: 100%;
  height: auto;
  border-radius: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.c-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(47,47,47,.14);
  background: rgba(249,249,247,.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: rgba(47,47,47,.85);
  box-shadow: 0 16px 30px rgba(47,47,47,.10);
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
  opacity: 0;
}

.product-card:hover .c-btn{ opacity: 1; }
.c-btn:hover{
  transform: translateY(-50%) scale(1.03);
  background: rgba(var(--accent-rgb), .18);
}

.c-dot.is-active{
  background: rgba(var(--accent-rgb), .95);
}

.c-badge:focus-visible{
  outline: none;
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .14);
}

.c-prev{ left: 10px; }
.c-next{ right: 10px; }

.c-dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47,47,47,.10);
  background: rgba(249,249,247,.72);
  backdrop-filter: blur(8px);
}

.c-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(47,47,47,.25);
}

/* Badges "Frente / Espalda" */
.c-badges{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(47,47,47,.10);
  background: rgba(249,249,247,.72);
  backdrop-filter: blur(8px);
}

.c-badge{
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(47,47,47,.70);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.c-badge.is-active{
  color: rgba(47,47,47,.92);
  background: rgba(132,15,10,.20);
  border-color: rgba(132,15,10,.25);
}


/* En mobile, controles siempre visibles */
@media (max-width: 720px){
  .c-btn{ opacity: 1; }
}





/* Colors catalog (swatches) */
.colors-wrap{
  display:grid;
  gap:14px;
}

.colors-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.colors-search input{
  width:min(420px, 92vw);
  border:1px solid var(--line);
  border-radius: 999px;
  padding:12px 14px;
  background: rgba(255,255,255,.70);
  outline:none;
  font-size:14px;
}

.colors-search input:focus{
  border-color: rgba(var(--accent-rgb), .55);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .14);
}

.colors-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.colors-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}

.color-card{
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(47,47,47,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 140px;
}

.color-card:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), .40);
  box-shadow: 0 26px 60px rgba(47,47,47,.10);
}

.color-swatch{
  height: 86px;
  background: var(--swatch, #ddd);
  border-bottom: 1px solid var(--line);
}

.color-meta{
  padding:10px 10px 12px;
  display:grid;
  gap:6px;
}

.color-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.color-name{
  margin:0;
  font-family: var(--serif);
  font-size:16px;
  line-height:1.1;
}

.color-code{
  font-family: var(--sans);
  font-size:12px;
  font-weight:800;
  color: rgba(47,47,47,.70);
  background: rgba(var(--accent-rgb), .16);
  border: 1px solid rgba(var(--accent-rgb), .22);
  padding:6px 9px;
  border-radius:999px;
  white-space:nowrap;
}

.color-hex{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  color: var(--muted);
}

.copy-hex{
  width:100%;
  border:1px solid var(--line);
  background: rgba(255,255,255,.60);
  border-radius: 12px;
  padding:9px 10px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  transition: background .18s ease, transform .18s ease;
}
.copy-hex:hover{
  background: rgba(var(--accent-rgb), .12);
  transform: translateY(-1px);
}
.copy-hex:active{ transform: translateY(0); }

@media (max-width: 980px){
  .colors-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .colors-grid{ grid-template-columns: repeat(2, 1fr); }
}


.back-to-top{
  position: fixed;
  right: 16px;
  bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(20,20,20,0.85);
  color: #fff;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Ajuste mobile */
@media (max-width: 600px){
  .back-to-top{
    right: 12px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }
}

/* Swipe: permitimos scroll vertical, pero el gesto horizontal lo maneja el carrusel */
.carousel .c-viewport{
  touch-action: pan-y;
}

/* Opcional: evita selecciones raras durante swipe */
.carousel{
  -webkit-user-select: none;
  user-select: none;
}

/* WhatsApp flotante */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 99999;

  width: 54px;
  height: 54px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);

  text-decoration: none;
  cursor: pointer;
}

.wa-float .wa-icon{
  width: 40px;
  height: 40px;
  display: block;
}


@media (max-width: 600px){
  .wa-float{
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }
}



