:root {
  --bg: #eef7ff;
  --bg-soft: #dcebff;
  --bg-glow: #8cc8ff;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(70, 152, 211, 0.26);
  --text: #0f2640;
  --muted: #4e6886;
  --ink: #0b2239;
  --accent: #16b9ff;
  --accent-2: #1d6bff;
  --accent-soft: rgba(22, 185, 255, 0.14);
  --success: #28c8a0;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 14px 35px rgba(19, 72, 118, 0.16);
  --shadow-strong: 0 28px 72px rgba(19, 72, 118, 0.2);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease);
  background:
    radial-gradient(900px 460px at -10% -10%, rgba(22, 185, 255, 0.22) 0, transparent 68%),
    radial-gradient(900px 530px at 110% -8%, rgba(29, 107, 255, 0.18) 0, transparent 72%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(118, 190, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 190, 255, 0.16) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 30%, black 18%, transparent 82%);
}

body.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

body.is-leaving {
  opacity: 0.42;
  transform: translateY(-4px);
}

header,
main,
section,
footer {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", "Manrope", sans-serif;
  letter-spacing: 0.2px;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.surreal-bg {
  position: fixed;
  inset: -16% -14%;
  z-index: 0;
  pointer-events: none;
  filter: blur(30px) saturate(118%);
  opacity: 0.65;
}

.surreal-blob,
.surreal-halo {
  position: absolute;
  border-radius: 999px;
}

.surreal-blob {
  animation: ambientFloat 30s ease-in-out infinite;
}

.blob-a {
  width: 560px;
  height: 560px;
  left: 7%;
  top: 5%;
  background: rgba(22, 185, 255, 0.25);
}

.blob-b {
  width: 520px;
  height: 520px;
  right: 9%;
  top: 28%;
  background: rgba(29, 107, 255, 0.22);
  animation-delay: -11s;
}

.surreal-halo {
  inset: 18% 24%;
  border: 1px solid rgba(120, 213, 255, 0.28);
  animation: haloPulse 15s ease-in-out infinite;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(240, 248, 255, 0.72);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.32px;
}

.brand span {
  color: var(--accent);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  text-decoration: none;
  color: #295579;
  font-weight: 700;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #88dfff);
  transition: width 0.25s var(--ease);
}

.menu a:hover,
.menu a.active {
  color: #0f3658;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.btn-primary,
.btn-secondary,
.checkout-btn,
.cart-btn,
.ghost-mini {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), opacity 0.18s var(--ease);
}

.btn-primary,
.checkout-btn,
.cart-btn {
  color: #062038;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--accent), #7fe9ff);
  box-shadow: 0 10px 22px rgba(22, 185, 255, 0.32);
}

.btn-secondary {
  color: var(--text);
  padding: 11px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.ghost-mini {
  border-radius: var(--radius-md);
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-primary:hover,
.btn-secondary:hover,
.checkout-btn:hover,
.cart-btn:hover,
.ghost-mini:hover {
  transform: translateY(-2px);
}

.magnetic {
  --mx: 0px;
  --my: 0px;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 0.14s linear, box-shadow 0.18s var(--ease);
  will-change: transform;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-btn span {
  color: #0c3252;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 2px 8px;
}

.hero {
  padding: 68px 0 44px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  margin: 14px 0;
  background: linear-gradient(92deg, #072b4d, #0b5fa8 45%, #2f7cff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  color: var(--muted);
  max-width: 560px;
}

.pill {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #09527d;
  border: 1px solid rgba(70, 183, 234, 0.38);
  background: rgba(22, 185, 255, 0.16);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  border-radius: var(--radius-xl);
  min-height: 390px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(151, 231, 255, 0.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 233, 255, 0.5), transparent 48%),
    radial-gradient(circle at 80% 22%, rgba(43, 132, 255, 0.34), transparent 52%),
    linear-gradient(145deg, #60baff 0%, #7ecbff 45%, #4ca8f5 100%);
}

.hero-media img {
  position: absolute;
  width: 96%;
  max-width: 520px;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  object-fit: contain;
  filter: saturate(0.9) contrast(1.04) brightness(0.98) hue-rotate(-8deg) drop-shadow(0 25px 24px rgba(0, 0, 0, 0.35));
}

.hero-media::before {
  content: "RUNNING SHOES";
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(8, 48, 76, 0.9);
  font-weight: 800;
  letter-spacing: 1.4px;
}

.hero-media::after {
  content: "AIR MAX 2017";
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: rgba(8, 48, 76, 0.92);
  font-weight: 800;
  letter-spacing: 1.1px;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #0c3456;
  border: 1px solid rgba(167, 238, 255, 0.35);
  background: rgba(245, 252, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero-badge strong {
  display: block;
  font-size: 1.08rem;
}

.hero-badge span {
  color: #aad4e8;
  font-size: 0.88rem;
}

.stats-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.26rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-title {
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  margin-top: 8px;
}

.feature-grid,
.category-grid,
.value-grid {
  display: grid;
  gap: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}

.category-grid,
.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.glass-card,
.category-card,
.about-card,
.contact-card,
.status-card,
.checkout-card,
.value-card,
.cta-band,
.info-card,
.toolbar-shell,
.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.glass-card,
.category-card,
.value-card,
.info-card {
  padding: 20px;
}

.glass-card p,
.category-card p,
.value-card p,
.info-card p {
  color: var(--muted);
  margin-top: 8px;
}

.glass-card a,
.category-card a,
.value-card a {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #9fe9ff;
  font-weight: 800;
}

.category-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(45, 176, 236, 0.24), rgba(58, 122, 244, 0.2));
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) hue-rotate(-14deg);
}

.category-body {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.page-main {
  padding: 36px 0 56px;
}

.page-hero {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.82), rgba(230, 244, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -70% -10%;
  height: 180px;
  background: radial-gradient(circle at 50% 0%, rgba(70, 179, 232, 0.2), transparent 70%);
  pointer-events: none;
}

.page-hero h1,
.page-hero h2 {
  color: #10395d;
}

.page-hero p {
  margin-top: 8px;
  color: #3f5f80;
}

.toolbar h2 {
  color: #10395d;
}

.toolbar-shell {
  padding: 18px;
  margin-bottom: 16px;
}

.api-warning {
  margin-top: 10px;
  border: 1px solid rgba(214, 79, 79, 0.35);
  background: rgba(214, 79, 79, 0.08);
  color: #8d2f2f;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

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

.filter-btn {
  border: 1px solid var(--line);
  color: #164468;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  border-color: transparent;
  color: #082039;
  background: linear-gradient(135deg, var(--accent), #90eaff);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), opacity 0.3s var(--ease);
  position: relative;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card::after {
  content: "";
  position: absolute;
  inset: -80% auto auto -40%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(174, 237, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(15deg);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.card:hover::after {
  opacity: 1;
  animation: cardShine 0.62s linear;
}

.card h3 {
  line-height: 1.2;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 14px;
}

.chip {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 9px;
  color: #ffffff;
  background: #1e7ff1;
}

.meta {
  margin: 7px 0 12px;
  color: var(--muted);
}

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

.about-card,
.contact-card,
.status-card,
.checkout-card,
.story-card,
.cta-band {
  padding: 24px;
}

.about-card p,
.contact-card p,
.status-card p,
.story-card p,
.cta-band p {
  margin-top: 10px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.story-visual {
  border-radius: var(--radius-xl);
  min-height: 320px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.field-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  outline: 2px solid rgba(22, 185, 255, 0.38);
  outline-offset: 1px;
}

.line-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(111, 203, 255, 0.24);
}

.total-row {
  margin-top: 14px;
  font-weight: 800;
}

.status-id {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(40, 200, 160, 0.12);
  color: var(--success);
  font-weight: 800;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -430px;
  width: min(410px, 95vw);
  height: 100vh;
  z-index: 80;
  background: rgba(237, 247, 255, 0.97);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 54px rgba(31, 96, 153, 0.22);
  display: flex;
  flex-direction: column;
  transition: right 0.22s var(--ease);
}

.cart-panel.open {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-header button {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 14px 16px;
}

.cart-item {
  border-bottom: 1px solid rgba(110, 203, 255, 0.2);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(16, 52, 84, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s linear;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  margin-top: 20px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(231, 244, 255, 0.88);
  color: #0f2640;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-row p {
  color: #5f7894;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #0f4268;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.92;
}

.footer-links a:hover {
  opacity: 1;
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(22, 185, 255, 0.24), rgba(29, 107, 255, 0.2)),
    rgba(232, 244, 255, 0.72);
  opacity: 0;
  transition: opacity 0.18s linear;
}

.page-wipe.is-active {
  opacity: 1;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  color: #9ce9ff;
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  color: var(--muted);
  padding: 0 18px 16px;
}

.admin-main {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.admin-main > * {
  width: 100%;
  max-width: 1220px;
}

.admin-app {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.admin-app > * {
  width: 100%;
}

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

.admin-auth-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}

.admin-auth-card h2 {
  color: #113a5f;
}

.admin-auth-card p {
  color: #4f6a86;
  margin-top: 8px;
}

.admin-auth-message {
  min-height: 24px;
  margin-top: 10px;
  font-weight: 700;
  color: #2a5477;
}

.admin-auth-message.is-success {
  color: #116745;
}

.admin-auth-message.is-error {
  color: #8d2f2f;
}

.admin-notice {
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: #184a73;
  font-weight: 700;
}

.admin-notice.is-success {
  color: #116745;
  border-color: rgba(40, 200, 160, 0.4);
  background: rgba(40, 200, 160, 0.12);
}

.admin-notice.is-error {
  color: #8d2f2f;
  border-color: rgba(214, 79, 79, 0.4);
  background: rgba(214, 79, 79, 0.12);
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 285px));
  justify-content: center;
  gap: 12px;
}

.kpi-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  text-align: center;
}

.kpi-card h3 {
  color: #2f5f88;
  font-size: 0.94rem;
}

.kpi-value {
  margin-top: 8px;
  font-size: 1.46rem;
  font-weight: 800;
  color: #0f3658;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 602px));
  justify-content: center;
  gap: 16px;
}

.admin-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.admin-panel h2 {
  margin-bottom: 12px;
  color: #113a5f;
}

.admin-table-wrap {
  margin-top: 14px;
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(70, 152, 211, 0.22);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(70, 152, 211, 0.18);
  vertical-align: top;
}

.admin-table th {
  background: rgba(236, 247, 255, 0.9);
  color: #2c587f;
  font-size: 0.84rem;
  letter-spacing: 0.3px;
}

.admin-table td {
  color: #123958;
  font-size: 0.92rem;
}

.cell-muted {
  color: #5d7893;
  font-size: 0.84rem;
}

.btn-danger {
  color: #b3262b;
  border-color: rgba(179, 38, 43, 0.35);
}

.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.status-nouvelle {
  background: rgba(22, 185, 255, 0.16);
  color: #0c547f;
  border-color: rgba(22, 185, 255, 0.3);
}

.status-en_preparation {
  background: rgba(255, 171, 46, 0.16);
  color: #875603;
  border-color: rgba(255, 171, 46, 0.32);
}

.status-expediee {
  background: rgba(72, 120, 255, 0.14);
  color: #2547a4;
  border-color: rgba(72, 120, 255, 0.32);
}

.status-livree {
  background: rgba(40, 200, 160, 0.16);
  color: #0f724e;
  border-color: rgba(40, 200, 160, 0.32);
}

.status-annulee {
  background: rgba(214, 79, 79, 0.14);
  color: #8f2e2e;
  border-color: rgba(214, 79, 79, 0.32);
}

.status-select {
  display: block;
  width: 100%;
  border-radius: 10px;
  padding: 8px 10px;
  color: #113a5f;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(70, 152, 211, 0.28);
}

.activity-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.activity-item {
  border: 1px solid rgba(70, 152, 211, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(249, 253, 255, 0.84);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.activity-item span {
  color: #5d7893;
  font-size: 0.84rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -14px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes haloPulse {
  0% {
    transform: scale(1);
    opacity: 0.26;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.42;
  }
  100% {
    transform: scale(1);
    opacity: 0.26;
  }
}

@keyframes cardShine {
  0% {
    transform: translateX(-160%) rotate(15deg);
  }
  100% {
    transform: translateX(330%) rotate(15deg);
  }
}

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

@media (max-width: 960px) {
  .surreal-bg {
    display: none;
  }

  .menu {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .category-grid,
  .value-grid,
  .about-grid,
  .split-layout,
  .checkout-layout,
  .admin-grid,
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media img {
    width: 92%;
    transform: translate(-50%, -50%) rotate(-10deg);
  }
}
