:root {
  --brand-orange: #d97706;
  --brand-orange-dark: #b45309;
  --brand-blue: #0f4c81;
  --brand-blue-dark: #0b3558;
  --brand-green: #25d366;
  --brand-ink: #172033;
  --page-bg: #f7f1e8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text-main: #1f2937;
  --text-muted: #5f6b7a;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 42px rgba(15, 23, 42, 0.1);
  --site-topbar-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  background-image: linear-gradient(180deg, #fbf7f0 0%, #f4ede1 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.site-has-nav {
  padding-top: calc(var(--site-topbar-height) + 16px);
}

.site-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  background: rgba(255, 251, 245, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(180, 83, 9, 0.12);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.site-topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-topbar__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-brand {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.site-topbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-ink);
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.site-topbar__toggle:hover {
  background: #fff;
  border-color: rgba(15, 76, 129, 0.22);
  transform: translateY(-1px);
}

.site-topbar__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-topbar__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--text-main);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(15, 76, 129, 0.08);
  color: var(--brand-blue);
  border-color: rgba(15, 76, 129, 0.14);
  transform: translateY(-1px);
}

.site-nav a.site-nav__cta {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.22);
}

.site-nav a.site-nav__cta:hover {
  background: #1ebe5b;
  color: #fff;
}

.site-menu-backdrop {
  display: none;
}

.site-breadcrumbs {
  max-width: 1100px;
  margin: 24px auto 8px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-breadcrumbs a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
}

.site-breadcrumbs span[aria-current="page"] {
  color: var(--text-muted);
}

.site-breadcrumbs span:not([aria-current="page"]) {
  color: rgba(15, 23, 42, 0.36);
}

.page-header,
.header,
.faq,
.social-section,
.grid {
  position: relative;
  z-index: 1;
}

.page-header,
.header {
  max-width: 1100px;
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  border: 1px solid rgba(180, 83, 9, 0.08);
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(255, 255, 255, 0.96));
}

.header,
.page-header {
  position: relative;
  text-align: center;
}

.header::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 76, 129, 0.08), transparent 22%);
  pointer-events: none;
}

.social-section {
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.96));
}

.back-btn {
  box-shadow: 0 10px 20px rgba(25, 118, 210, 0.16);
}

.marquee,
.marquee.special-offer {
  margin: 0 auto 16px;
  max-width: 1100px;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(180, 83, 9, 0.12);
}

.header,
.page-header,
.faq,
.social-section,
.grid,
.trust-bar {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.header,
.page-header {
  padding: 28px 28px 30px !important;
}

.header h1,
.page-header h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: #172033;
}

.header p,
.page-header p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-actions {
  position: relative;
  z-index: 1;
}

.hero-actions a,
.buttons a,
.social-section a,
.back-btn,
.toggle-btn,
.select-grade button {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hero-actions a:hover,
.buttons a:hover,
.social-section a:hover,
.back-btn:hover,
.toggle-btn:hover,
.select-grade button:hover {
  transform: translateY(-2px);
}

.hero-primary,
.buttons a,
.social-section a.whatsapp,
.select-grade button {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.18);
}

.buttons a.call,
.social-section a.call {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)) !important;
  box-shadow: 0 8px 16px rgba(15, 76, 129, 0.18);
}

.hero-secondary,
.back-btn,
.faq-item h4,
.social-section a.facebook {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)) !important;
}

.hero-secondary,
.back-btn,
.faq-item h4,
.social-section a.facebook,
.hero-primary,
.buttons a {
  color: #fff !important;
}

.trust-bar {
  margin-bottom: 30px;
  padding: 0 20px 6px !important;
}

.trust-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,252,0.94));
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: 18px !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06) !important;
  text-align: right;
}

.trust-item strong {
  color: var(--brand-orange) !important;
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
  padding: 0 20px 48px !important;
  gap: 24px !important;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 6px !important;
  color: #172033;
  font-size: 1.35rem;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,119,6,0.25), rgba(15,76,129,0.08));
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,250,251,0.94));
  border-radius: 22px !important;
  padding: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1) !important;
}

.card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 180px !important;
  margin: 0 auto;
  border-radius: 14px !important;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
}

.card h3 {
  color: #172033;
  margin: 14px 0 8px;
  font-size: 1.06rem;
  line-height: 1.5;
}

.price {
  color: #dc2626 !important;
  font-size: 1.08rem;
}

.old-price {
  color: #94a3b8 !important;
}

.faq {
  margin: 10px auto 56px !important;
}

.faq h2 {
  font-size: 1.65rem;
  color: #172033;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-item h4 {
  box-shadow: 0 8px 16px rgba(15, 76, 129, 0.12);
}

.faq-item p {
  display: none;
  margin-top: -2px;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--text-muted);
}

.social-section {
  border-radius: 24px !important;
  padding: 36px 24px !important;
}

.social-section h2 {
  color: #172033;
  font-size: 1.55rem;
}

.social-section p {
  color: var(--text-muted);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 16px;
  background: #172033;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  z-index: 12000;
}

.skip-link:focus {
  top: 14px;
}

.homepage-hero {
  text-align: center;
}

.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.08);
  color: var(--brand-orange-dark);
  font-weight: 800;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-metric {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.hero-metric span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.header-note {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--brand-orange-dark);
  font-weight: 800;
  font-size: 0.95rem;
}

.catalog-toolbar {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.toolbar-copy h2 {
  margin: 0 0 8px;
  color: #172033;
}

.toolbar-copy p {
  margin: 0;
  color: var(--text-muted);
}

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

.filter-chip {
  border: 1px solid rgba(15, 76, 129, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-main);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.catalog-grid .card.is-hidden {
  display: none;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.20);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #0ea5a4);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(13, 148, 136, 0.18);
}

.card-copy {
  min-height: 3.2em;
  color: var(--text-muted);
}

.book-cover {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  position: relative;
  overflow: hidden;
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.14));
  pointer-events: none;
}

.book-cover__badge,
.book-cover__title,
.book-cover__meta {
  position: relative;
  z-index: 1;
}

.book-cover__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.74rem;
  font-weight: 800;
}

.book-cover__title {
  font-size: 1.06rem;
  line-height: 1.5;
  font-weight: 800;
}

.book-cover__meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
}

.primary-card .book-cover {
  background: linear-gradient(160deg, #d97706, #b45309);
}

.middle-card .book-cover {
  background: linear-gradient(160deg, #0f4c81, #0b3558);
}

.secondary-card .book-cover {
  background: linear-gradient(160deg, #4c1d95, #312e81);
}

.order-panels {
  max-width: 1100px;
  margin: 0 auto 54px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.order-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.95));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.order-panel h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #172033;
}

.order-panel p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.order-panel .select-grade {
  display: flex;
}

.faq-question {
  width: 100%;
  border: 0;
  text-align: right;
  font: inherit;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(15, 76, 129, 0.12);
}

.faq-item p[hidden] {
  display: none !important;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

body.detail-page,
body[data-page-kind="detail"] {
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.08), transparent 24%),
    linear-gradient(180deg, #faf7f0 0%, #f3ede3 100%);
}

body.detail-page .page-header,
body[data-page-kind="detail"] .page-header {
  padding: 30px 28px 32px !important;
  margin-top: 12px;
  margin-bottom: 26px !important;
  border-bottom: 0 !important;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

body.detail-page .page-header p,
body[data-page-kind="detail"] .page-header p {
  max-width: 820px;
  margin-bottom: 0;
}

body.detail-page .page-header .hero-badge,
body[data-page-kind="detail"] .page-header .hero-badge {
  margin-bottom: 16px;
}

body.detail-page .page-header .hero-metrics,
body[data-page-kind="detail"] .page-header .hero-metrics {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

body.detail-page .grid,
body[data-page-kind="detail"] .grid {
  gap: 24px !important;
  padding-bottom: 34px !important;
}

body.detail-page .card,
body[data-page-kind="detail"] .card {
  border-radius: 20px !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

body.detail-page .card::before,
body[data-page-kind="detail"] .card::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #1976d2);
  opacity: 0.92;
}

body.detail-page .bundle-btn,
body.detail-page .detail-bundle,
body[data-page-kind="detail"] .bundle-btn,
body[data-page-kind="detail"] .detail-bundle {
  text-align: center;
  margin: 6px auto 26px;
  padding: 0 20px;
  max-width: 1100px;
}

body.detail-page .bundle-btn a,
body.detail-page .detail-bundle a,
body[data-page-kind="detail"] .bundle-btn a,
body[data-page-kind="detail"] .detail-bundle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  padding: 15px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(34, 197, 94, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.detail-page .bundle-btn a:hover,
body.detail-page .detail-bundle a:hover,
body[data-page-kind="detail"] .bundle-btn a:hover,
body[data-page-kind="detail"] .detail-bundle a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.24);
}

body.detail-page .buttons,
body[data-page-kind="detail"] .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

body.detail-page .buttons a,
body[data-page-kind="detail"] .buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  font-weight: 800;
  font-size: 0.96rem;
}

body.detail-page .detail-section-heading,
body[data-page-kind="detail"] .detail-section-heading {
  max-width: 1100px;
  margin: 14px auto 14px !important;
  padding: 0 20px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #172033;
  font-size: 1.42rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.detail-page .detail-section-heading::before,
body[data-page-kind="detail"] .detail-section-heading::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f59e0b, #1976d2);
}

body.detail-page hr,
body[data-page-kind="detail"] hr {
  max-width: 1000px;
  margin: 28px auto 34px !important;
  border: 0 !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

body.detail-page .back-btn,
body[data-page-kind="detail"] .back-btn {
  min-width: 240px;
}

body[data-page-kind="detail"] .social-section,
body.detail-page .social-section {
  max-width: 1000px;
  margin: 0 auto 40px !important;
  padding: 42px 24px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98)) !important;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08) !important;
  text-align: center;
}

body[data-page-kind="detail"] .social-section p,
body.detail-page .social-section p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
}

body[data-page-kind="detail"] .social-section a,
body.detail-page .social-section a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 6px !important;
  min-width: 220px;
  padding: 14px 24px !important;
  border-radius: 14px !important;
  text-decoration: none;
  font-weight: 800;
  color: #fff !important;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.10);
}

body[data-page-kind="detail"] .social-section > a,
body.detail-page .social-section > a {
  margin-top: 10px !important;
}

body[data-page-kind="detail"] .social-section a.whatsapp,
body.detail-page .social-section a.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

body[data-page-kind="detail"] .social-section a.facebook,
body.detail-page .social-section a.facebook {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)) !important;
}

body[data-page-kind="detail"] .faq-item h4,
body.detail-page .faq-item h4 {
  border-radius: 12px !important;
  padding: 12px 14px !important;
}

body[data-page-kind="detail"] .faq-item p,
body.detail-page .faq-item p {
  border-radius: 12px !important;
  padding: 14px 16px !important;
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 18px;
  inset-block-end: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 9990;
  text-decoration: none;
}

.whatsapp-float img {
  display: block;
  width: 58px;
  height: 58px;
  padding: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ad06e, #149647);
  box-shadow: 0 16px 30px rgba(20, 150, 71, 0.24);
  animation: none !important;
  transform: none !important;
}

.whatsapp-float span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.92);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  body.site-has-nav {
    padding-top: 0;
  }

  .site-topbar {
    position: sticky;
    top: 0;
  }

  .site-topbar__inner {
    position: relative;
    padding: 10px 14px 12px;
    align-items: stretch;
    gap: 10px;
  }

  .site-topbar__group {
    width: 100%;
  }

  .site-topbar__toggle {
    display: inline-flex;
  }

  .marquee,
  .marquee.special-offer,
  .header,
  .page-header,
  .faq,
  .social-section {
    border-radius: 18px;
  }

  .site-brand {
    text-align: right;
    font-size: 0.95rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav a {
    padding: 10px 12px;
    font-size: 0.92rem;
    text-align: center;
    background: rgba(247, 241, 232, 0.75);
    border-color: rgba(15, 23, 42, 0.05);
  }

  body.site-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.site-menu-open .site-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.14);
    z-index: 9995;
  }

  .site-breadcrumbs {
    margin-top: 16px;
    padding: 0 14px;
  }

  .header,
  .page-header {
    padding: 22px 16px 24px !important;
  }

  .hero-metrics,
  .order-panels {
    grid-template-columns: 1fr;
  }

  body.detail-page .page-header,
  body[data-page-kind="detail"] .page-header {
    padding: 24px 16px 26px !important;
    margin-top: 10px;
  }

  body.detail-page .detail-section-heading,
  body.detail-page .bundle-btn,
  body.detail-page .detail-bundle,
  body[data-page-kind="detail"] .detail-section-heading,
  body[data-page-kind="detail"] .bundle-btn,
  body[data-page-kind="detail"] .detail-bundle {
    padding-right: 14px;
    padding-left: 14px;
  }

  body.detail-page .bundle-btn a,
  body.detail-page .detail-bundle a,
  body.detail-page .back-btn,
  body[data-page-kind="detail"] .bundle-btn a,
  body[data-page-kind="detail"] .detail-bundle a,
  body[data-page-kind="detail"] .back-btn,
  body[data-page-kind="detail"] .social-section a {
    width: 100%;
    min-width: 0;
  }

  .catalog-toolbar {
    padding: 0 14px;
  }

  .toolbar-copy h2 {
    font-size: 1.25rem;
  }

  .grid,
  .trust-bar,
  .site-breadcrumbs {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .marquee,
  .marquee.special-offer {
    margin-top: 12px;
  }

  .section-title {
    font-size: 1.18rem;
  }

  .card {
    border-radius: 18px !important;
  }

  .order-panels {
    padding: 0 14px;
  }

  .order-panel {
    border-radius: 18px;
  }

  .whatsapp-float {
    inset-inline-end: 14px;
    inset-block-end: 14px;
  }

  .whatsapp-float img {
    width: 54px;
    height: 54px;
    padding: 11px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
