﻿:root {
  --bg: #fff0f6;
  --bg-alt: #ffe0ed;
  --bg-deep: #f6c7db;
  --bg-glow: rgba(255, 45, 135, 0.18);
  --bg-cocoa-glow: rgba(154, 23, 80, 0.18);
  --bg-rose-glow: rgba(255, 179, 201, 0.35);
  --espresso: #2a0f1b;
  --cocoa: #5a1a39;
  --caramel: #d81b60;
  --rose: #ffd1e1;
  --sage: #e6f1ea;
  --white: #fff8fc;
  --surface: rgba(255, 248, 252, 0.92);
  --surface-strong: rgba(255, 248, 252, 0.98);
  --surface-muted: rgba(255, 248, 252, 0.84);
  --border: rgba(154, 23, 80, 0.18);
  --border-soft: rgba(154, 23, 80, 0.1);
  --chip: rgba(154, 23, 80, 0.1);
  --chip-strong: rgba(154, 23, 80, 0.18);
  --ink-muted: rgba(42, 15, 27, 0.72);
  --ink-soft: rgba(42, 15, 27, 0.58);
  --primary: #d81b60;
  --primary-bright: #ff2d87;
  --primary-deep: #9a1750;
  --shadow: 0 30px 60px rgba(154, 23, 80, 0.22);
  --soft-shadow: 0 18px 36px rgba(154, 23, 80, 0.14);
  --font-body: "Tajawal", "Cairo", sans-serif;
  --font-heading: "Changa", "Tajawal", sans-serif;
  --font-brand: "Bebas Neue", "Changa", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--espresso);
  background:
    radial-gradient(1200px circle at 12% 10%, var(--bg-glow), transparent 60%),
    radial-gradient(900px circle at 88% 6%, var(--bg-rose-glow), transparent 58%),
    radial-gradient(760px circle at 18% 100%, var(--bg-cocoa-glow), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 55%, var(--bg-deep) 100%);
  min-height: 100vh;
  line-height: 1.7;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 248, 252, 0.6), rgba(255, 248, 252, 0)),
    repeating-linear-gradient(140deg, rgba(154, 23, 80, 0.05), rgba(154, 23, 80, 0.05) 1px, transparent 1px, transparent 16px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px 96px;
}

.site-header {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 248, 252, 0.92), rgba(255, 216, 234, 0.75));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: riseIn 0.7s ease both;
}

.site-header::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 45, 135, 0.35), transparent 70%);
  opacity: 0.8;
}

.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-text {
  text-align: right;
}

.logo-mark {
  width: 84px;
  height: 84px;
  border-radius: 18px 6px 18px 6px;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary-deep));
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(255, 45, 135, 0.25);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.logo-mark span {
  font-family: var(--font-brand);
  font-size: 34px;
  color: var(--white);
  letter-spacing: 2px;
}

.brand-text .eyebrow {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0 0 6px;
  color: var(--ink-muted);
}

.brand-title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 36px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-deep);
  text-shadow: 0 8px 20px rgba(216, 27, 96, 0.25);
}

.tagline {
  margin: 6px 0 0;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin: 32px 0 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 248, 252, 0.92), rgba(255, 206, 230, 0.55));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px 36px;
  box-shadow: var(--shadow);
  animation: riseIn 0.8s ease 0.05s both;
}

.hero::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 45, 135, 0.35), transparent 70%);
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -110px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 179, 201, 0.45), transparent 70%);
  opacity: 0.7;
}

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

.hero-text {
  background: rgba(255, 248, 252, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 18px 30px rgba(154, 23, 80, 0.12);
  position: relative;
  overflow: hidden;
  text-align: right;
}

.hero-text::after {
  content: "SANTOZA";
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-family: var(--font-brand);
  font-size: clamp(42px, 10vw, 72px);
  letter-spacing: 6px;
  opacity: 0.08;
  color: var(--primary-deep);
  pointer-events: none;
}

.hero-text h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  margin: 0 0 14px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary-deep);
  background: linear-gradient(90deg, var(--primary-deep), var(--primary-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.note {
  font-size: 13px;
  color: var(--ink-soft);
  flex-basis: 100%;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.section-head::after {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 45, 135, 0.2), transparent 70%);
  opacity: 0.7;
}

.section-head > div,
.section-head .section-pill {
  position: relative;
  z-index: 1;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.section-pill {
  background: var(--chip);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  border: 1px solid var(--border);
  color: var(--primary-deep);
  font-weight: 600;
}

.process,
.products,
.insights,
.faq {
  margin: 56px 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
  animation: riseIn 0.9s ease both;
  position: relative;
  overflow: hidden;
}

.process::before,
.products::before,
.insights::before,
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-bright), transparent);
  opacity: 0.7;
}

.process::after,
.products::after,
.insights::after,
.faq::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: calc(100% - 28px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-bright), rgba(255, 45, 135, 0));
  opacity: 0.65;
}

.process > *,
.products > *,
.insights > *,
.faq > * {
  position: relative;
  z-index: 1;
}

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

.insight-card {
  background: var(--surface-strong);
  border-radius: 18px 18px 10px 18px;
  padding: 18px;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--primary);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.insight-card:nth-child(2) {
  animation-delay: 0.08s;
}

.insight-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.4;
}

.insight-card p,
.insight-card li {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--surface-strong);
  border-radius: 18px 18px 10px 18px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--primary-deep);
  box-shadow: var(--soft-shadow);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.step-card:nth-child(2) {
  animation-delay: 0.08s;
}

.step-card:nth-child(3) {
  animation-delay: 0.16s;
}

.step-card:nth-child(4) {
  animation-delay: 0.24s;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-bright));
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.insight-card ul {
  margin: 0;
  padding-right: 18px;
  display: grid;
  gap: 8px;
}

.insight-card:hover,
.step-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(154, 23, 80, 0.2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  border-radius: 18px 18px 10px 18px;
  padding: 12px 16px;
  box-shadow: var(--soft-shadow);
  border-right: 3px solid var(--primary);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.faq-item:nth-child(2) {
  animation-delay: 0.08s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.16s;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(255, 45, 135, 0.12);
  border: 1px solid var(--border);
  color: var(--primary-deep);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "-";
  background: rgba(255, 45, 135, 0.2);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.product-card {
  background: var(--surface-strong);
  border-radius: 20px 20px 12px 20px;
  padding: 16px;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(12px);
  animation-delay: var(--delay, 0s);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(154, 23, 80, 0.2);
  border-color: rgba(255, 45, 135, 0.35);
}

.product-image {
  height: clamp(180px, 22vw, 240px);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.28), rgba(154, 23, 80, 0.2));
  position: relative;
  overflow: hidden;
}

.product-image.has-image {
  background-color: var(--surface);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-image.placeholder::after {
  content: "SANTOZA";
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: var(--font-brand);
  font-size: 18px;
  color: rgba(255, 248, 252, 0.9);
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: var(--font-heading);
  line-height: 1.4;
}

.product-info p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  flex-wrap: wrap;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-code {
  background: var(--chip);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--primary-deep);
  font-weight: 600;
}

.price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}

.price-wrap span {
  color: var(--primary-deep);
}

.price-wrap span + span {
  color: var(--primary);
}

.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-bright));
  color: var(--white);
  box-shadow: 0 16px 28px rgba(216, 27, 96, 0.28);
}

.btn-ghost {
  background: rgba(255, 45, 135, 0.08);
  color: var(--primary-deep);
  border: 1px solid var(--border);
}

.btn-danger {
  background: rgba(158, 52, 44, 0.12);
  color: #7a1f18;
  border: 1px solid rgba(158, 52, 44, 0.25);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(216, 27, 96, 0.3);
}

#showMoreBtn {
  margin: 24px auto 0;
  display: none;
}

.admin-panel {
  position: fixed;
  inset: 0;
  background: rgba(42, 15, 27, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overscroll-behavior: contain;
}

.admin-panel.hidden {
  display: none;
}

.product-details {
  position: fixed;
  inset: 0;
  background: rgba(42, 15, 27, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overscroll-behavior: contain;
}

.product-details.hidden {
  display: none;
}

.details-card {
  background: var(--surface-strong);
  border-radius: 24px 24px 14px 24px;
  padding: 24px;
  width: min(980px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}

.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.details-eyebrow {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--ink-muted);
}

.details-body {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.3fr);
  gap: 22px;
  align-items: start;
}

.details-image {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.32), rgba(154, 23, 80, 0.22));
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.details-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.details-image span {
  font-family: var(--font-brand);
  font-size: 26px;
  letter-spacing: 2px;
  color: rgba(255, 248, 252, 0.92);
}

.details-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.details-description {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.8;
}

.details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.details-chip {
  background: var(--chip);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--border-soft);
  color: var(--primary-deep);
}

.details-price {
  font-weight: 700;
  color: var(--primary-deep);
}

.details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.details-list li {
  background: rgba(255, 45, 135, 0.06);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-muted);
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body.details-open {
  overflow: hidden;
}

body.admin-open {
  overflow: hidden;
}

.admin-card {
  background: var(--surface-strong);
  border-radius: 24px 24px 14px 24px;
  padding: 24px;
  width: min(900px, 100%);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.admin-header h3,
.site-footer h3 {
  font-family: var(--font-heading);
  line-height: 1.4;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-products {
  display: grid;
  gap: 14px;
}

.admin-product-list {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 45, 135, 0.05);
  border: 1px solid var(--border);
}

.admin-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  border-right: 3px solid var(--primary);
}

.admin-product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-product-title {
  font-size: 14px;
  font-weight: 600;
}

.admin-product-code {
  font-size: 12px;
  color: var(--ink-soft);
}

.admin-product-empty {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 4px;
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(154, 23, 80, 0.25);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.18);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.admin-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

.admin-settings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.settings-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(255, 248, 252, 0.92), rgba(255, 218, 235, 0.7));
  border-radius: 22px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
}

.admin-entry {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

#adminToggle {
  opacity: 0.75;
}

#adminToggle:hover {
  opacity: 0.95;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(24px + env(safe-area-inset-right));
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #38d87d, #118c4a);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(17, 140, 74, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(17, 140, 74, 0.4);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .product-card,
  .insight-card,
  .step-card,
  .faq-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .admin-settings {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 600px) {
  .page {
    padding: 24px 16px 60px;
  }

  .hero {
    padding: 24px 20px;
  }

  .hero-text {
    padding: 18px;
  }

  .hero-text::after {
    font-size: 48px;
    right: 10px;
  }

  .brand-title {
    font-size: 28px;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-head {
    padding: 10px 12px;
  }

  .process,
  .products,
  .insights,
  .faq {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .details-card {
    padding: 20px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
  }
}
