:root {
  --black: #070604;
  --black-soft: #11100d;
  --charcoal: #1d1914;
  --gold: #d8a944;
  --gold-bright: #f5d889;
  --ivory: #fff8ec;
  --cream: #f7efe0;
  --muted: #766b5d;
  --line: rgba(216, 169, 68, 0.28);
  --rose: #c23d65;
  --green: #22c55e;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 6, 4, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--black);
  padding: 12px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 169, 68, 0.18);
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(7, 6, 4, 0.08);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(7, 6, 4, 0.92);
  color: var(--ivory);
  border-bottom: 1px solid rgba(216, 169, 68, 0.24);
  backdrop-filter: blur(16px);
}

.brand,
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 9px 14px;
  color: rgba(255, 248, 236, 0.82);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(216, 169, 68, 0.18);
  color: var(--gold-bright);
}

.nav-phone {
  border: 1px solid rgba(216, 169, 68, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 169, 68, 0.35);
  border-radius: var(--radius);
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-bright);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(34px, 6vw, 88px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 10%, rgba(194, 61, 101, 0.28), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(216, 169, 68, 0.24), transparent 28%),
    linear-gradient(135deg, #050403 0%, #15100a 54%, #070604 100%);
  color: var(--ivory);
  overflow: hidden;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.95;
  color: var(--gold-bright);
}

.hero-tagline {
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 46px);
  color: #fff;
}

.hero-copy > p:not(.eyebrow):not(.hero-tagline),
.page-hero p,
.section-heading p,
.detail-copy p,
.split-section p {
  color: rgba(255, 248, 236, 0.78);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions,
.form-actions,
.product-actions,
.panel-heading,
.row-heading,
.admin-topbar,
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.btn-gold {
  color: #1b1208;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 34px rgba(216, 169, 68, 0.2);
}

.btn-ghost {
  color: var(--ivory);
  border: 1px solid rgba(255, 248, 236, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost.dark {
  color: var(--black);
  border-color: rgba(7, 6, 4, 0.18);
}

.btn-whatsapp {
  color: #fff;
  background: var(--green);
}

.btn-wide {
  width: 100%;
}

.btn-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
}

.hero-art {
  border: 1px solid rgba(216, 169, 68, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 3px;
  min-height: 92px;
  place-items: center;
  padding: 20px;
  background: var(--black);
  color: var(--ivory);
  text-align: center;
}

.trust-strip strong {
  color: var(--gold-bright);
  text-transform: uppercase;
}

.trust-strip span {
  color: rgba(255, 248, 236, 0.72);
}

.section,
.catalog-shell,
.product-detail,
.split-section,
.contact-grid {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.section-dark {
  background: #0d0b08;
  color: var(--ivory);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-band h2,
.split-section h2,
.contact-panel h2,
.admin-panel h2,
.install-card h1,
.install-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.08;
}

.row-heading {
  justify-content: space-between;
  max-width: none;
}

.text-link {
  color: var(--gold-bright);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(216, 169, 68, 0.26);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    url("../images/generated/category-jewelry.png");
  background-size: cover;
  overflow: hidden;
}

.category-card.visual-0 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    url("../images/generated/category-jewelry.png");
  background-position: center;
}

.category-card.visual-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    url("../images/generated/category-fragrance.png");
  background-position: center;
}

.category-card.visual-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    url("../images/generated/category-lifestyle.png");
  background-position: center;
}

.category-card span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
}

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 248, 236, 0.82);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(7, 6, 4, 0.09);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 16px 40px rgba(37, 28, 16, 0.08);
  overflow: hidden;
}

.section-dark .product-card {
  background: #16120d;
  border-color: rgba(216, 169, 68, 0.22);
}

.product-image {
  background: #0b0906;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 17px;
}

.product-title {
  color: var(--black);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
}

.section-dark .product-title,
.section-dark .product-actions strong {
  color: var(--ivory);
}

.product-content p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
}

.section-dark .product-content p {
  color: rgba(255, 248, 236, 0.7);
}

.product-actions {
  justify-content: space-between;
  margin-top: 8px;
}

.product-actions strong,
.detail-price {
  color: #a45a0b;
  font-size: 19px;
}

.page-hero {
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(7, 6, 4, 0.92), rgba(29, 18, 8, 0.88)),
    url("../images/empress-pack-flyer.png") center 30% / cover;
  color: var(--ivory);
}

.page-hero.compact {
  padding-block: clamp(42px, 6vw, 72px);
}

.page-hero p {
  max-width: 700px;
}

.catalog-tools {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.search-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.search-field input {
  max-width: 520px;
  min-height: 52px;
  border-color: rgba(216, 169, 68, 0.28);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 6, 4, 0.1);
  border-radius: var(--radius);
  padding: 9px 14px;
  background: #fffaf1;
  color: var(--charcoal);
  font-weight: 850;
}

.chip.active {
  color: #1b1208;
  background: var(--gold);
  border-color: var(--gold);
}

.product-card.hidden,
.hidden {
  display: none !important;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 260px;
  border: 1px dashed rgba(7, 6, 4, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.full-page {
  min-height: 70vh;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.detail-media > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 6, 4, 0.08);
}

.detail-copy {
  display: grid;
  gap: 16px;
}

.detail-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
}

.detail-copy p {
  color: #4c4034;
}

.detail-price {
  margin: 0;
  font-size: 32px;
  font-weight: 950;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 169, 68, 0.18), transparent 30%),
    #11100d;
  color: var(--ivory);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.split-section p {
  color: #4c4034;
}

.split-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-panel,
.admin-panel,
.install-card {
  border: 1px solid rgba(7, 6, 4, 0.1);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(37, 28, 16, 0.08);
  padding: 24px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 34px;
  z-index: 30;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  background: var(--black);
  color: rgba(255, 248, 236, 0.72);
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 7px 0;
}

.footer-logo {
  width: 140px;
  margin-bottom: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(216, 169, 68, 0.22);
  padding-right: 170px;
  padding-top: 20px;
}

.footer-credit a {
  display: inline;
  margin: 0;
  color: var(--gold-bright);
  font-weight: 900;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 7px 0;
}

.footer-contact-line a {
  display: inline;
  margin: 0;
  color: var(--gold-bright);
  font-weight: 900;
}

.footer-note {
  margin: -2px 0 10px;
  color: rgba(255, 248, 236, 0.58);
  font-size: 14px;
}

.tiktok-mark {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 169, 68, 0.34);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 950;
}

.love-icon {
  color: var(--rose);
  font-weight: 950;
}

.admin-body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  background: #f5eee2;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: var(--black);
  color: var(--ivory);
}

.admin-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.admin-sidebar nav a {
  border-radius: var(--radius);
  padding: 11px 12px;
  color: rgba(255, 248, 236, 0.78);
  font-weight: 900;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: rgba(216, 169, 68, 0.16);
  color: var(--gold-bright);
}

.admin-main {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.admin-topbar form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.admin-stats div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(7, 6, 4, 0.09);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: 20px;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 900;
}

.admin-stats strong {
  color: #9b610c;
  font-size: 34px;
}

.admin-grid.two {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.form-panel,
.product-form,
.install-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.panel-heading {
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-heading h2,
.admin-panel h2 {
  font-size: 28px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table-thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--black);
}

.actions form {
  display: inline-flex;
}

.actions button {
  border: 0;
  background: transparent;
  color: #9f1d31;
  cursor: pointer;
  font-weight: 900;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: var(--radius);
  padding: 4px 9px;
  font-size: 13px;
  font-weight: 950;
  text-transform: capitalize;
}

.status.published {
  color: #0f5132;
  background: #d1fae5;
}

.status.draft {
  color: #713f12;
  background: #fef3c7;
}

.image-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.image-admin-card {
  border: 1px solid rgba(7, 6, 4, 0.1);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
}

.image-admin-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-admin-card form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.image-admin-card button {
  border: 1px solid rgba(7, 6, 4, 0.14);
  border-radius: var(--radius);
  background: #fffaf1;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 900;
}

.alert {
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 14px;
  background: #e9f8ef;
  color: #0f5132;
  font-weight: 850;
}

.alert.error {
  background: #fde8e8;
  color: #9f1239;
}

.login-body,
.install-body {
  padding: 24px;
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 169, 68, 0.24), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(194, 61, 101, 0.18), transparent 28%),
    var(--black);
}

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.install-body {
  min-height: 100%;
  overflow: visible;
  padding-bottom: 96px;
}

.install-shell {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.login-card,
.install-card {
  display: grid;
  gap: 16px;
}

.login-card {
  width: min(100%, 520px);
}

.install-card {
  width: 100%;
}

.login-card {
  border: 1px solid rgba(216, 169, 68, 0.22);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: 28px;
  box-shadow: var(--shadow);
}

.login-card img,
.install-card > img {
  width: 150px;
  margin: 0 auto;
}

.login-card h1,
.install-card h1 {
  text-align: center;
}

.preview-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: var(--gold);
  color: #1b1208;
  font-weight: 900;
  text-align: center;
}

.preview-banner a,
.dark-link {
  color: #7c3f04;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1020px) {
  .hero,
  .detail-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    max-width: 560px;
  }

  .product-grid,
  .category-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-grid.two,
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(216, 169, 68, 0.28);
    border-radius: var(--radius);
    background: #090705;
    padding: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .trust-strip,
  .product-grid,
  .category-grid,
  .contact-grid,
  .form-grid,
  .admin-grid.two,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 220px;
  }

  .catalog-grid {
    gap: 16px;
  }

  .product-actions {
    align-items: stretch;
  }

  .product-actions .btn {
    flex: 1 1 120px;
  }

  .cta-band,
  .footer-bottom,
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 104px;
  }

  .footer-bottom {
    grid-column: auto;
    padding-right: 0;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-sidebar nav {
    grid-template-columns: 1fr 1fr;
  }

  th,
  td {
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 142px;
    overflow-wrap: anywhere;
  }

  .section,
  .catalog-shell,
  .product-detail,
  .split-section,
  .contact-grid,
  .page-hero,
  .hero,
  .cta-band {
    padding-inline: 14px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 18px;
  }
}
