/* ============================================
   MAT TOZ BOYA — Özel animasyon katmanı
   Scroll, kepenk açılışı, toz boya, parallax
   ============================================ */

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9998;
  background: linear-gradient(90deg, #b8956c, #1e3a5f, #b8956c);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  transform-origin: left;
  pointer-events: none;
}

@keyframes progressShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  background: radial-gradient(circle, rgba(184, 149, 108, 0.18), transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
  opacity: 0;
}

.cursor-glow.on {
  opacity: 1;
}

/* Floating powder particles on body */
.powder-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.powder-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  animation: powderDrift linear infinite;
  filter: blur(0.5px);
}

@keyframes powderDrift {
  0% {
    transform: translateY(100vh) translateX(0) scale(0.4);
    opacity: 0;
  }
  10% { opacity: 0.35; }
  90% { opacity: 0.2; }
  100% {
    transform: translateY(-10vh) translateX(40px) scale(1);
    opacity: 0;
  }
}

/* ========== PAGE LOAD ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0f1c30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.08em;
}

.loader-logo {
  height: 56px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  background: transparent;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  /* light plate so transparent logo is visible on dark loader */
  box-shadow: 0 0 0 999px #fff;
  clip-path: inset(0 round 14px);
  animation: logoIn 0.6s ease both;
}

/* cleaner: white rounded card behind transparent logo */
.page-loader .loader-logo {
  box-shadow: none;
  clip-path: none;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
}

@keyframes logoIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8956c, #fff);
  animation: loadFill 1.2s ease forwards;
}

@keyframes loadFill {
  to { width: 100%; }
}

/* ========== REVEAL VARIANTS ========== */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Letter-split removed (caused broken/misaligned headings) */

/* ========== STAGE: TOZ BOYA ========== */
.stage {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.stage-powder {
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(184, 149, 108, 0.12), transparent),
    linear-gradient(180deg, #f7f5f2 0%, #ebe6df 100%);
}

.stage-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.stage-copy {
  min-width: 0;
  max-width: 100%;
}

.stage-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.stage-copy p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  max-width: 36em;
  margin-bottom: 1.25rem;
}

.stage-copy .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stage.in-view .pill {
  opacity: 1;
  transform: none;
}

.stage.in-view .pill:nth-child(1) { transition-delay: 0.15s; }
.stage.in-view .pill:nth-child(2) { transition-delay: 0.28s; }
.stage.in-view .pill:nth-child(3) { transition-delay: 0.4s; }
.stage.in-view .pill:nth-child(4) { transition-delay: 0.52s; }

/* Powder spray machine visual */
.powder-scene {
  position: relative;
  height: 380px;
  border-radius: 24px;
  background: linear-gradient(160deg, #1a2740 0%, #0f1c30 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.powder-scene .metal-piece {
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 200px;
  border-radius: 8px;
  background: linear-gradient(90deg, #6b7280, #9ca3af 40%, #6b7280);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.35);
  transition: background 1.4s ease, box-shadow 1.4s ease, filter 1.4s ease;
  z-index: 2;
}

.powder-scene .metal-piece::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* When spraying active */
.powder-scene.spraying .metal-piece {
  background: linear-gradient(90deg, #1e3a5f, #2c5282 45%, #1e3a5f);
  box-shadow: 0 0 40px rgba(44, 82, 130, 0.45), inset 0 0 20px rgba(0, 0, 0, 0.2);
  filter: saturate(1.2);
}

.powder-scene.spraying .metal-piece.gold {
  background: linear-gradient(90deg, #8b6914, #c9a227 50%, #8b6914);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
}

.spray-gun {
  position: absolute;
  right: 12%;
  top: 42%;
  width: 90px;
  height: 28px;
  background: linear-gradient(90deg, #374151, #111827);
  border-radius: 6px 20px 20px 6px;
  z-index: 3;
  transform: rotate(-8deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: gunPulse 2.2s ease-in-out infinite;
}

.spray-gun::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 6px;
  width: 18px;
  height: 16px;
  background: #4b5563;
  border-radius: 4px 0 0 4px;
}

.spray-gun::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 8px;
  width: 14px;
  height: 12px;
  background: #b8956c;
  border-radius: 0 4px 4px 0;
}

@keyframes gunPulse {
  0%, 100% { transform: rotate(-8deg) translateX(0); }
  50% { transform: rotate(-6deg) translateX(-6px); }
}

.spray-cloud {
  position: absolute;
  right: 28%;
  top: 38%;
  width: 140px;
  height: 80px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.powder-scene.spraying .spray-cloud {
  opacity: 1;
  animation: cloudPulse 1.2s ease-in-out infinite;
}

@keyframes cloudPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.spray-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #93c5fd;
  opacity: 0;
}

.powder-scene.spraying .spray-particle {
  animation: sprayFly 1.1s ease-out infinite;
}

@keyframes sprayFly {
  0% {
    opacity: 0.9;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-100px, var(--dy, 0px)) scale(0.3);
  }
}

.powder-scene .scene-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
}

.powder-scene .live-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  z-index: 4;
}

.powder-scene .live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: blink 1.2s infinite;
}

/* ========== STAGE: KEPENK AÇILMA ========== */
.stage-kepenk {
  background: linear-gradient(180deg, #ebe6df 0%, #f7f5f2 50%, #fff 100%);
}

.kepenk-scene {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #87a8c4 0%, #c5d5e4 40%, #e8e4dc 40%, #d4cfc4 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

/* Store frame */
.kepenk-frame {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 12%;
  bottom: 8%;
  border: 10px solid #2a2a2a;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 30%),
    linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1a2740 100%);
}

.kepenk-frame .shop-glass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%),
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
  z-index: 1;
}

.kepenk-frame .shop-sign {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(88%, 260px);
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(10, 16, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.kepenk-frame .shop-sign strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}

.kepenk-frame .shop-sign span {
  display: block;
  font-family: var(--font);
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light, #d4b896);
  line-height: 1.3;
}

.kepenk-scene.open .shop-sign {
  opacity: 1;
}

/* The shutter curtain - rolls up via clip / height */
.kepenk-curtain {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 5;
  transform-origin: top center;
  transition: height 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  background:
    repeating-linear-gradient(
      180deg,
      #5a5a5a 0px,
      #6e6e6e 6px,
      #4a4a4a 7px,
      #5a5a5a 14px
    );
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.35);
}

.kepenk-curtain::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.kepenk-curtain::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 48px;
  height: 6px;
  border-radius: 3px;
  background: #222;
  box-shadow: 0 0 0 2px #444;
}

/* Open state driven by JS class + CSS var */
.kepenk-scene.open .kepenk-curtain {
  height: var(--open-amount, 12%);
}

.kepenk-box {
  position: absolute;
  left: 12%;
  right: 12%;
  top: calc(12% - 18px);
  height: 22px;
  background: linear-gradient(180deg, #1f1f1f, #333);
  border-radius: 4px 4px 0 0;
  z-index: 6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.kepenk-scene .scene-hint {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  z-index: 7;
  transition: opacity 0.4s;
}

.kepenk-scene.open .scene-hint {
  opacity: 0;
}

/* Scroll-linked fill bar under scene */
.scroll-meter {
  margin-top: 1.25rem;
  height: 4px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.scroll-meter span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  transition: width 0.1s linear;
}

/* ========== MARQUEE ========== */
.marquee-wrap {
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  padding: 0 2rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.marquee-track span em {
  font-style: italic;
  color: var(--accent-light);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== STORY / PROCESS CARDS (4 fit on screen) ========== */
.story-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0.5rem 0 0.25rem;
  width: 100%;
  overflow: visible;
}

.story-rail-fit {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-card {
  min-width: 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.story-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card .sc-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-card .sc-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.story-card h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.story-card p {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .story-rail,
  .story-rail-fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .story-card img {
    height: 130px;
  }
}

@media (max-width: 560px) {
  .story-rail,
  .story-rail-fit {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .story-card img {
    height: 100px;
  }

  .story-card .sc-body {
    padding: 0.75rem 0.8rem 0.9rem;
  }

  .story-card .sc-num {
    font-size: 1.35rem;
  }

  .story-card h3 {
    font-size: 0.88rem;
  }

  .story-card p {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ========== 3D TILT CARDS ========== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s;
}

/* ========== MAGNETIC BTN ========== */
.btn-magnetic {
  transition: transform 0.2s ease-out !important;
}

/* ========== STAT PULSE ========== */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184, 149, 108, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.stat-card:hover::after {
  opacity: 1;
}

/* ========== GALLERY PARALLAX HOVER ========== */
.gallery-item {
  transform: none !important;
  transition: box-shadow 0.35s ease;
}

.gallery-item.visible {
  animation: galleryFade 0.55s ease both;
}

@keyframes galleryFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-item img,
.feature-photo img,
.service-media img,
.story-card img {
  transform: none;
  image-orientation: from-image;
}

/* ========== CTA MORPH ========== */
.cta-band {
  transition: transform 0.5s ease;
}

.cta-band:hover {
  transform: scale(1.01);
}

.cta-band .btn {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(184, 149, 108, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(184, 149, 108, 0.7); }
}

/* ========== HERO EXTRA ========== */
.hero-slider .slide h1 em {
  position: relative;
  display: inline-block;
}

.hero-slider .slide.active h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  animation: lineDraw 1.2s 0.5s ease both;
  transform-origin: left;
}

@keyframes lineDraw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Floating badges on hero */
.hero-float-badges {
  position: absolute;
  right: max(4%, calc((100% - 1180px) / 2));
  top: 22%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.hero-float-badges .fb {
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  animation: floatBadge 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-float-badges .fb:nth-child(2) {
  animation-delay: -1.5s;
  margin-left: 1.5rem;
}

.hero-float-badges .fb:nth-child(3) {
  animation-delay: -3s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Service card glow line animation */
.service-card {
  --glow: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    calc(var(--glow, 0) * 1deg),
    transparent,
    rgba(184, 149, 108, 0.6),
    transparent
  );
  -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;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover::after {
  opacity: 1;
  animation: spinGlow 3s linear infinite;
}

@keyframes spinGlow {
  to { --glow: 360; }
}

@property --glow {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

/* Mobile */
@media (max-width: 960px) {
  .stage-inner {
    grid-template-columns: 1fr !important;
  }

  .powder-scene,
  .kepenk-scene {
    height: min(300px, 58vw);
    min-height: 240px;
  }

  .hero-float-badges,
  .slide-float {
    display: none !important;
  }

  .cursor-glow,
  .powder-field {
    display: none !important;
  }

  .marquee-track span {
    font-size: 1.05rem;
    padding: 0 1.25rem;
  }

  .story-rail {
    margin: 0 -0.25rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 720px) {
  .kepenk-frame {
    left: 6%;
    right: 6%;
    border-width: 6px;
  }

  .kepenk-frame .shop-sign {
    width: min(92%, 220px);
    padding: 0.65rem 0.75rem;
    bottom: 12%;
  }

  .kepenk-frame .shop-sign strong {
    font-size: 0.95rem;
  }

  .kepenk-frame .shop-sign span {
    font-size: 0.68rem;
  }

  .spray-gun {
    right: 8%;
    transform: scale(0.85) rotate(-8deg);
  }

  .pill-row {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    display: none;
  }
}
