/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --uwash-red: #e31e24;
  --uwash-red-dark: #b8181d;
  --uwash-blue: #4db8e8;
  --uwash-blue-deep: #002187;
  --uwash-navy: #001a57;
  --uwash-yellow: #ffd700;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.16);
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--uwash-navy);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(77, 184, 232, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(77, 184, 232, 0.08) 0%, transparent 50%),
    linear-gradient(168deg, #000f3d 0%, var(--uwash-blue-deep) 45%, #001560 100%);
  overflow: hidden;
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 75% at 50% 45%, transparent 40%, rgba(0, 8, 40, 0.55) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
}

/* ===== Background Light ===== */
.bg-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.bg-light__source {
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 95vw);
  height: min(720px, 95vw);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(180, 220, 255, 0.2) 20%,
    rgba(100, 170, 255, 0.1) 40%,
    transparent 68%
  );
  animation: lightPulse 6s ease-in-out infinite;
}

.bg-light__rays {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 130vw);
  height: min(850px, 110vh);
  background: repeating-conic-gradient(
    from -90deg at 50% 0%,
    rgba(255, 255, 255, 0.1) 0deg 5deg,
    transparent 5deg 16deg
  );
  -webkit-mask-image: radial-gradient(ellipse 50% 70% at 50% 0%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 50% 70% at 50% 0%, black 0%, transparent 70%);
  opacity: 0.7;
  animation: lightRays 9s ease-in-out infinite alternate;
}

.bg-light__beam {
  position: absolute;
  top: -4%;
  left: 50%;
  width: 100px;
  height: 70vh;
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(120,180,255,0.04) 70%, transparent 100%);
  filter: blur(3px);
  opacity: 0.45;
  animation: beamPulse 7s ease-in-out infinite;
}

.bg-light__beam--1 { transform: translateX(-50%) rotate(-24deg); }
.bg-light__beam--2 { transform: translateX(-50%) rotate(-12deg); width: 80px; animation-delay: 1s; }
.bg-light__beam--3 { transform: translateX(-50%) rotate(0deg); width: 130px; opacity: 0.6; animation-delay: 2s; }
.bg-light__beam--4 { transform: translateX(-50%) rotate(12deg); width: 80px; animation-delay: 3s; }
.bg-light__beam--5 { transform: translateX(-50%) rotate(24deg); animation-delay: 4s; }

@keyframes lightPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(0.97); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.03); }
}

@keyframes lightRays {
  0% { opacity: 0.5; transform: translateX(-50%) scale(0.99); }
  100% { opacity: 0.8; transform: translateX(-50%) scale(1.01); }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.65; }
}

/* ===== Bubbles ===== */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.5) 0%, rgba(100,180,255,0.12) 45%, rgba(50,120,220,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  animation: bubbleFloat 9s ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

.bubble--1  { width: 90px;  height: 90px;  top: 7%;   left: 14%;  opacity: 0.45; }
.bubble--2  { width: 48px;  height: 48px;  top: 22%;  left: 7%;   opacity: 0.3; animation-delay: 1.2s; }
.bubble--3  { width: 130px; height: 130px; top: 4%;   right: 18%; opacity: 0.25; animation-delay: 2.5s; }
.bubble--4  { width: 55px;  height: 55px;  top: 38%;  right: 4%;  opacity: 0.35; animation-delay: 0.6s; }
.bubble--5  { width: 32px;  height: 32px;  top: 52%;  left: 2%;   opacity: 0.28; animation-delay: 3s; }
.bubble--6  { width: 85px;  height: 85px;  bottom: 18%; left: 22%; opacity: 0.22; animation-delay: 1.8s; }
.bubble--7  { width: 50px;  height: 50px;  bottom: 32%; right: 10%; opacity: 0.3; animation-delay: 2.8s; }
.bubble--8  { width: 28px;  height: 28px;  top: 62%;  left: 44%; opacity: 0.38; animation-delay: 0.9s; }
.bubble--9  { width: 65px;  height: 65px;  top: 14%;  left: 52%; opacity: 0.18; animation-delay: 4s; }
.bubble--10 { width: 38px;  height: 38px;  bottom: 12%; right: 28%; opacity: 0.28; animation-delay: 1.4s; }
.bubble--11 { width: 110px; height: 110px; bottom: 4%;  left: 58%; opacity: 0.16; animation-delay: 3.6s; }
.bubble--12 { width: 26px;  height: 26px;  top: 42%;  right: 32%; opacity: 0.4; animation-delay: 2.1s; }

/* ===== Sparkles & Flowers ===== */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.sparkle {
  position: absolute;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  animation: twinkle 3.5s ease-in-out infinite;
}

.sparkle--1 { top: 14%; left: 24%; }
.sparkle--2 { top: 28%; right: 20%; font-size: 18px; animation-delay: 0.6s; }
.sparkle--3 { top: 48%; left: 9%; font-size: 10px; animation-delay: 1.2s; }
.sparkle--4 { bottom: 38%; right: 22%; animation-delay: 1.8s; }
.sparkle--5 { top: 20%; left: 50%; font-size: 16px; animation-delay: 0.4s; }
.sparkle--6 { bottom: 22%; left: 38%; font-size: 12px; animation-delay: 2.4s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

.flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.flower {
  position: absolute;
  opacity: 0.8;
  animation: flowerSway 6s ease-in-out infinite;
}

.flower--1 { width: 42px; top: 14%; right: 26%; animation-delay: 0s; }
.flower--2 { width: 30px; top: 58%; left: 10%; animation-delay: 1.5s; }
.flower--3 { width: 26px; bottom: 28%; right: 7%; animation-delay: 3s; }
.flower--4 { width: 38px; top: 32%; left: 4%; opacity: 0.65; animation-delay: 2s; }

@keyframes flowerSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ===== Header ===== */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(32px, 5vw, 80px) 0;
  animation: fadeDown 0.9s ease-out both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.logo__img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease;
}

.logo:hover .logo__img {
  transform: scale(1.05);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header__auth-btn:hover {
  transform: translateY(-2px);
}

.header__auth-btn--login {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__auth-btn--login:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.header__auth-btn--signup {
  color: #fff;
  background: linear-gradient(135deg, var(--uwash-red) 0%, var(--uwash-red-dark) 100%);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.35);
}

.header__auth-btn--signup:hover {
  box-shadow: 0 8px 22px rgba(227, 30, 36, 0.45);
}

/* ===== Swoosh ===== */
.swoosh {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52%;
  z-index: 3;
  pointer-events: none;
}

.swoosh svg {
  width: 100%;
  height: 100%;
}

/* ===== Main Layout ===== */
.main-content {
  position: relative;
  z-index: 6;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: 24px clamp(32px, 5vw, 80px) 56px;
  max-width: none;
  width: 100%;
  margin: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Mascot (butterfly) ===== */
.mascot {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  pointer-events: none;
  offset-path: ellipse(36% 26% at 46% 40%);
  offset-rotate: 0deg;
  offset-anchor: center;
  will-change: offset-distance;
  animation: butterflyPath 22s linear infinite;
}

.mascot__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  animation:
    fadeIn 1.1s ease-out 0.35s both,
    butterflyBob 2.4s ease-in-out infinite;
}

@keyframes butterflyPath {
  to { offset-distance: 100%; }
}

@keyframes butterflyBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== Product ===== */
.products {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  animation: fadeUp 1.1s ease-out 0.15s both;
}

.products__wrap {
  position: relative;
  width: 100%;
  max-width: min(540px, 100%);
  overflow: visible;
}

.products__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.products__ring--outer {
  width: 125%;
  height: 125%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(ellipse at center, rgba(77, 184, 232, 0.06) 0%, transparent 65%);
  animation: ringPulse 7s ease-in-out infinite;
}

.products__ring--inner {
  width: 108%;
  height: 108%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  animation: ringPulse 7s ease-in-out infinite reverse;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -54%) scale(0.98); opacity: 0.7; }
  50% { transform: translate(-50%, -54%) scale(1.02); opacity: 1; }
}

.products__wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 140%;
  height: 140%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(77, 184, 232, 0.12) 30%,
    transparent 65%
  );
  animation: productGlow 6s ease-in-out infinite alternate;
}

@keyframes productGlow {
  0% { opacity: 0.65; transform: translate(-50%, -56%) scale(0.94); }
  100% { opacity: 1; transform: translate(-50%, -56%) scale(1.04); }
}

.products__img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter:
    brightness(1.12)
    contrast(1.1)
    saturate(1.18)
    drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 50px rgba(77, 184, 232, 0.3))
    drop-shadow(0 0 90px rgba(255, 255, 255, 0.1));
}

.products__gloss {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: url('../assets/images/uwash-product.png');
  mask-image: url('../assets/images/uwash-product.png');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: linear-gradient(
    105deg,
    transparent 22%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 78%
  );
  background-size: 220% 100%;
  mix-blend-mode: soft-light;
  animation: productGloss 6s ease-in-out infinite;
}

.products__highlight {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  -webkit-mask-image: url('../assets/images/uwash-product.png');
  mask-image: url('../assets/images/uwash-product.png');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background:
    radial-gradient(ellipse 50% 38% at 26% 20%, rgba(255, 255, 255, 0.75) 0%, transparent 65%),
    radial-gradient(ellipse 35% 28% at 74% 16%, rgba(255, 220, 100, 0.4) 0%, transparent 60%);
  mix-blend-mode: screen;
  animation: productHighlight 5s ease-in-out infinite alternate;
}

@keyframes productGloss {
  0%, 100% { background-position: 100% 0; opacity: 0.65; }
  50% { background-position: 0% 0; opacity: 1; }
}

@keyframes productHighlight {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ===== Shelf ===== */
.products__shelf {
  position: absolute;
  left: 8%;
  right: 6%;
  top: 86%;
  height: 18%;
  z-index: 0;
  pointer-events: none;
}

.shelf__surface {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(190,225,255,0.25) 100%);
  border-radius: 10px 10px 2px 2px;
  box-shadow: 0 -6px 20px rgba(255,255,255,0.18), inset 0 1px 0 rgba(255,255,255,0.75);
  transform: perspective(500px) rotateX(10deg);
  transform-origin: bottom center;
}

.shelf__edge {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  height: 76%;
  background: linear-gradient(180deg, rgba(77,184,232,0.5) 0%, rgba(0,33,135,0.75) 50%, rgba(0,15,70,0.9) 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 28px rgba(0,15,60,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}

.shelf__shadow {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -8%;
  height: 14%;
  background: radial-gradient(ellipse 85% 100% at 50% 0%, rgba(0,0,0,0.4) 0%, transparent 72%);
  filter: blur(6px);
}

/* ===== Hero Text ===== */
.hero-text {
  grid-column: 1;
  grid-row: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 16px;
  animation: fadeUp 1.1s ease-out 0.55s both;
}

.hero-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow:
    0 0 40px rgba(77, 184, 232, 0.15),
    2px 2px 0 rgba(0, 20, 80, 0.55),
    0 6px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}

.hero-heading__line {
  display: block;
}

.hero-heading__line--accent {
  margin-top: 6px;
}

.hero-brand {
  font-style: normal;
  color: var(--uwash-yellow);
  text-shadow:
    0 0 30px rgba(255, 215, 0, 0.45),
    0 0 60px rgba(255, 215, 0, 0.15),
    2px 2px 0 var(--uwash-red-dark);
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 16px auto 0;
}

.quote-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--uwash-red) 0%, var(--uwash-red-dark) 100%);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(227, 30, 36, 0.4);
}

.category-card .quote-btn {
  margin-top: 14px;
  font-size: 0.78rem;
  padding: 10px 18px;
}

/* ===== Categories Section ===== */
.categories {
  position: relative;
  padding: 80px 32px 100px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(77, 184, 232, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #000818 0%, #001045 40%, #000a2e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.categories__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 80px);
}

.categories__heading {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.categories__intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 40px;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 184, 232, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(77, 184, 232, 0.08);
}

.category-card--featured {
  border-color: rgba(227, 30, 36, 0.35);
  background: rgba(227, 30, 36, 0.06);
}

.category-card--featured:hover {
  border-color: rgba(227, 30, 36, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(227, 30, 36, 0.12);
}

.category-card__visual {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.category-card__img {
  max-width: 85%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.category-card__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--uwash-blue);
  line-height: 1.35;
}

.category-card--featured .category-card__title {
  color: #fff;
}

.category-card__visual--liquid::before {
  content: '';
  width: 54px;
  height: 118px;
  background: linear-gradient(180deg, #fff 0%, #f0f4f8 55%, #e8eef5 100%);
  border-radius: 10px 10px 14px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.category-card__visual--liquid::after {
  content: '';
  position: absolute;
  top: 24px;
  width: 32px;
  height: 16px;
  background: linear-gradient(180deg, var(--uwash-red) 0%, var(--uwash-red-dark) 100%);
  border-radius: 5px 5px 0 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.category-card__visual--liquid {
  background: radial-gradient(circle at 50% 80%, rgba(77, 184, 232, 0.12) 0%, transparent 55%);
}

.category-card__visual--conditioner::before {
  content: '';
  width: 58px;
  height: 112px;
  background: linear-gradient(180deg, var(--uwash-yellow) 0%, #e8a800 100%);
  border-radius: 10px 10px 16px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.category-card__visual--conditioner::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 36px;
  height: 28px;
  background: linear-gradient(180deg, var(--uwash-blue) 0%, var(--uwash-blue-deep) 100%);
  border-radius: 4px;
  opacity: 0.9;
}

.category-card__visual--dish::before {
  content: '';
  width: 56px;
  height: 114px;
  background: linear-gradient(180deg, var(--uwash-blue) 0%, var(--uwash-blue-deep) 100%);
  border-radius: 10px 10px 16px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card__visual--dish::after {
  content: '';
  position: absolute;
  top: 26px;
  width: 30px;
  height: 14px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal:nth-child(4) { transition-delay: 0.26s; }

/* ===== Footer ===== */
.footer {
  padding: 56px 0 32px;
  background: #000510;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer__logo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.footer__logo {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease;
}

.footer__logo-link:hover .footer__logo {
  transform: scale(1.04);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer__contact-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--uwash-blue);
}

.footer__link--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__link--whatsapp:hover {
  color: #25d366;
}

.footer__link--map {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer__whatsapp-icon {
  flex-shrink: 0;
}

.footer__address {
  font-style: normal;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer__social-btn:hover {
  transform: translateY(-2px);
}

.footer__social-btn--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer__social-btn--tiktok:hover {
  background: #010101;
  border-color: #fe2c55;
}

.footer__social-btn--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.footer__social-btn--youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.footer__social-btn--x:hover {
  background: #000;
  border-color: #fff;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 40px;
  padding: 24px clamp(32px, 5vw, 80px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Mobile contact bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(0, 10, 30, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: env(safe-area-inset-bottom, 0);
}

.mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease;
}

.mobile-bar__btn--call {
  background: linear-gradient(135deg, var(--uwash-red) 0%, var(--uwash-red-dark) 100%);
}

.mobile-bar__btn--call:hover {
  background: var(--uwash-red-dark);
}

.mobile-bar__btn--whatsapp {
  background: #128c7e;
}

.mobile-bar__btn--whatsapp:hover {
  background: #0d7268;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .header {
    padding: 12px 16px 0;
  }

  .main-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 16px 24px 40px;
  }

  .mascot {
    width: 120px;
    height: 120px;
    offset-path: ellipse(44% 24% at 50% 36%);
    offset-rotate: 0deg;
    animation: butterflyPath 18s linear infinite;
  }

  .mascot__img {
    max-width: 120px;
  }

  .products {
    grid-column: 1;
    grid-row: 1;
  }

  .products__wrap {
    max-width: 380px;
  }

  .hero-text {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 16px;
  }

  .hero-subtext {
    margin: 16px auto 0;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
  }

  .categories__inner {
    padding: 0 20px;
  }

  .categories {
    padding: 60px 20px 80px;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 0 20px;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__logo {
    height: 64px;
  }

  .footer__tagline {
    max-width: none;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 56px;
  }

  .mascot {
    width: 90px;
    height: 90px;
    opacity: 0.7;
  }

  .mascot__img {
    max-width: 90px;
  }
}

@media (max-width: 600px) {
  .logo__img {
    height: 58px;
  }

  .header__nav {
    gap: 8px;
  }

  .header__auth-btn {
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .flower--4,
  .bubble--11 {
    display: none;
  }

  .hero-heading {
    font-size: clamp(1.85rem, 8vw, 2.3rem);
  }

  .products__wrap {
    max-width: 320px;
  }

  .categories__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .category-card__visual {
    height: 140px;
  }
}

/* ===== Business Auth Pages ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(77, 184, 232, 0.18) 0%, transparent 55%),
    linear-gradient(168deg, #000f3d 0%, var(--uwash-blue-deep) 45%, #001560 100%);
}

.auth-page .header {
  animation: none;
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 48px;
}

.auth-main--signup {
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 64px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: visible;
}

.auth-card--wide {
  max-width: 560px;
}

.auth-card__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.auth-card__subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 28px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.auth-section {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.auth-section + .auth-section {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-section__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--uwash-blue);
  margin-bottom: 4px;
  padding: 0;
  width: 100%;
}

.auth-section__hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  margin: -8px 0 0;
}

.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.auth-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.auth-field__row label {
  margin-bottom: 0;
}

.auth-forgot {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--uwash-blue);
  text-decoration: none;
  white-space: nowrap;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.auth-field input {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.auth-field input:focus {
  border-color: var(--uwash-blue);
  box-shadow: 0 0 0 3px rgba(77, 184, 232, 0.22);
}

.auth-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: none;
  resize: vertical;
  min-height: 88px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.auth-field textarea:focus {
  border-color: var(--uwash-blue);
  box-shadow: 0 0 0 3px rgba(77, 184, 232, 0.22);
}

.auth-field__hint {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.auth-field--address {
  position: relative;
  z-index: 50;
  overflow: visible;
}

.auth-address-mount {
  position: relative;
  width: 100%;
  overflow: visible;
}

.auth-address-mount gmp-place-autocomplete {
  display: block;
  width: 100%;
  color-scheme: light;
}

.auth-field--address .gm-err-container,
.auth-field--address .gm-err-message {
  display: none !important;
}

.auth-field--address input[hidden] {
  display: none !important;
}

.pac-container {
  z-index: 10050;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-family: 'Nunito', sans-serif;
  margin-top: 4px;
}

.pac-item {
  padding: 10px 12px;
  cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(77, 184, 232, 0.12);
}

.auth-upload {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.auth-upload:hover {
  border-color: rgba(77, 184, 232, 0.55);
  background: rgba(0, 0, 0, 0.32);
}

.auth-upload__label {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.auth-upload__btn {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: 8px 14px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(77, 184, 232, 0.22);
  border: 1px solid rgba(77, 184, 232, 0.45);
  border-radius: 999px;
}

.auth-upload__name {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.auth-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--uwash-red) 0%, var(--uwash-red-dark) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(227, 30, 36, 0.4);
}

.auth-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.auth-submit--secondary {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.auth-submit--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.auth-alert {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.auth-alert--error {
  background: rgba(227, 30, 36, 0.18);
  border: 1px solid rgba(227, 30, 36, 0.45);
  color: #ffd4d4;
}

.auth-alert--success {
  background: rgba(77, 184, 232, 0.16);
  border: 1px solid rgba(77, 184, 232, 0.45);
  color: #d8f3ff;
}

.dashboard__loading {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.dashboard__welcome {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.dashboard__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.dashboard__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.dashboard__list span {
  color: rgba(255, 255, 255, 0.58);
}

.dashboard__note {
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.auth-card__footer {
  margin-top: 22px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.auth-card__footer a {
  color: var(--uwash-blue);
  font-weight: 700;
  text-decoration: none;
}

.auth-card__footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .auth-card {
    padding: 28px 20px;
  }

  .auth-card--wide {
    max-width: 100%;
  }

  .auth-field-row {
    grid-template-columns: 1fr;
  }

  .auth-upload {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .auth-upload__btn {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    margin-top: 4px;
  }
}
