:root {
  --pink: #ff9ec8;
  --blue: #a2e8ff;
  --yellow: #ffe66d;
  --mint: #b5ead7;
  --lavender: #e0bbe4;
  --ink: #52364d;
  --cream: #fffafc;
  --card-shadow: 0 24px 50px rgba(255, 158, 200, 0.16);
  --glass: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 158, 200, 0.28), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(162, 232, 255, 0.3), transparent 18%),
    radial-gradient(circle at 30% 88%, rgba(181, 234, 215, 0.25), transparent 18%),
    linear-gradient(180deg, #fff8fc 0%, #fdfdff 42%, #fff8f4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ff9ec8' fill-opacity='0.12'%3E%3Ccircle cx='36' cy='38' r='9'/%3E%3Ccircle cx='58' cy='28' r='7'/%3E%3Ccircle cx='26' cy='20' r='7'/%3E%3Ccircle cx='14' cy='42' r='7'/%3E%3Cpath d='M41 54c13 0 22 7 22 16s-8 15-20 15-22-5-22-15 8-16 20-16z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 168px 168px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
}

.container-cute {
  width: min(1200px, calc(100% - 1rem));
  margin: 0 auto;
}

.heading-bubble {
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.01em;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6fae 0%, #7dd9ff 45%, #bfa2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-nav {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 45px rgba(255, 158, 200, 0.12);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  transform: translateY(-2px);
  background: rgba(255, 158, 200, 0.14);
  color: #ff4f97;
}

.paw-bounce {
  animation: pawBounce 1.8s ease-in-out infinite;
}

@keyframes pawBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(-6deg); }
}

.cute-button,
.cute-button-outline,
.tab-chip,
.filter-pill,
.qty-btn {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cute-button {
  background: linear-gradient(135deg, #ff8dbe 0%, #ffb9d6 55%, #ffe66d 100%);
  color: #5d2c55;
  box-shadow: 0 18px 34px rgba(255, 158, 200, 0.28);
}

.cute-button:hover,
.cute-button:focus-visible,
.tab-chip:hover,
.filter-pill:hover,
.qty-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.cute-button-outline {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 158, 200, 0.36);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(82, 54, 77, 0.08);
}

.hero-wrap {
  position: relative;
  isolation: isolate;
  padding-top: 7.4rem;
}

.hero-glow,
.blob-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.7;
  z-index: -1;
}

.hero-glow.one {
  top: 8%;
  left: -5%;
  width: 260px;
  height: 260px;
  background: rgba(255, 158, 200, 0.34);
}

.hero-glow.two {
  top: 18%;
  right: 4%;
  width: 240px;
  height: 240px;
  background: rgba(162, 232, 255, 0.34);
}

.hero-glow.three {
  bottom: 0;
  left: 28%;
  width: 220px;
  height: 220px;
  background: rgba(181, 234, 215, 0.28);
}

.hero-badge,
.sparkle-pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 24px rgba(255, 158, 200, 0.16);
  border-radius: 999px;
}

.hero-panel,
.soft-card,
.story-card,
.team-card,
.blog-card,
.reason-card,
.product-card,
.filter-card,
.cart-panel,
.press-chip {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--card-shadow);
}

.hero-panel {
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  width: clamp(140px, 18vw, 220px);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(255, 158, 200, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-one {
  top: 10%;
  right: 12%;
  transform: rotate(6deg);
}

.photo-two {
  bottom: 16%;
  right: 0;
  transform: rotate(-8deg);
}

.photo-three {
  bottom: 0;
  left: 8%;
  transform: rotate(-4deg);
}

.heart-float,
.sparkle-float {
  position: absolute;
  pointer-events: none;
  animation: floaty 4.5s ease-in-out infinite;
}

.heart-float:nth-child(2n) {
  animation-duration: 5.2s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.08); }
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.illustration-bubble {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 240, 246, 0.95));
  overflow: hidden;
}

.illustration-bubble::before,
.illustration-bubble::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 158, 200, 0.18);
}

.illustration-bubble::before {
  width: 160px;
  height: 160px;
  top: -30px;
  right: -20px;
}

.illustration-bubble::after {
  width: 120px;
  height: 120px;
  bottom: -24px;
  left: -24px;
  background: rgba(162, 232, 255, 0.24);
}

.paw-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.paw-scroller::-webkit-scrollbar {
  height: 8px;
}

.paw-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 158, 200, 0.35);
  border-radius: 999px;
}

.photo-card {
  min-height: 340px;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
}

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

.photo-card .caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(82, 54, 77, 0.8));
  color: white;
}

.blog-card,
.product-card,
.team-card,
.reason-card,
.story-card,
.filter-card {
  overflow: hidden;
}

.blog-card:hover .blog-cover img,
.product-card:hover .product-media img {
  transform: scale(1.06);
}

.blog-cover,
.product-media {
  position: relative;
  overflow: hidden;
}

.blog-cover img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reason-icon,
.team-avatar,
.mission-icon,
.logo-dot {
  width: 70px;
  height: 70px;
  border-radius: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 18px 26px rgba(255, 158, 200, 0.18);
}

.footer-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.86));
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 20px rgba(255, 158, 200, 0.18);
}

.modal-shell,
.drawer-shell,
.toast-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.modal-shell,
.drawer-shell {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.toast-shell {
  visibility: visible;
}

.modal-shell.active,
.drawer-shell.active,
.toast-shell.active {
  pointer-events: auto;
}

.modal-shell.active,
.drawer-shell.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop,
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(82, 54, 77, 0.24);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-shell.active .modal-backdrop,
.drawer-shell.active .drawer-backdrop {
  opacity: 1;
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 24px)) scale(0.96);
  width: min(680px, calc(100% - 1rem));
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 1.2rem;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-shell.active .modal-panel {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cart-panel {
  width: min(560px, calc(100% - 1rem));
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100%;
  padding: 1rem;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.drawer-shell.active .mobile-drawer {
  opacity: 1;
  transform: translateX(0);
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  padding: 0.85rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 158, 200, 0.14);
}

.cart-thumb {
  width: 88px;
  height: 88px;
  border-radius: 1.1rem;
  object-fit: cover;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 158, 200, 0.1);
  padding: 0.35rem;
  border-radius: 999px;
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  background: white;
  box-shadow: 0 8px 16px rgba(255, 158, 200, 0.18);
}

.toast-wrap {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: min(360px, calc(100vw - 2rem));
  display: grid;
  gap: 0.75rem;
}

.toast-card {
  border-radius: 1.6rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 38px rgba(82, 54, 77, 0.12);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-card.show {
  transform: translateY(0);
  opacity: 1;
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-media {
  aspect-ratio: 4 / 4.2;
  height: auto;
}

.product-tag,
.filter-pill,
.tab-chip,
.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.tab-chip {
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(82, 54, 77, 0.08);
}

.tab-chip.active {
  background: linear-gradient(135deg, rgba(255,158,200,0.95), rgba(255, 206, 225, 1));
  color: #5c204c;
  box-shadow: 0 0 0 4px rgba(255, 158, 200, 0.2), 0 18px 32px rgba(255, 158, 200, 0.3);
}

.filter-pill {
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  border: 1px solid transparent;
}

.filter-pill.active {
  border-color: rgba(255, 158, 200, 0.45);
  background: rgba(255, 233, 242, 0.95);
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 1px rgba(82, 54, 77, 0.1);
}

.range-track {
  accent-color: #ff7ab3;
}

.empty-state {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,245,249,0.96));
}

.about-hero,
.page-hero {
  padding-top: 7.4rem;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.press-chip {
  padding: 1rem 1.1rem;
  text-align: center;
  font-weight: 700;
}

.hero-canvas {
  min-height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255,255,255,0.82), rgba(255,233,242,0.78));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--card-shadow);
  position: relative;
}

.hero-canvas::after {
  content: '✨ 3D cuteness mode';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  font-size: 0.8rem;
  font-weight: 700;
}

.sparkle-ring {
  position: absolute;
  inset: auto auto 1rem 1rem;
  display: inline-flex;
  gap: 0.5rem;
}

.sparkle-ring span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.18);
  animation: popSpark 2.4s ease-in-out infinite;
}

.sparkle-ring span:nth-child(2) { animation-delay: 0.25s; }
.sparkle-ring span:nth-child(3) { animation-delay: 0.5s; }

@keyframes popSpark {
  0%, 100% { transform: scale(0.8); opacity: 0.55; }
  50% { transform: scale(1.25); opacity: 1; }
}

.reveal-up {
  opacity: 1;
  transform: none;
}

.floating-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.82);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(255, 158, 200, 0.18);
}

.focus-ring:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 158, 200, 0.5);
  outline-offset: 2px;
}


.anchor-target {
  scroll-margin-top: 8rem;
}

main {
  overflow-x: clip;
}

.hero-canvas {
  min-height: 420px;
}

.hero-canvas canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-canvas.is-loaded canvas {
  opacity: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  display: block;
}

.hero-fallback-chip {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(255, 158, 200, 0.16);
}

.hero-fallback-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 3px solid rgba(255,255,255,0.84);
  box-shadow: 0 20px 40px rgba(255, 158, 200, 0.18);
  background: white;
}

.hero-fallback-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-a {
  inset: 20% auto auto 12%;
  width: 42%;
  height: 54%;
  transform: rotate(-8deg);
}

.fallback-b {
  inset: auto 11% 10% auto;
  width: 38%;
  height: 50%;
  transform: rotate(8deg);
}

.hero-fallback-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
}

.orb-pink {
  left: 12%;
  top: 16%;
  width: 130px;
  height: 130px;
  background: rgba(255, 158, 200, 0.22);
}

.orb-blue {
  right: 14%;
  bottom: 12%;
  width: 120px;
  height: 120px;
  background: rgba(162, 232, 255, 0.24);
}

.hero-canvas.is-loaded .hero-fallback {
  opacity: 0.06;
}

.variant-chip,
.color-choice {
  cursor: pointer;
}

.product-card,
.blog-card,
.reason-card,
.story-card,
.team-card,
.filter-card,
.photo-card {
  will-change: transform;
}

@media (min-width: 768px) {
  .hero-wrap {
    padding-top: 8rem;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-layout {
    grid-template-columns: 310px 1fr;
    align-items: start;
  }



  .logo-cloud {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


@media (max-width: 767px) {
  body::before {
    opacity: 0.12;
  }

  .container-cute {
    width: min(100%, calc(100% - 0.75rem));
  }

  .glass-nav {
    border-radius: 1.7rem;
  }

  .hero-wrap {
    padding-top: 7rem;
  }

  .page-hero,
  .about-hero {
    padding-top: 7rem;
  }

  .hero-wrap .grid,
  .shop-hero-grid {
    gap: 1rem;
  }

  .hero-canvas {
    min-height: 280px;
  }

  .hero-canvas::after {
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.72rem;
    padding: 0.45rem 0.7rem;
  }

  .sparkle-ring {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .hero-fallback {
    padding: 0.85rem;
  }

  .fallback-a {
    left: 9%;
    top: 22%;
    width: 48%;
    height: 56%;
  }

  .fallback-b {
    right: 8%;
    bottom: 11%;
    width: 42%;
    height: 52%;
  }

  .floating-chip {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }

  .hero-photo {
    display: none !important;
  }

  .photo-card {
    min-height: 280px;
  }

  .paw-scroller {
    grid-auto-columns: minmax(200px, 78vw);
  }

  .product-media {
    aspect-ratio: 4 / 4.25;
  }

  .modal-panel {
    padding: 0.85rem;
  }

  .toast-wrap {
    inset: auto 0.75rem 0.75rem auto;
    width: calc(100vw - 1.5rem);
  }
}


.variant-chip,
.color-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.variant-chip:hover,
.color-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(255, 158, 200, 0.16);
}

.variant-chip.active {
  background: linear-gradient(135deg, rgba(255, 158, 200, 0.95), rgba(255, 222, 235, 1));
  border-color: rgba(255, 158, 200, 0.45);
  color: #5c204c;
}

.color-choice.active {
  border-color: rgba(255, 158, 200, 0.45);
  background: rgba(255, 244, 248, 0.98);
  box-shadow: 0 0 0 4px rgba(255, 158, 200, 0.12);
}

.color-choice-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(82, 54, 77, 0.14);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-shot {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(255, 158, 200, 0.14);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(255, 158, 200, 0.2);
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-shot--featured {
  grid-column: span 2;
}

.gallery-shot--featured img {
  aspect-ratio: 16 / 11;
}

.gallery-lightbox-panel {
  width: min(980px, calc(100% - 1rem));
}

.gallery-lightbox-image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,245,249,0.95));
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-shot--featured {
    grid-column: span 2;
  }

  .gallery-shot--featured img {
    aspect-ratio: 16 / 12;
  }
}


.premium-gallery-section {
  position: relative;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 26px 52px rgba(255, 158, 200, 0.16);
}

.premium-pink-shell { background: linear-gradient(180deg, rgba(255,245,249,0.96), rgba(255,255,255,0.9)); }
.premium-sky-shell { background: linear-gradient(180deg, rgba(242,251,255,0.98), rgba(255,255,255,0.9)); }
.premium-yellow-shell { background: linear-gradient(180deg, rgba(255,251,235,0.98), rgba(255,255,255,0.9)); }
.premium-mint-shell { background: linear-gradient(180deg, rgba(244,255,251,0.98), rgba(255,255,255,0.9)); }
.premium-lavender-shell { background: linear-gradient(180deg, rgba(249,245,255,0.98), rgba(255,255,255,0.9)); }

.premium-mini-card {
  border-radius: 2rem;
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 20px 40px rgba(255,158,200,0.14);
  background: rgba(255,255,255,0.9);
}
.premium-pink { background: linear-gradient(180deg, rgba(255,244,248,1), rgba(255,255,255,0.96)); }
.premium-sky { background: linear-gradient(180deg, rgba(242,250,255,1), rgba(255,255,255,0.96)); }
.premium-yellow { background: linear-gradient(180deg, rgba(255,250,235,1), rgba(255,255,255,0.96)); }
.premium-mint { background: linear-gradient(180deg, rgba(242,255,249,1), rgba(255,255,255,0.96)); }
.premium-lavender { background: linear-gradient(180deg, rgba(248,243,255,1), rgba(255,255,255,0.96)); }

.owner-mini-pill,
.owner-signature,
.gallery-owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(82,54,77,0.1);
}

.owner-mini-pill {
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
}

.owner-signature {
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
}

.gallery-owner-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.48rem 0.78rem;
  font-size: 0.74rem;
  backdrop-filter: blur(8px);
}

.owner-pink { background: rgba(255, 236, 244, 0.95); color: #d94a8a; }
.owner-sky { background: rgba(235, 248, 255, 0.95); color: #2a93d8; }
.owner-yellow { background: rgba(255, 247, 220, 0.96); color: #b57a07; }
.owner-mint { background: rgba(235, 252, 246, 0.96); color: #20916a; }
.owner-purple { background: rgba(244, 238, 255, 0.96); color: #7a4bd8; }

.premium-section-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.gallery-shot {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 1.6rem;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 34px rgba(255, 158, 200, 0.16);
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(82,54,77,0.02), rgba(82,54,77,0.18));
  pointer-events: none;
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
  transform: scale(1.04);
}

.gallery-lightbox-panel {
  width: min(860px, calc(100% - 1rem));
}
.gallery-lightbox-image {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.shop-ad-shell {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,245,250,0.98));
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: 0 24px 48px rgba(255,158,200,0.16);
}
.shop-ad-banner {
  min-height: 180px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 20px 40px rgba(255,158,200,0.15);
}
.shop-ad-image {
  min-height: 180px;
}
.shop-ad-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(82,54,77,0.18) 0%, rgba(82,54,77,0.04) 44%, rgba(82,54,77,0.02) 100%);
}
.shop-ad-copy {
  max-width: 420px;
}
.shop-ad-cta {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-ad-banner:hover .shop-ad-cta,
.shop-ad-banner:focus-visible .shop-ad-cta {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,255,255,0.24);
}

@media (max-width: 767px) {
  .premium-section-top {
    gap: 0.6rem;
  }
  .owner-signature {
    font-size: 0.76rem;
    padding: 0.5rem 0.78rem;
  }
  .gallery-owner-badge {
    top: 0.55rem;
    left: 0.55rem;
    font-size: 0.68rem;
    padding: 0.42rem 0.62rem;
  }
  .shop-ad-banner,
  .shop-ad-image {
    min-height: 160px;
  }
  .shop-ad-overlay {
    align-items: end;
    padding: 0.8rem;
    background: linear-gradient(180deg, rgba(82,54,77,0.04) 0%, rgba(82,54,77,0.42) 100%);
  }
  .shop-ad-copy {
    max-width: 100%;
  }
}
