/* FF Shop — white + #2AB2D0 */
:root {
  --color-bg: #ffffff;
  --color-surface: #f4f9fb;
  --color-border: #e2eef2;
  --color-text: #0f1419;
  --color-muted: #5a6b73;
  --color-primary: #2ab2d0;
  --color-primary-hover: #1f9bb8;
  --color-primary-soft: rgba(42, 178, 208, 0.12);
  --color-danger: #c0392b;
  --color-success: #1e7a4d;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(15, 20, 25, 0.08);
  --shadow-sm: 0 4px 20px rgba(15, 20, 25, 0.05);
  --shadow-glow: 0 16px 48px rgba(42, 178, 208, 0.2);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1120px;
  --header-h: 68px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hero-mesh-move {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, -3%) scale(1.03);
  }
  66% {
    transform: translate(-3%, 2%) scale(0.98);
  }
}

@keyframes hero-shimmer {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }
  100% {
    transform: translateX(220%) skewX(-12deg);
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes alert-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Storefront: soft mesh + grain (admin uses .admin-body only) */
body.site {
  background-color: #f8fcfd;
  background-image:
    radial-gradient(ellipse 100% 80% at 0% -10%, rgba(42, 178, 208, 0.18), transparent 52%),
    radial-gradient(ellipse 80% 60% at 100% 5%, rgba(42, 178, 208, 0.12), transparent 48%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(42, 178, 208, 0.08), transparent 45%);
}

body.site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(42, 178, 208, 0.12);
  transition: box-shadow 0.35s var(--ease-out-expo), background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(42, 178, 208, 0.18);
  box-shadow: 0 10px 40px rgba(15, 20, 25, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--color-text) 0%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.25s var(--ease-spring), filter 0.25s ease;
}
.logo:hover {
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Image logo (designed for dark background — pill behind on light header) */
.logo.logo--img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 14px;
  font-size: 0;
  letter-spacing: 0;
  font-weight: 700;
  background: linear-gradient(155deg, #060708 0%, #12161a 45%, #0a0d10 100%);
  border: 1px solid rgba(42, 178, 208, 0.28);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: inherit;
  filter: none;
}
.logo.logo--img:hover {
  filter: brightness(1.06);
  border-color: rgba(42, 178, 208, 0.45);
  box-shadow:
    0 14px 44px rgba(42, 178, 208, 0.12),
    0 10px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.logo.logo--img img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
}
.logo.logo--img.logo--admin img {
  height: 36px;
  max-width: 200px;
}

.admin-sidebar .brand.brand--with-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-primary);
}
.admin-sidebar .brand.brand--with-logo .logo.logo--img {
  padding: 0.35rem 0.65rem;
}
.brand__admin-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-expo);
  border-radius: 2px;
}
.site-nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.btn::after {
  display: none;
}

.nav-user {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.nav-cart .badge {
  display: inline-block;
  min-width: 1.25rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  margin-left: 0.15rem;
  box-shadow: 0 4px 14px rgba(42, 178, 208, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  cursor: pointer;
  position: relative;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s;
}
.nav-toggle::before {
  top: 14px;
  box-shadow: 0 7px 0 var(--color-text);
}
.nav-toggle::after {
  top: 28px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a,
  .site-nav .nav-user {
    padding: 0.5rem 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4bc8e0 50%, var(--color-primary-hover) 100%);
  background-size: 200% 200%;
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 55%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(42, 178, 208, 0.35);
  background-position: 100% 50%;
}
.btn--primary:hover::after {
  transform: translateX(120%) skewX(-12deg);
}
.btn--outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-primary);
  border-color: rgba(42, 178, 208, 0.45);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 178, 208, 0.15);
}
.btn--danger {
  background: var(--color-danger);
  color: #fff;
  border-color: var(--color-danger);
}
.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid rgba(42, 178, 208, 0.35);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Alerts */
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  animation: alert-in 0.45s var(--ease-out-expo) both;
  backdrop-filter: blur(8px);
}
.alert--success {
  background: rgba(30, 122, 77, 0.08);
  border-color: rgba(30, 122, 77, 0.25);
  color: var(--color-success);
}
.alert--error {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.25);
  color: var(--color-danger);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(42, 178, 208, 0.12);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 253, 0.88) 45%, rgba(240, 249, 252, 0.95) 100%);
}

.hero--mesh::before,
.hero--mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  pointer-events: none;
  z-index: 0;
  animation: hero-mesh-move 18s ease-in-out infinite;
}

.hero--mesh::before {
  width: min(72vw, 520px);
  height: min(72vw, 520px);
  top: -28%;
  right: -12%;
  background: radial-gradient(circle at 30% 30%, rgba(42, 178, 208, 0.35), rgba(42, 178, 208, 0.05) 55%, transparent 70%);
  opacity: 0.85;
}

.hero--mesh::after {
  width: min(55vw, 380px);
  height: min(55vw, 380px);
  bottom: -35%;
  left: -8%;
  background: radial-gradient(circle at 60% 50%, rgba(42, 178, 208, 0.22), transparent 65%);
  animation-delay: -6s;
  opacity: 0.9;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 16ch;
  animation: fade-rise 0.8s var(--ease-out-expo) both;
}
.hero h1 span {
  background: linear-gradient(120deg, var(--color-text) 10%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
  animation: fade-rise 0.8s var(--ease-out-expo) 0.08s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fade-rise 0.8s var(--ease-out-expo) 0.16s both;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  border-bottom: none;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(42, 178, 208, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(15, 20, 25, 0.04);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.trust-strip span:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 178, 208, 0.35);
  box-shadow: 0 12px 32px rgba(42, 178, 208, 0.12);
}
.trust-strip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 4px 12px rgba(42, 178, 208, 0.35);
}

.section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 2.5rem 0 1.25rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.section-title::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 4px 16px rgba(42, 178, 208, 0.35);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 3rem;
}

body.site .product-grid .product-card {
  animation: card-enter 0.6s var(--ease-out-expo) backwards;
}
body.site .product-grid .product-card:nth-child(1) {
  animation-delay: 0.05s;
}
body.site .product-grid .product-card:nth-child(2) {
  animation-delay: 0.1s;
}
body.site .product-grid .product-card:nth-child(3) {
  animation-delay: 0.15s;
}
body.site .product-grid .product-card:nth-child(4) {
  animation-delay: 0.2s;
}
body.site .product-grid .product-card:nth-child(5) {
  animation-delay: 0.25s;
}
body.site .product-grid .product-card:nth-child(6) {
  animation-delay: 0.3s;
}
body.site .product-grid .product-card:nth-child(7) {
  animation-delay: 0.35s;
}
body.site .product-grid .product-card:nth-child(8) {
  animation-delay: 0.4s;
}
body.site .product-grid .product-card:nth-child(9) {
  animation-delay: 0.45s;
}
body.site .product-grid .product-card:nth-child(10) {
  animation-delay: 0.5s;
}
body.site .product-grid .product-card:nth-child(11) {
  animation-delay: 0.55s;
}
body.site .product-grid .product-card:nth-child(12) {
  animation-delay: 0.6s;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(42, 178, 208, 0.12);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(42, 178, 208, 0.35), transparent 40%, transparent 60%, rgba(42, 178, 208, 0.15));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.product-card:hover {
  box-shadow: var(--shadow), 0 0 0 1px rgba(42, 178, 208, 0.08);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(42, 178, 208, 0.28);
}
.product-card:hover::before {
  opacity: 1;
}
.product-card a {
  color: inherit;
  text-decoration: none;
}
.product-card a:hover {
  color: inherit;
}
.product-card__img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--color-surface), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 178, 208, 0.06) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-card__img::after {
  opacity: 1;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.55s var(--ease-out-expo);
}
.product-card:hover .product-card__img img {
  transform: scale(1.07);
}
.product-card__body {
  padding: 1.1rem 1.2rem 1.35rem;
  position: relative;
  z-index: 1;
}
.product-card__cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.product-card__name {
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.product-card__price {
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--color-text), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Shop layout */
.shop-layout {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 900px) {
  .shop-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}
.shop-filters {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 178, 208, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(15, 20, 25, 0.05);
}
.shop-filters h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  color: var(--color-muted);
}
.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter-list li {
  margin-bottom: 0.35rem;
}
.filter-list a {
  color: var(--color-text);
  font-weight: 500;
}
.filter-list a.is-active {
  color: var(--color-primary);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: center;
}
.shop-toolbar form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}
.shop-toolbar input[type="search"] {
  flex: 1;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(42, 178, 208, 0.2);
  border-radius: 999px;
  font: inherit;
  background: rgba(255, 255, 255, 0.85);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.shop-toolbar input[type="search"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}

/* Product detail */
.product-detail {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }
}
.product-detail__media {
  border: 1px solid rgba(42, 178, 208, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #fff, var(--color-surface));
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.08);
  position: relative;
}
.product-detail__media::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(42, 178, 208, 0.2), transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: hero-mesh-move 14s ease-in-out infinite;
}
.product-detail__media img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease-out-expo);
}
.product-detail__media:hover img {
  transform: scale(1.03);
}
.product-detail__info h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.product-detail__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.stock-ok {
  color: var(--color-success);
  font-weight: 600;
}
.stock-low {
  color: #b8860b;
  font-weight: 600;
}
.stock-out {
  color: var(--color-danger);
  font-weight: 600;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.data-table th,
.data-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table th {
  background: var(--color-surface);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}
.data-table tr:last-child td {
  border-bottom: none;
}

/* Cart & checkout */
.layout-split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .layout-split {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}
.card-panel {
  border: 1px solid rgba(42, 178, 208, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
body.site .card-panel:hover {
  border-color: rgba(42, 178, 208, 0.22);
  box-shadow: var(--shadow);
}
.card-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}
.order-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.order-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Page header */
.page-header {
  padding: clamp(2rem, 5vw, 3rem) 0 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  border-bottom: none;
}
.page-header::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--color-primary), rgba(42, 178, 208, 0.15), transparent);
  border-radius: 2px;
}
.page-header h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  background: linear-gradient(115deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-header p {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 40ch;
}

/* About */
.prose {
  max-width: 42rem;
  padding-bottom: 3rem;
}
.prose h2 {
  margin-top: 2rem;
}

/* Auth card */
.auth-card {
  max-width: 420px;
  margin: 2rem auto 4rem;
  padding: 2rem 2.1rem;
  border: 1px solid rgba(42, 178, 208, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 80px rgba(42, 178, 208, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(42, 178, 208, 0.12), transparent 65%);
  pointer-events: none;
}
.auth-card > * {
  position: relative;
  z-index: 1;
}
.auth-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}
.auth-card .sub {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Admin layout */
.admin-body {
  background: var(--color-surface);
  min-height: 100vh;
}
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
}
.admin-sidebar {
  background: var(--color-bg);
  border-right: 1px solid var(--color-border);
  padding: 1.25rem;
}
.admin-sidebar .brand {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-primary);
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.admin-nav a {
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}
.admin-nav a:hover {
  background: rgba(42, 178, 208, 0.1);
  color: var(--color-primary);
  text-decoration: none;
}
.admin-nav a.is-active {
  background: var(--color-primary);
  color: #fff;
}
.admin-nav a.is-active:hover {
  background: var(--color-primary-hover);
  color: #fff;
}
.admin-main {
  padding: 1.5rem 1.5rem 3rem;
}
.admin-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.stat-card .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}
.stat-card .lbl {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.admin-form-panel {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 640px;
  margin-bottom: 2rem;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.thumb-48 {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-muted);
}

.muted {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.badge-status {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.badge-status--pending {
  background: rgba(184, 134, 11, 0.15);
  color: #8a6d00;
}
.badge-status--paid {
  background: rgba(42, 178, 208, 0.15);
  color: var(--color-primary-hover);
}
.badge-status--shipped {
  background: rgba(30, 122, 77, 0.12);
  color: var(--color-success);
}
.badge-status--cancelled {
  background: rgba(192, 57, 43, 0.12);
  color: var(--color-danger);
}

.site-footer {
  border-top: 1px solid rgba(42, 178, 208, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(244, 249, 251, 0.95) 100%);
  backdrop-filter: blur(12px);
  margin-top: auto;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.45;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.footer-meta a {
  color: var(--color-muted);
}
.footer-meta a:hover {
  color: var(--color-primary);
}

/* Scroll-triggered sections (storefront) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Shop filters: pill links */
body.site .filter-list a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  margin: 0.1rem 0;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s var(--ease-spring);
}
body.site .filter-list a:hover {
  background: var(--color-primary-soft);
  text-decoration: none;
  transform: translateX(4px);
}
body.site .filter-list a.is-active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(42, 178, 208, 0.28);
  text-decoration: none;
}

body.site .empty-state {
  padding: 3rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(42, 178, 208, 0.25);
  background: rgba(255, 255, 255, 0.5);
}

/* =========================================================================
   Premium storefront sections (hero collage, categories, showcase,
   testimonials, stats, cta, about). Appended — none of the base rules
   above were changed.
   ========================================================================= */

/* --- Hero collage (homepage) ---------------------------------------------- */
.hero--premium {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.hero--premium .hero-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero--premium .hero-grid {
    grid-template-columns: 1.05fr 1fr;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-hover);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(42, 178, 208, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(42, 178, 208, 0.1);
  animation: fade-rise 0.8s var(--ease-out-expo) both;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 0 0 4px rgba(42, 178, 208, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(42, 178, 208, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(42, 178, 208, 0.05); }
}

.hero--premium h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  max-width: 14ch;
}
.hero--premium p.hero-lead {
  font-size: 1.15rem;
  max-width: 36rem;
  margin: 0 0 2rem;
  color: var(--color-muted);
  line-height: 1.65;
  animation: fade-rise 0.8s var(--ease-out-expo) 0.08s both;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  aspect-ratio: 1 / 1.05;
  animation: fade-rise 1s var(--ease-out-expo) 0.2s both;
}
.hero-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #fff, var(--color-surface));
  border: 1px solid rgba(42, 178, 208, 0.18);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.08);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.5s ease;
}
.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 60%),
              linear-gradient(180deg, transparent 55%, rgba(15, 20, 25, 0.06) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.8s var(--ease-out-expo);
  position: relative;
  z-index: 0;
}
.hero-tile:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 30px 70px rgba(15, 20, 25, 0.12), 0 0 80px rgba(42, 178, 208, 0.18);
}
.hero-tile:hover img {
  transform: scale(1.05);
}
.hero-tile--main {
  grid-row: span 2;
  aspect-ratio: auto;
}
.hero-tile--accent {
  background:
    radial-gradient(circle at 30% 20%, rgba(42, 178, 208, 0.14), transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #eaf7fb 55%, #dff2f8 100%);
  border-color: rgba(42, 178, 208, 0.45);
  box-shadow: var(--shadow), 0 0 0 6px rgba(42, 178, 208, 0.08), 0 0 80px rgba(42, 178, 208, 0.25);
}
.hero-tile--accent::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(42, 178, 208, 0.18), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(42, 178, 208, 0.08) 100%);
}
.hero-tile--accent img { filter: drop-shadow(0 18px 36px rgba(15, 20, 25, 0.18)); }

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border: 1px solid rgba(42, 178, 208, 0.2);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 3;
}
.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 0 0 4px rgba(42, 178, 208, 0.15);
}

/* --- Category split ------------------------------------------------------- */
.category-split {
  display: grid;
  gap: 1.25rem;
  padding: 3rem 0;
}
@media (min-width: 800px) {
  .category-split { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.cat-tile {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  text-decoration: none;
  background: linear-gradient(160deg, #0a1218 0%, #13222b 55%, #081117 100%);
  border: 1px solid rgba(42, 178, 208, 0.25);
  box-shadow: var(--shadow), 0 0 80px rgba(42, 178, 208, 0.06);
  isolation: isolate;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
}
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -2;
  transition: transform 0.9s var(--ease-out-expo), opacity 0.5s ease;
}
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(42, 178, 208, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(6, 10, 14, 0.2) 0%, rgba(6, 10, 14, 0.8) 100%);
  z-index: -1;
}
.cat-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 178, 208, 0.55);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 30px 70px rgba(15, 20, 25, 0.18), 0 0 80px rgba(42, 178, 208, 0.2);
}
.cat-tile:hover::before { transform: scale(1.06); opacity: 1; }
.cat-tile__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.cat-tile__title {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cat-tile__desc {
  margin: 0 0 1.25rem;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.cat-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.cat-tile__cta::after {
  content: "→";
  transition: transform 0.3s var(--ease-spring);
}
.cat-tile:hover .cat-tile__cta::after { transform: translateX(6px); }

/* --- Showcase gallery ----------------------------------------------------- */
.showcase {
  padding: 3rem 0 1rem;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}
@media (min-width: 720px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}
.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #fff, var(--color-surface));
  border: 1px solid rgba(42, 178, 208, 0.14);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.4s ease;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem;
  transition: transform 0.7s var(--ease-out-expo);
}
.showcase-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.15);
}
.showcase-item:hover img { transform: scale(1.08); }
.showcase-item--wide { grid-column: span 2; }
.showcase-item--tall { grid-row: span 2; }
.showcase-item--dark {
  background:
    radial-gradient(circle at 30% 20%, rgba(42, 178, 208, 0.12), transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #eaf7fb 55%, #dff2f8 100%);
  border-color: rgba(42, 178, 208, 0.4);
  box-shadow: var(--shadow-sm), 0 0 0 4px rgba(42, 178, 208, 0.06), 0 0 40px rgba(42, 178, 208, 0.18);
}
.showcase-item--dark img { filter: drop-shadow(0 14px 28px rgba(15, 20, 25, 0.15)); }
.showcase-caption {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  pointer-events: none;
}
.showcase-item--dark .showcase-caption { color: var(--color-text); }
.showcase-caption span:last-child {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.9;
}

/* --- Stats strip ---------------------------------------------------------- */
.stats-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 2.5rem;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 252, 0.85) 100%);
  border: 1px solid rgba(42, 178, 208, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 85% 50%, rgba(42, 178, 208, 0.12), transparent 55%);
  pointer-events: none;
}
.stat {
  position: relative;
  text-align: center;
  padding: 0.5rem 0.75rem;
}
.stat + .stat { border-left: 1px solid rgba(42, 178, 208, 0.18); }
@media (max-width: 640px) {
  .stat + .stat { border-left: none; border-top: 1px solid rgba(42, 178, 208, 0.18); padding-top: 1rem; }
}
.stat__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--color-text), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__lbl {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* --- Testimonials --------------------------------------------------------- */
.testimonials {
  padding: 3rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}
.testimonial {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 178, 208, 0.14);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.35s ease;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.25rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.18;
  font-weight: 700;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.12);
  border-color: rgba(42, 178, 208, 0.3);
}
.testimonial__stars {
  color: #f5b942;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.testimonial__quote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 1.25rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 8px 24px rgba(42, 178, 208, 0.35);
}
.testimonial__name { font-weight: 700; line-height: 1.2; }
.testimonial__role { font-size: 0.82rem; color: var(--color-muted); }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  margin: 3rem 0;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a1218 0%, #0f1a22 60%, #081117 100%);
  border: 1px solid rgba(42, 178, 208, 0.35);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::before {
  width: 480px;
  height: 480px;
  top: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(42, 178, 208, 0.35), transparent 65%);
  animation: hero-mesh-move 18s ease-in-out infinite;
}
.cta-band::after {
  width: 360px;
  height: 360px;
  bottom: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(42, 178, 208, 0.22), transparent 65%);
  animation: hero-mesh-move 22s ease-in-out infinite reverse;
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  position: relative;
}
.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
}
.cta-band .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.cta-band .btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

/* --- About page ----------------------------------------------------------- */
.about-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero { grid-template-columns: 1.1fr 1fr; }
}
.about-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0.85rem 0 1rem;
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(120deg, var(--color-text) 10%, var(--color-primary) 55%, var(--color-primary-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero p {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 36rem;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #0a1218 0%, #0f1a22 60%, #081117 100%);
  border: 1px solid rgba(42, 178, 208, 0.35);
  box-shadow: var(--shadow), 0 0 80px rgba(42, 178, 208, 0.18);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(42, 178, 208, 0.3), transparent 60%);
  animation: hero-mesh-move 16s ease-in-out infinite;
}
.about-media img {
  max-width: 75%;
  max-height: 80%;
  filter: drop-shadow(0 0 50px rgba(42, 178, 208, 0.55));
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
  padding: 1rem 0 3rem;
}
.value-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 178, 208, 0.14);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.35s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.12);
  border-color: rgba(42, 178, 208, 0.3);
}
.value-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 28px rgba(42, 178, 208, 0.35);
}
.value-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; letter-spacing: -0.02em; }
.value-card p { margin: 0; color: var(--color-muted); line-height: 1.6; }

.process-section {
  padding: 1rem 0 3rem;
}
.process-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.process-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(42, 178, 208, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}
.process-step::before {
  content: "0" counter(step);
  position: absolute;
  top: -14px;
  left: 16px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 6px 20px rgba(42, 178, 208, 0.35);
}
.process-step h3 { margin: 0.35rem 0 0.35rem; font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--color-muted); font-size: 0.95rem; line-height: 1.55; }

.contact-band {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 178, 208, 0.2);
  box-shadow: var(--shadow-sm);
  margin: 1rem 0 3rem;
}
.contact-item__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-item__val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.45;
}
.contact-item__val a { color: inherit; }
.contact-item__val a:hover { color: var(--color-primary); text-decoration: none; }

/* --- Page banner (shop/about shared) -------------------------------------- */
.page-banner {
  position: relative;
  margin-top: 0;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a1218 0%, #0f1a22 55%, #081117 100%);
  color: #fff;
  border: 1px solid rgba(42, 178, 208, 0.3);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.12);
  overflow: hidden;
  margin-bottom: 2rem;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(42, 178, 208, 0.25), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(42, 178, 208, 0.15), transparent 55%);
  pointer-events: none;
  animation: hero-mesh-move 20s ease-in-out infinite;
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner .kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.page-banner h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
}
.page-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* --- Footer (richer columns) ---------------------------------------------- */
.site-footer-rich {
  border-top: 1px solid rgba(42, 178, 208, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(238, 246, 249, 0.95) 100%);
  backdrop-filter: blur(14px);
  margin-top: auto;
  position: relative;
}
.site-footer-rich::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.45;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  padding: 2.5rem 0 1.5rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
}
.footer-col p {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 32ch;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--color-primary); text-decoration: none; }
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-brand-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(42, 178, 208, 0.15);
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* --- Circular category tiles --------------------------------------------- */
.section-title--center {
  justify-content: center;
}
.section-title--center::before {
  display: none;
}
.cat-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 2.75rem;
  justify-content: center;
  padding: 1.5rem 0 3rem;
}
.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.4s var(--ease-out-expo);
}
.cat-circle:hover {
  transform: translateY(-6px);
  text-decoration: none;
  color: var(--color-primary);
}
.cat-circle__img {
  width: clamp(160px, 18vw, 210px);
  height: clamp(160px, 18vw, 210px);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #eaf7fb);
  border: 6px solid #fff;
  box-shadow:
    0 14px 40px rgba(15, 20, 25, 0.12),
    0 0 0 1px rgba(42, 178, 208, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s ease, border-color 0.3s ease;
}
.cat-circle:hover .cat-circle__img {
  box-shadow:
    0 22px 60px rgba(42, 178, 208, 0.28),
    0 0 0 1px rgba(42, 178, 208, 0.35);
  border-color: rgba(255, 255, 255, 0.95);
}
.cat-circle__img img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out-expo);
}
.cat-circle:hover .cat-circle__img img { transform: scale(1.06); }
.cat-circle__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-align: center;
}

/* --- Product card with Add-to-Cart (homepage shop grid) ------------------ */
.product-grid--shop {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product-card--shop {
  display: flex;
  flex-direction: column;
}
.product-card--shop .product-card__link {
  display: block;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.product-card--shop:hover { transform: translateY(-6px); }
.product-card__cart {
  padding: 0 1.1rem 1.2rem;
  position: relative;
  z-index: 2;
}
.btn--add {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4bc8e0 50%, var(--color-primary-hover) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(42, 178, 208, 0.32);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    background-position 0.4s ease;
}
.btn--add:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(42, 178, 208, 0.4);
  background-position: 100% 50%;
  color: #fff;
}
.btn--add:active { transform: scale(0.98); }
.btn--add--out {
  background: var(--color-surface);
  color: var(--color-muted);
  box-shadow: none;
  cursor: not-allowed;
  border: 1px dashed var(--color-border);
}
.btn--add--out:hover {
  transform: none;
  box-shadow: none;
  color: var(--color-muted);
  background: var(--color-surface);
}

@media (prefers-reduced-motion: reduce) {
  .cat-circle:hover,
  .cat-circle:hover .cat-circle__img img,
  .btn--add:hover { transform: none; }
}

/* --- Section header (title + right-aligned link) ------------------------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 1.25rem;
}
.section-header .section-title {
  margin: 0;
}
.section-header__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(42, 178, 208, 0.25);
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.25s ease, color 0.2s ease, border-color 0.25s ease, transform 0.2s var(--ease-spring);
}
.section-header__link:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
  border-color: var(--color-primary);
  text-decoration: none;
  transform: translateX(2px);
}

/* --- Hero banner slider --------------------------------------------------- */
.hero-banner {
  position: relative;
  min-height: 560px;
  height: calc(100vh - var(--header-h) - 12px);
  max-height: 720px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  margin: -1rem 0 0;
}
.hero-banner__slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
  animation: ken-burns 12s ease-out forwards;
}
@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 10, 14, 0.82) 0%, rgba(6, 10, 14, 0.55) 45%, rgba(6, 10, 14, 0.3) 100%),
    linear-gradient(180deg, transparent 55%, rgba(6, 10, 14, 0.6) 100%);
  pointer-events: none;
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 9vh, 5rem) 1rem clamp(4rem, 10vh, 6rem);
}
.hero-banner__text {
  position: absolute;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease-out-expo);
  pointer-events: none;
  max-width: 42rem;
}
.hero-banner__text.is-active {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero-banner .hero-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}
.hero-banner .hero-eyebrow::before {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}
.hero-banner h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #fff;
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero-banner .hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero-banner .hero-actions {
  position: relative;
  z-index: 2;
}
.hero-banner .btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}
.hero-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}
.hero-banner__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.4); }
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}
@media (max-width: 720px) {
  .hero-banner { min-height: 480px; height: 70vh; }
  .hero-banner__content { padding: 2.5rem 1rem 4rem; }
}

/* --- Admin dashboard (basic, utilitarian) --------------------------------- */
.dash-section { margin-bottom: 2rem; }
.dash-section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}
.dash-section__head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.dash-section__link {
  font-size: 0.88rem;
  color: var(--color-primary);
  text-decoration: none;
}
.dash-section__link:hover { color: var(--color-primary-hover); text-decoration: underline; }

.low-stock {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  overflow: hidden;
}
.low-stock li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.low-stock li:last-child { border-bottom: none; }
.low-stock__body { flex: 1; min-width: 0; }
.low-stock__name {
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.low-stock__name:hover { color: var(--color-primary); text-decoration: underline; }
.thumb-48--placeholder {
  display: inline-block;
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
}

.qty-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.qty-pill--low { background: rgba(184, 134, 11, 0.14); color: #8a6d00; }
.qty-pill--out { background: rgba(192, 57, 43, 0.12); color: var(--color-danger); }

.pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
}
.pill--warn { background: rgba(184, 134, 11, 0.12); color: #8a6d00; }
.pill--ok { background: rgba(30, 122, 77, 0.12); color: var(--color-success); }

/* --- Contact page --------------------------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
  padding: 2rem 0 1rem;
}
.contact-card {
  position: relative;
  padding: 1.85rem 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 178, 208, 0.16);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 178, 208, 0.35);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.14);
}
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 10px 28px rgba(42, 178, 208, 0.35);
}
.contact-card__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
}
.contact-card__val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  word-break: break-word;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.contact-card__val:hover { color: var(--color-primary); text-decoration: none; }
.contact-card__val--addr { font-weight: 600; font-size: 1rem; line-height: 1.55; }
.contact-card__hint {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42, 178, 208, 0.2);
  box-shadow: var(--shadow), 0 0 60px rgba(42, 178, 208, 0.08);
  background: var(--color-surface);
}
.contact-map iframe { display: block; }

/* --- Footer contact block ------------------------------------------------- */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text);
}
.footer-contact__lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
}
.footer-contact a {
  color: var(--color-text);
  font-weight: 600;
  word-break: break-word;
}
.footer-contact a:hover { color: var(--color-primary); text-decoration: none; }

.footer-col--contact { min-width: 0; }

@media (prefers-reduced-motion: reduce) {
  .contact-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tile:hover,
  .hero-tile:hover img,
  .cat-tile:hover,
  .cat-tile:hover::before,
  .showcase-item:hover,
  .showcase-item:hover img,
  .testimonial:hover,
  .value-card:hover,
  .stat,
  .hero-media,
  .cta-band::before,
  .cta-band::after,
  .page-banner::before,
  .about-media::before {
    animation: none !important;
    transform: none !important;
  }
  .hero-eyebrow::before { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero--mesh::before,
  .hero--mesh::after,
  .product-detail__media::before {
    animation: none !important;
  }
  body.site .product-grid .product-card {
    animation: none;
  }
  .hero h1,
  .hero p,
  .hero-actions {
    animation: none !important;
  }
  .alert {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .product-card:hover {
    transform: none;
  }
  .product-card:hover .product-card__img img {
    transform: none;
  }
  .product-detail__media:hover img {
    transform: none;
  }
  .btn--primary:hover,
  .btn--outline:hover {
    transform: none;
  }
  .trust-strip span:hover {
    transform: none;
  }
  body.site .filter-list a:hover {
    transform: none;
  }
}

/* Pagination (shop) + Show more (home) */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: 2.25rem 0 0.75rem;
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid #d9e3e8;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1a2730;
  background: #fff;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.pagination__link:hover {
  background: #f3fafc;
  border-color: #2AB2D0;
  color: #2AB2D0;
}
.pagination__link.is-current {
  background: #2AB2D0;
  border-color: #2AB2D0;
  color: #fff;
  font-weight: 600;
  cursor: default;
}
.pagination__link.is-disabled {
  color: #a8b3b8;
  background: #f7f9fa;
  cursor: not-allowed;
}
.pagination__ellipsis {
  padding: 0 0.25rem;
  color: #7d8a91;
}
.pagination__summary {
  text-align: center;
  margin: 0.5rem 0 2rem;
  color: #5b6970;
  font-size: 0.9rem;
}
.show-more-cta {
  display: flex;
  justify-content: center;
}
