:root {
  --ink: #2b211c;
  --muted: #75685d;
  --soft: #f5f0e8;
  --line: #e2d5c5;
  --brand: #8a4b32;
  --brand-dark: #4b2c24;
  --accent: #c79a4a;
  --success: #476446;
  --surface: #fffcf7;
  --shadow: 0 18px 50px rgba(75, 44, 36, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

.rs-shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.rs-topline {
  background: #241915;
  color: #f0e2d1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
  padding: 9px 12px;
}
.rs-topline i { color: var(--accent); margin-right: 6px; }

.rs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,252,247,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,213,197,.9);
}
.rs-header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.rs-brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.rs-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #9a5737, #4b2c24);
  color: #fffaf2;
  box-shadow: 0 10px 24px rgba(138,75,50,.28);
  font-size: 20px;
}
.rs-brand-copy strong { display: block; font-size: 17px; letter-spacing: -.02em; }
.rs-brand-copy span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; margin-top: 2px; }
.rs-search {
  flex: 1;
  max-width: 460px;
  position: relative;
  margin-left: auto;
}
.rs-search i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #9a8a7b; }
.rs-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 15px;
  padding: 12px 14px 12px 42px;
  outline: none;
  color: var(--ink);
  transition: .2s ease;
}
.rs-search input:focus { border-color: #bd8667; background: #fffdf9; box-shadow: 0 0 0 4px rgba(138,75,50,.1); }
.rs-nav { display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 800; }
.rs-nav a:hover { color: var(--brand); }
.rs-admin-link {
  display: none;
  align-items: center;
  gap: 7px;
  border: 1px solid #bcc8ae;
  color: #41563d;
  background: #f1f4ea;
  padding: 9px 11px;
  border-radius: 12px;
}
.rs-admin-link.is-visible { display: inline-flex; }

.rs-hero {
  padding: 64px 0 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(138,75,50,.16), transparent 31%),
    radial-gradient(circle at 5% 88%, rgba(199,154,74,.2), transparent 25%),
    linear-gradient(180deg, #faf5ee 0%, #fffcf7 100%);
}
.rs-hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); gap: 54px; align-items: center; }
.rs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9bda7;
  background: #f7ece2;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.rs-hero h1 { margin: 22px 0 18px; font-size: clamp(39px, 6vw, 69px); line-height: .99; letter-spacing: -.055em; max-width: 760px; }
.rs-hero h1 span { color: var(--brand); }
.rs-hero-text { max-width: 660px; margin: 0; font-size: clamp(16px, 2.2vw, 20px); line-height: 1.68; color: #6c5c4f; font-weight: 600; }
.rs-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.rs-button {
  border: 0;
  border-radius: 15px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  font-size: 14px;
  transition: .2s ease;
}
.rs-button:hover { transform: translateY(-1px); }
.rs-button.primary { background: var(--brand); color: #fffaf4; box-shadow: 0 12px 30px rgba(138,75,50,.24); }
.rs-button.primary:hover { background: var(--brand-dark); }
.rs-button.secondary { background: #fffdf9; color: var(--ink); border: 1px solid var(--line); }
.rs-button.whatsapp { background: #2f6f50; color: white; }
.rs-button.whatsapp:hover { background: #275d43; }
.rs-button:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.rs-process-card {
  background: #30262e;
  color: #fffaf4;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(48,38,46,.22);
  position: relative;
  overflow: hidden;
}
.rs-process-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -90px;
  top: -100px;
  background: rgba(154,87,55,.48);
  filter: blur(4px);
}
.rs-process-card > * { position: relative; z-index: 1; }
.rs-process-label { color: #e3b873; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 900; }
.rs-process-card h2 { margin: 9px 0 20px; font-size: 26px; letter-spacing: -.03em; }
.rs-mini-steps { display: grid; gap: 10px; }
.rs-mini-step { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; padding: 12px; border-radius: 16px; background: rgba(255,250,244,.07); border: 1px solid rgba(255,250,244,.09); }
.rs-mini-step span { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: #f6eadc; color: var(--brand-dark); font-weight: 900; }
.rs-mini-step strong { display: block; font-size: 13px; }
.rs-mini-step small { display: block; color: #c9bbb0; margin-top: 2px; line-height: 1.45; }

.rs-trust { padding: 24px 0 46px; }
.rs-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 12px 38px rgba(75,44,36,.06); }
.rs-trust-item { padding: 20px; display: flex; align-items: flex-start; gap: 13px; background: #fffdf9; }
.rs-trust-item + .rs-trust-item { border-left: 1px solid var(--line); }
.rs-trust-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: #f2e4d7; color: var(--brand); flex: 0 0 auto; }
.rs-trust-item strong { display: block; font-size: 13px; }
.rs-trust-item p { margin: 4px 0 0; font-size: 12px; color: var(--muted); line-height: 1.5; }

.rs-section { padding: 54px 0; }
.rs-section.soft { background: var(--soft); }
.rs-section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.rs-kicker { color: var(--brand); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; margin-bottom: 7px; }
.rs-section h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.rs-section-sub { color: var(--muted); margin: 8px 0 0; max-width: 690px; line-height: 1.6; font-size: 14px; }

.rs-store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rs-store-card { min-height: 220px; border-radius: 24px; padding: 23px; display: flex; flex-direction: column; justify-content: space-between; transition: .2s ease; position: relative; overflow: hidden; }
.rs-store-card:hover { transform: translateY(-3px); }
.rs-store-card.radar { background: linear-gradient(140deg, #5a3028, #9a5737); color: #fffaf4; }
.rs-store-card.jjs { background: linear-gradient(140deg, #211c1a, #40342f); color: #fffaf4; }
.rs-store-card.iris { background: linear-gradient(140deg, #241719, #513028); color: #fff1dd; }
.rs-store-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,250,244,.14); font-size: 20px; }
.rs-store-card h3 { margin: 22px 0 6px; font-size: 21px; }
.rs-store-card p { margin: 0; color: rgba(255,247,239,.74); line-height: 1.5; font-size: 13px; }
.rs-store-link { margin-top: 20px; display: inline-flex; gap: 8px; align-items: center; font-size: 12px; font-weight: 900; }

.rs-catalog-tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.rs-chips { display: flex; gap: 8px; overflow-x: auto; padding: 2px 1px 7px; scrollbar-width: none; }
.rs-chips::-webkit-scrollbar { display: none; }
.rs-chip { flex: 0 0 auto; border: 1px solid var(--line); background: #fffdf9; color: #67594e; border-radius: 999px; padding: 9px 13px; font-size: 12px; font-weight: 850; }
.rs-chip.is-active { background: var(--ink); color: #fffaf4; border-color: var(--ink); }
.rs-count { margin-left: auto; color: var(--muted); font-size: 12px; font-weight: 800; }

.rs-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.rs-product-card { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fffdf9; transition: .22s ease; display: flex; flex-direction: column; min-width: 0; }
.rs-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfbba7; }
.rs-product-media { aspect-ratio: 1 / 1; background: linear-gradient(145deg, #f4eee7, #e9dfd4); position: relative; overflow: hidden; }
.rs-product-media img { width: 100%; height: 100%; object-fit: cover; }
.rs-product-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: #a99685; font-size: 38px; }
.rs-badge { position: absolute; left: 11px; top: 11px; padding: 7px 9px; border-radius: 999px; font-size: 9px; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
.rs-badge.order { background: #f7ebc9; color: #674a16; border: 1px solid #dcc17c; }
.rs-badge.featured { left: auto; right: 11px; background: var(--brand); color: #fffaf4; }
.rs-product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.rs-product-category { color: var(--brand); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.rs-product-name { margin: 7px 0 9px; font-size: 15px; line-height: 1.35; letter-spacing: -.02em; }
.rs-product-price { font-size: 21px; font-weight: 950; letter-spacing: -.04em; }
.rs-product-eta { margin-top: 7px; display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 750; }
.rs-product-card .rs-button { margin-top: 15px; width: 100%; padding: 11px 12px; font-size: 12px; }
.rs-empty { grid-column: 1 / -1; padding: 48px 24px; text-align: center; border: 1px dashed #cdbdab; border-radius: 22px; color: var(--muted); background: #faf6f0; }
.rs-empty i { font-size: 28px; color: #ad9a89; margin-bottom: 10px; }
.rs-empty strong { display: block; color: var(--ink); margin-bottom: 5px; }
.rs-loading { grid-column: 1 / -1; padding: 44px; text-align: center; color: var(--muted); font-weight: 800; }

.rs-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: steps; }
.rs-how-card { padding: 22px; border-radius: 20px; background: #fffdf9; border: 1px solid var(--line); }
.rs-how-card::before { counter-increment: steps; content: "0" counter(steps); display: inline-block; color: var(--brand); font-size: 11px; font-weight: 950; letter-spacing: .1em; margin-bottom: 24px; }
.rs-how-card h3 { margin: 0 0 8px; font-size: 16px; }
.rs-how-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.rs-confidence { display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 30px; overflow: hidden; background: #30262e; color: #fffaf4; }
.rs-confidence-art { min-height: 330px; background: radial-gradient(circle at 25% 25%, rgba(199,154,74,.34), transparent 30%), radial-gradient(circle at 75% 75%, rgba(138,75,50,.8), transparent 37%); display: grid; place-items: center; }
.rs-confidence-art i { font-size: 88px; color: #fffaf4; filter: drop-shadow(0 20px 30px rgba(0,0,0,.25)); }
.rs-confidence-copy { padding: 42px; align-self: center; }
.rs-confidence-copy .rs-kicker { color: #e3b873; }
.rs-confidence-copy h2 { color: #fffaf4; }
.rs-confidence-copy p { color: #c9bbb0; line-height: 1.75; margin: 13px 0 0; }

.rs-footer { background: #1f1512; color: #eadbcd; padding: 42px 0 28px; margin-top: 56px; }
.rs-footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; }
.rs-footer strong { color: #fffaf4; }
.rs-footer p { color: #a99686; font-size: 12px; line-height: 1.6; max-width: 620px; }
.rs-footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: end; align-content: start; font-size: 12px; font-weight: 800; }
.rs-footer-links a:hover { color: #fffaf4; }
.rs-copyright { border-top: 1px solid rgba(255,250,244,.1); margin-top: 28px; padding-top: 18px; color: #8b786b; font-size: 11px; }

.rs-modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 18px; background: rgba(31,21,18,.76); backdrop-filter: blur(6px); }
.rs-modal.is-open { display: flex; }
.rs-modal-card { width: min(900px, 100%); max-height: min(88vh, 760px); background: #fffdf9; border-radius: 27px; overflow: hidden; display: grid; grid-template-columns: .92fr 1.08fr; box-shadow: 0 35px 90px rgba(34,20,16,.3); position: relative; }
.rs-modal-close { position: absolute; z-index: 2; right: 14px; top: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,252,247,.94); color: var(--ink); box-shadow: 0 6px 20px rgba(46,29,23,.14); }
.rs-modal-media { min-height: 440px; background: #eee4da; }
.rs-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.rs-modal-content { padding: 38px; overflow-y: auto; }
.rs-modal-content h2 { margin: 9px 0 12px; font-size: clamp(25px, 4vw, 38px); line-height: 1.08; letter-spacing: -.04em; }
.rs-modal-price { font-size: 28px; font-weight: 950; letter-spacing: -.04em; }
.rs-modal-info { display: grid; gap: 10px; margin: 22px 0; }
.rs-modal-info div { padding: 12px 14px; border-radius: 14px; background: var(--soft); display: flex; gap: 10px; align-items: center; color: #67594e; font-size: 12px; font-weight: 750; }
.rs-modal-info i { color: var(--brand); width: 18px; text-align: center; }
.rs-modal-description { color: #6f6155; line-height: 1.7; font-size: 14px; white-space: pre-line; }
.rs-variations { margin: 18px 0; }
.rs-variations strong { font-size: 12px; }
.rs-variation-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.rs-variation { border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: 11px; font-weight: 800; color: #67594e; }
.rs-modal-content .rs-button { width: 100%; margin-top: 6px; }

.rs-toast { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 20px); z-index: 110; background: #30262e; color: #fffaf4; padding: 11px 15px; border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.22); font-size: 12px; font-weight: 800; opacity: 0; pointer-events: none; transition: .2s ease; }
.rs-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.rs-toast.is-error { background: #7f2d2d; }

/* Painel */
.rs-admin-body { background: #f2ece4; min-height: 100vh; }
.rs-admin-header { background: #241915; color: #fffaf4; }
.rs-admin-header .rs-shell { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.rs-admin-header-actions { display: flex; align-items: center; gap: 10px; }
.rs-admin-header-actions .rs-mini { background: #3a2922 !important; border-color: #65483a !important; color: #fffaf4 !important; }
.rs-admin-main { padding: 30px 0 60px; }
.rs-admin-card { background: #fffdf9; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 12px 36px rgba(75,44,36,.06); }
.rs-admin-auth { width: min(470px, calc(100% - 32px)); margin: 70px auto; }
.rs-admin-auth h1 { margin: 0 0 6px; }
.rs-admin-auth p { color: var(--muted); line-height: 1.6; }
.rs-form { display: grid; gap: 15px; }
.rs-field { display: grid; gap: 6px; }
.rs-field label { font-size: 11px; font-weight: 900; color: #67594e; text-transform: uppercase; letter-spacing: .06em; }
.rs-field input, .rs-field textarea, .rs-field select {
  width: 100%;
  border: 1px solid #d8c9b9;
  border-radius: 13px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdf9;
  outline: none;
  font: inherit;
}
.rs-field textarea { min-height: 110px; resize: vertical; }
.rs-field input:focus, .rs-field textarea:focus, .rs-field select:focus { border-color: #bd8667; box-shadow: 0 0 0 4px rgba(138,75,50,.09); }
.rs-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.rs-form-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.rs-checks { display: flex; flex-wrap: wrap; gap: 14px; }
.rs-check { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; }
.rs-admin-layout { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr); gap: 18px; align-items: start; }
.rs-admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.rs-admin-toolbar h2 { margin: 0; font-size: 20px; }
.rs-admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 18px; }
.rs-stat { background: #fffdf9; border: 1px solid var(--line); border-radius: 17px; padding: 16px; }
.rs-stat small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 9px; }
.rs-stat strong { display: block; font-size: 26px; margin-top: 5px; }
.rs-admin-list { display: grid; gap: 10px; }
.rs-admin-product { border: 1px solid var(--line); border-radius: 16px; padding: 12px; display: grid; grid-template-columns: 68px 1fr auto; gap: 13px; align-items: center; }
.rs-admin-product img, .rs-admin-thumb { width: 68px; height: 68px; object-fit: cover; border-radius: 12px; background: #eee4da; }
.rs-admin-product h3 { margin: 0 0 4px; font-size: 14px; }
.rs-admin-product p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.rs-admin-product strong { display: block; margin-top: 5px; }
.rs-admin-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 6px; }
.rs-mini { border: 1px solid var(--line); background: #fffdf9; color: #65564b; border-radius: 10px; padding: 8px 9px; font-size: 10px; font-weight: 850; }
.rs-mini.primary { color: var(--brand-dark); background: #f6e9df; border-color: #dfc4ae; }
.rs-mini.danger { color: #7d2b2b; background: #f9e8e5; border-color: #e9c4bf; }
.rs-admin-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.rs-admin-tab { border: 1px solid var(--line); background: #fffdf9; border-radius: 12px; padding: 9px 13px; font-size: 11px; font-weight: 900; }
.rs-admin-tab.is-active { background: var(--ink); color: #fffaf4; border-color: var(--ink); }
.rs-admin-section { display: none; }
.rs-admin-section.is-active { display: block; }
.rs-message { min-height: 18px; margin-top: 10px; font-size: 12px; font-weight: 800; color: var(--success); }
.rs-message.error { color: #8a3030; }
.rs-image-preview { width: 100%; aspect-ratio: 1.55 / 1; border: 1px dashed #cfbead; border-radius: 15px; background: #f8f2eb; display: grid; place-items: center; overflow: hidden; color: #8f7f70; font-size: 12px; }
.rs-image-preview img { width: 100%; height: 100%; object-fit: contain; }
.rs-private-box { border-radius: 16px; padding: 14px; background: #f5ecd4; border: 1px solid #dcc58b; }
.rs-private-box > strong { display: block; color: #6a501d; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 11px; }
.rs-hidden { display: none !important; }

@media (max-width: 980px) {
  .rs-nav { display: none; }
  .rs-hero-grid { grid-template-columns: 1fr; }
  .rs-process-card { max-width: 650px; }
  .rs-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .rs-store-grid { grid-template-columns: repeat(2,1fr); }
  .rs-store-card.radar { grid-column: 1 / -1; }
  .rs-how-grid { grid-template-columns: repeat(2,1fr); }
  .rs-admin-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .rs-shell { width: min(100% - 22px, 1180px); }
  .rs-header-row { min-height: 68px; gap: 12px; }
  .rs-brand-copy span { display: none; }
  .rs-brand-copy strong { font-size: 14px; }
  .rs-brand-mark { width: 39px; height: 39px; border-radius: 12px; }
  .rs-search { max-width: none; }
  .rs-search input { padding-block: 10px; font-size: 12px; }
  .rs-hero { padding-top: 42px; }
  .rs-hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .rs-trust-grid { grid-template-columns: 1fr; }
  .rs-trust-item + .rs-trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .rs-section { padding: 43px 0; }
  .rs-store-grid { grid-template-columns: 1fr; }
  .rs-store-card.radar { grid-column: auto; }
  .rs-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .rs-product-card { border-radius: 17px; }
  .rs-product-body { padding: 12px; }
  .rs-product-name { font-size: 13px; }
  .rs-product-price { font-size: 18px; }
  .rs-how-grid { grid-template-columns: 1fr; }
  .rs-confidence { grid-template-columns: 1fr; }
  .rs-confidence-art { min-height: 210px; }
  .rs-confidence-copy { padding: 28px; }
  .rs-footer-grid { grid-template-columns: 1fr; }
  .rs-footer-links { justify-content: start; }
  .rs-modal-card { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .rs-modal-media { min-height: 0; aspect-ratio: 1.25 / 1; }
  .rs-modal-content { padding: 25px 20px 28px; overflow: visible; }
  .rs-admin-stats { grid-template-columns: repeat(2,1fr); }
  .rs-form-grid, .rs-form-grid.three { grid-template-columns: 1fr; }
  .rs-admin-product { grid-template-columns: 58px 1fr; }
  .rs-admin-product img, .rs-admin-thumb { width: 58px; height: 58px; }
  .rs-admin-actions { grid-column: 1 / -1; justify-content: start; }
}

@media (max-width: 430px) {
  .rs-brand-copy strong { display: none; }
  .rs-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rs-product-eta { align-items: flex-start; }
  .rs-button { font-size: 12px; }
}