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

:root {
  --accent: #FF4F00;
  --accent-h: #FF6B2B;
  --dark: #111318;
  --mid: #6B7280;
  --light: #F3F4F6;
  --border: #E5E7EB;
  --white: #fff;
  --green: #16A34A;
  --red: #EF4444;
  --r: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F9FAFB;
  color: var(--dark);
  line-height: 1.5
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0
}

.nav-logo img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 7px
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark)
}

.nav-logo-text span {
  color: var(--accent)
}

.search-wrap {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  position: relative
}

.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
  pointer-events: none
}

.search-wrap input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font: inherit;
  font-size: .88rem;
  background: var(--light);
  outline: none;
  color: var(--dark);
  transition: border-color .2s
}

.search-wrap input:focus {
  border-color: var(--accent);
  background: var(--white)
}

/* HERO */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 34px 20px 28px;
  text-align: center
}

.hero h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 8px
}

.hero h1 em {
  font-style: normal;
  color: var(--accent)
}

.hero p {
  color: var(--mid);
  font-size: .94rem;
  max-width: 440px;
  margin: 0 auto 18px
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s
}

.btn-cta:hover {
  background: var(--accent-h)
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s
}

.btn-whatsapp:hover {
  background: #1FB457
}

.btn-whatsapp svg {
  flex-shrink: 0
}

.trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  flex-wrap: wrap
}

.trust-item {
  font-size: .8rem;
  color: var(--mid);
  font-weight: 500
}

/* PARTNER STORES */
.partner-stores {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 0 20px
}

.partner-head {
  text-align: center;
  margin-bottom: 14px
}

.partner-head h2 {
  color: #020617;
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 6px
}

.partner-head p {
  color: #475569;
  font-size: .88rem
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px
}

.partner-card {
  min-height: 112px;
  padding: 13px 12px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s, transform .2s
}

.partner-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .07);
  transform: translateY(-2px)
}

.partner-logo {
  min-height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap
}

.partner-btn {
  width: 100%;
  min-height: 30px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  background: var(--white);
  font-size: .78rem;
  font-weight: 800
}

.partner-card:hover .partner-btn {
  border-color: var(--accent);
  color: var(--accent)
}

.logo-amazon {
  color: #111827;
  font-size: 1.35rem;
  position: relative;
  letter-spacing: -.02em
}

.logo-amazon::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 12px;
  left: 50%;
  bottom: 4px;
  border-bottom: 3px solid #F59E0B;
  border-radius: 0 0 50% 50%;
  transform: translateX(-46%) rotate(-7deg)
}

.logo-mercado-livre {
  gap: 8px;
  color: #2B4A9B;
  font-size: 1.05rem;
  text-align: left
}

.ml-mark {
  width: 45px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #2B4A9B;
  background: #FFE600;
  position: relative;
  flex-shrink: 0
}

.ml-mark::before,
.ml-mark::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 23px;
  height: 8px;
  border: 2px solid #2B4A9B;
  border-radius: 10px;
  background: #fff
}

.ml-mark::before {
  left: 5px;
  transform: rotate(18deg)
}

.ml-mark::after {
  right: 5px;
  transform: rotate(-18deg)
}

.logo-shopee {
  color: #EE4D2D;
  font-size: .9rem;
  font-weight: 600
}

.shopee-bag {
  width: 18px;
  height: 19px;
  border-radius: 4px 4px 3px 3px;
  background: #EE4D2D;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  margin-right: 3px;
  position: relative
}

.shopee-bag::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 5px;
  top: -4px;
  border: 2px solid #EE4D2D;
  border-bottom: 0;
  border-radius: 8px 8px 0 0
}

.logo-magalu {
  width: 96px;
  min-height: 42px;
  margin-top: 2px;
  background: #1787F5;
  color: #fff;
  font-size: 1.27rem;
  border-radius: 0;
  position: relative
}

.logo-magalu::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 9px;
  height: 3px;
  background: linear-gradient(90deg, #FF8A00 0 32%, #00D084 32% 100%)
}

.logo-aliexpress {
  color: #FF5A1F;
  font-size: .78rem;
  font-weight: 600
}

.logo-kabum {
  color: #1F5AA6;
  font-size: .9rem;
  font-style: italic
}

.logo-kabum::after {
  content: '>>';
  color: #FF6A00;
  font-size: .7rem;
  margin-left: 1px
}

.logo-casas {
  width: 125px;
  min-height: 34px;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  padding: 4px 8px;
  color: #fff;
  background: #1554C0;
  border-radius: 999px;
  position: relative
}

.logo-casas small {
  background: #E31B3E;
  border-radius: 7px;
  padding: 1px 5px;
  margin-left: 2px;
  font-size: .48rem;
  line-height: 1;
  font-weight: 800
}

.logo-casas span {
  align-self: center;
  font-size: .93rem;
  line-height: .9
}

.logo-americanas {
  color: #E60014;
  font-size: .83rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px
}

.logo-netshoes {
  color: #7C22EF;
  font-size: .8rem;
  font-style: italic
}

.partner-more .partner-logo {
  color: #020617;
  font-size: 1rem
}

/* FILTERS */
.filters {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.fbtn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font: inherit;
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--mid);
  transition: all .2s
}

.fbtn:hover {
  border-color: var(--dark);
  color: var(--dark)
}

.fbtn.on {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent)
}

/* COUPONS */
.coupons-area {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 0 20px
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px
}

.section-head h2 {
  font-size: 1.25rem;
  line-height: 1.2
}

.section-head p {
  color: var(--mid);
  font-size: .85rem
}

.coupon-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.coupon-nav button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color .2s, color .2s
}

.coupon-nav button:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.coupon-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch
}

.coupon-carousel::-webkit-scrollbar {
  display: none
}

.coupon-track {
  display: flex;
  gap: 14px;
  padding-bottom: 2px
}

.coupon-card {
  flex: 0 0 clamp(240px, 28vw, 310px);
  scroll-snap-align: start;
  min-height: 142px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.coupon-valid {
  color: var(--mid);
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap
}

.coupon-title {
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.25;
  min-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.coupon-desc {
  color: var(--mid);
  font-size: .8rem;
  line-height: 1.35;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.coupon-code {
  margin-top: auto;
  width: 100%;
  border: 1.5px dashed var(--accent);
  background: #FFF7ED;
  color: var(--accent);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .02em
}

/* GRID */
.grid-wrap {
  max-width: 1100px;
  margin: 18px auto 64px;
  padding: 0 20px
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px
}

.loading {
  text-align: center;
  padding: 80px;
  color: var(--mid);
  font-size: .9rem
}

.empty {
  text-align: center;
  padding: 80px;
  color: var(--mid)
}

/* CARD */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .09)
}

.card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light)
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s
}

.card:hover .card-img img {
  transform: scale(1.05)
}

.b-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase
}

.b-off {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--green);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px
}

.card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.mp-tag {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  align-self: flex-start
}

.mp-ml {
  background: #FFF100;
  color: #333
}

.mp-shopee {
  background: #EE4D2D;
  color: #fff
}

.mp-amazon {
  background: #131921;
  color: #fff
}

.mp-other {
  background: #6366F1;
  color: #fff
}

.coupon {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 8px;
  border: 1px dashed var(--accent);
  border-radius: 8px;
  background: #FFF7ED;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700
}

.card-title {
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35
}

.card-desc {
  font-size: .78rem;
  color: var(--mid);
  flex: 1
}

.old {
  font-size: .75rem;
  color: var(--mid);
  text-decoration: line-through
}

.cur {
  font-size: 1.3rem;
  font-weight: 800
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  padding: 11px;
  border-radius: 0 0 var(--r) var(--r);
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .2s
}

.btn-buy:hover {
  background: var(--accent)
}

/* NEWSLETTER */
.nl {
  background: var(--dark);
  padding: 56px 20px;
  text-align: center
}

.nl h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px
}

.nl h2 em {
  font-style: normal;
  color: var(--accent)
}

.nl p {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
  font-size: .92rem
}

.nl-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center
}

.nl-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font: inherit;
  font-size: .88rem;
  outline: none
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, .35)
}

.nl-form input:focus {
  background: rgba(255, 255, 255, .18)
}

.nl-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s
}

.nl-form button:hover {
  background: var(--accent-h)
}

/* FOOTER */
footer {
  background: #0D0F14;
  padding: 28px 20px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3)
}

footer a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none
}

/* â•â• ADMIN OVERLAY â•â• */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px
}

#overlay.open {
  display: flex
}

/* LOGIN */
.login-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 320px
}

.login-box h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center
}

.err-msg {
  font-size: .8rem;
  color: var(--red);
  margin-top: 6px;
  display: none
}

/* ADMIN PANEL */
.panel {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  height: min(720px, 92vh);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.panel-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--white);
  z-index: 1
}

.panel-head h2 {
  font-size: 1rem;
  font-weight: 700
}

.x-btn {
  background: var(--light);
  border: none;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: .95rem;
  color: var(--mid)
}

.x-btn:hover {
  background: var(--border)
}

.panel-body {
  padding: 20px 24px;
  flex: 1;
  min-height: 0;
  overflow-y: auto
}

/* TABS */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--light);
  border-radius: 9px;
  padding: 4px;
  margin: 16px 24px 0;
  flex-shrink: 0
}

.tab {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 7px;
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--mid);
  transition: all .2s
}

.tab.on {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1)
}

/* FORM */
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.fg label {
  font-size: .78rem;
  font-weight: 600
}

.fg input,
.fg select,
.fg textarea {
  padding: 9px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: .87rem;
  color: var(--dark);
  outline: none;
  transition: border-color .2s
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--accent)
}

.import-row {
  display: flex;
  gap: 8px
}

.import-row input {
  flex: 1;
  min-width: 0
}

.btn-import {
  border: none;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  padding: 0 14px;
  white-space: nowrap
}

.btn-import:disabled {
  opacity: .55;
  cursor: not-allowed
}

.fg textarea {
  resize: vertical;
  min-height: 70px
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.tog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light)
}

.tog-row:last-child {
  border: none
}

.tog-label {
  font-size: .85rem;
  font-weight: 500
}

.tog {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  background: var(--border);
  position: relative;
  transition: background .2s;
  flex-shrink: 0
}

.tog::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2)
}

.tog.on {
  background: var(--accent)
}

.tog.on::after {
  transform: translateX(18px)
}

.btn-save {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 9px;
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 14px;
  transition: background .2s
}

.btn-save:hover {
  background: var(--accent-h)
}

.btn-save:disabled {
  opacity: .5;
  cursor: not-allowed
}

.btn-sec {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
  color: var(--mid)
}

.admin-tools {
  display: flex;
  gap: 8px;
  margin-bottom: 10px
}

.btn-small {
  width: auto;
  flex: 1;
  margin-top: 0;
  padding: 8px 10px;
  font-size: .8rem
}

/* PRODUCT LIST */
.p-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light)
}

.p-item:last-child {
  border: none
}

.p-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--light);
  flex-shrink: 0
}

.p-info {
  flex: 1;
  min-width: 0
}

.p-name {
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.p-sub {
  font-size: .75rem;
  color: var(--mid)
}

.p-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0
}

.coupon-admin-code {
  min-width: 94px;
  max-width: 112px;
  padding: 8px;
  border: 1px dashed var(--accent);
  border-radius: 8px;
  background: #FFF7ED;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  font-size: .88rem;
  transition: background .2s
}

.icon-btn:hover {
  background: var(--light)
}

/* PREVIEW */
.prev-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 8px;
  display: none
}

.prev-img.show {
  display: block
}

/* TOAST */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--dark);
  color: #fff;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transform: translateY(60px);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  max-width: 280px
}

#toast.show {
  transform: translateY(0);
  opacity: 1
}

#toast.ok {
  background: var(--green)
}

#toast.err {
  background: var(--red)
}

/* STATUS BADGE */
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px
}

.dot-on {
  background: var(--green)
}

.dot-off {
  background: var(--mid)
}

.dot-wait {
  background: #F59E0B
}

/* RESPONSIVE */
@media(max-width:900px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:600px) {
  .search-wrap {
    display: none
  }

  .hero {
    padding: 24px 16px 22px
  }

  .hero h1 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
    line-height: 1.12
  }

  .hero p {
    font-size: .88rem;
    margin-bottom: 14px
  }

  .btn-whatsapp {
    width: 100%;
    max-width: 310px;
    justify-content: center;
    padding: 10px 16px
  }

  .trust {
    gap: 8px 14px;
    margin-top: 14px
  }

  .trust-item {
    font-size: .74rem
  }

  .partner-stores {
    margin-top: 18px
  }

  .partner-head {
    margin-bottom: 12px
  }

  .partner-head p {
    font-size: .82rem
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .partner-card {
    min-height: 104px;
    padding: 12px 10px
  }

  .logo-casas {
    width: 112px
  }

  .logo-casas span {
    font-size: .82rem
  }

  .nav-logo img {
    width: 20px;
    height: 20px
  }

  .nav-logo-text {
    font-size: 1.05rem
  }

  #overlay {
    padding: 10px
  }

  .panel {
    max-width: none;
    height: min(760px, 94vh)
  }

  .panel-head {
    padding: 16px
  }

  .tabs {
    margin: 12px 16px 0;
    overflow-x: auto
  }

  .tab {
    min-width: 86px
  }

  .panel-body {
    padding: 16px
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .cur {
    font-size: 1.1rem
  }

  .card-title {
    font-size: .82rem
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column
  }

  .coupon-nav {
    display: flex
  }

  .coupon-card {
    flex-basis: min(82vw, 320px)
  }

  .row2 {
    grid-template-columns: 1fr
  }

  .import-row {
    flex-direction: column
  }

  .btn-import {
    padding: 10px 14px
  }
}
