/* ══════════════════════════════════════════════
   OFFERS CATALOG — Icon Grid Page
══════════════════════════════════════════════ */
:root {
  --bg: #f7f6ff;
  --surface: rgba(255,255,255,0.72);
  --glass: rgba(255,255,255,0.58);
  --ink: #0c0b1e;
  --ink70: rgba(12,11,30,0.7);
  --ink55: rgba(12,11,30,0.55);
  --ink30: rgba(12,11,30,0.3);
  --ink10: rgba(12,11,30,0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-1: 0 20px 50px rgba(12,11,30,0.12);
  --shadow-2: 0 35px 80px rgba(12,11,30,0.2);
  --eoe: cubic-bezier(.16,1,.3,1);
  --esp: cubic-bezier(.34,1.56,.64,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; overflow-x:hidden }
body { font-family:'Cabinet Grotesk',sans-serif; background:var(--bg); color:var(--ink); overflow-x:hidden; min-height:100vh }
a { color:inherit; text-decoration:none }
img { display:block; max-width:100% }

/* Noise */
body::after { content:''; position:fixed; inset:0; pointer-events:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); opacity:.03; z-index:9000 }

/* Scrollbar */
::-webkit-scrollbar { width:3px; height:3px }
::-webkit-scrollbar-track { background:transparent }
::-webkit-scrollbar-thumb { background:rgba(12,11,30,.3); border-radius:2px }

/* Progress bar */
#spbar { position:fixed; top:0; left:0; height:2px; width:0; background:linear-gradient(90deg,#0057ff,#ff2d78,#c8ff00); z-index:99999; pointer-events:none }

/* Cursor */
#cdot { position:fixed; width:8px; height:8px; border-radius:50%; background:#fff; pointer-events:none; z-index:99990; transform:translate(-50%,-50%); transition:transform .2s,box-shadow .2s; mix-blend-mode:difference; box-shadow:0 0 0 1px rgba(255,255,255,.2) }
#cring { position:fixed; width:44px; height:44px; border:1.5px solid rgba(255,255,255,.85); border-radius:50%; pointer-events:none; z-index:99989; transform:translate(-50%,-50%); mix-blend-mode:difference; transition:opacity .2s,transform .2s,border-color .2s }
body.ch #cdot { transform:translate(-50%,-50%) scale(2.2); box-shadow:0 0 0 6px rgba(255,77,43,.18) }
body.ch #cring { opacity:.4; transform:translate(-50%,-50%) scale(1.2) }

/* Mesh canvas */
#mesh-canvas { position:fixed; inset:0; z-index:-2; pointer-events:none; opacity:1 }

/* ── NAVBAR (match offers inner page) ── */
#navbar {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

#navbar.stuck {
  padding: 14px 48px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 11, 30, 0.08);
}

#navbar .np {
  background: transparent;
  border: 1px solid rgba(12, 11, 30, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
}

#navbar .np.act {
  background: var(--ink);
  color: #fff;
}

#navbar .nav-cta {
  background: linear-gradient(120deg, var(--ink), #201f3d);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  transition: all 0.3s var(--eoe);
  /* cursor: none; */
}

#navbar .nav-cta:hover {
  background: linear-gradient(120deg, #ff4d2b, #ff2d78);
  transform: translateY(-1px);
}

/* ── HERO ── */
.catalog-hero {
  position:relative;
  padding:140px 48px 60px;
  text-align:center;
  overflow:hidden;
}

.catalog-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(0,87,255,.12), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255,45,120,.1), transparent),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200,255,0,.06), transparent);
  pointer-events:none;
}

.catalog-hero__inner { position:relative; z-index:2; max-width:600px; margin:0 auto }

/* ── Exclusive Offers ── */
.exclusive-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto 36px;
  padding: 0 40px;
  text-align: start;
}

.exclusive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.exclusive-kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink55);
  margin-bottom: 8px;
}

.exclusive-title {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0;
}

.exclusive-sub {
  margin: 0;
  color: var(--ink55);
  font-size: 14px;
  max-width: 360px;
}

.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.exclusive-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform .45s var(--eoe), box-shadow .45s var(--eoe);
  cursor: auto;
}

.exclusive-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-2);
}

.exclusive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 32 / 27;
  transition: transform .6s var(--eoe);
}

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

.exclusive-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 30, 0) 35%, rgba(12, 11, 30, 0.58));
  pointer-events: none;
  z-index: 1;
}

.exclusive-media {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.exclusive-media-label {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 11, 30, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(12, 11, 30, 0.3);
}

.exclusive-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, #25d366, #12b981);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(18, 185, 129, 0.38);
  transition: transform .35s var(--eoe), box-shadow .35s var(--eoe);
}

.exclusive-cta svg {
  width: 16px;
  height: 16px;
}

.exclusive-card:hover .exclusive-cta {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 185, 129, 0.45);
}

html[dir='rtl'] .exclusive-kicker {
  letter-spacing: 0;
  text-transform: none;
}

html[dir='rtl'] .exclusive-cta {
  right: auto;
  left: 16px;
}

html[dir='rtl'] .exclusive-media-label {
  left: auto;
  right: 16px;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Exclusive Modal ── */
.exclusive-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 1205;
}

.exclusive-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.exclusive-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 6, 24, 0.6);
  backdrop-filter: blur(6px);
}

.exclusive-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 92vw);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 11, 30, 0.35);
  transform: translateY(12px) scale(0.98);
  transition: transform .28s ease;
}

.exclusive-modal.is-open .exclusive-modal__dialog {
  transform: translateY(0) scale(1);
}

.exclusive-modal__media img {
  width: 100%;
  height: auto;
  display: block;
}

.exclusive-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(12, 11, 30, 0.7);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.exclusive-modal__close:hover {
  transform: scale(1.05);
  background: rgba(12, 11, 30, 0.85);
}

html[dir='rtl'] .exclusive-modal__close {
  right: auto;
  left: 16px;
}

.exclusive-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(12, 11, 30, 0.08);
}

.exclusive-modal__footer h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.exclusive-modal__hint {
  margin: 4px 0 0;
  color: var(--ink55);
  font-size: 13px;
}

.exclusive-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #25d366, #12b981);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(18, 185, 129, 0.38);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.exclusive-modal__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(18, 185, 129, 0.5);
}

body.exclusive-modal-open {
  overflow: hidden;
}

.catalog-kicker {
  font-family:'Geist Mono',monospace;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--ink55);
  margin-bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.catalog-kicker::before,
.catalog-kicker::after {
  content:''; width:28px; height:1px;
  background:linear-gradient(90deg,#0057ff,#ff2d78);
}

.catalog-title {
  font-size:clamp(36px,5vw,64px);
  font-weight:900;
  letter-spacing:-2px;
  line-height:1.05;
  margin-bottom:14px;
}
.catalog-title span {
  font-family:'Instrument Serif',serif;
  font-style:italic;
  font-weight:400;
  background:linear-gradient(130deg,#0057ff,#ff2d78);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.catalog-sub {
  font-size:16px;
  line-height:1.7;
  color:var(--ink70);
  max-width:440px;
  margin:0 auto;
}

/* ── GRID ── */
.catalog-grid-wrap { padding:30px 0 100px }

.catalog-container {
  max-width:1320px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
  gap:24px;
}

/* ── TILE / ICON CARD ── */
.catalog-tile {
  display:block;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.9);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 4px 16px rgba(12,11,30,.06), 0 24px 64px rgba(12,11,30,.08);
  transition:transform .45s var(--eoe), box-shadow .45s var(--eoe);

  position:relative;
}

.catalog-tile:hover {
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 12px 40px rgba(12,11,30,.14), 0 50px 100px rgba(12,11,30,.18);
}

/* Cover area */
.tile-cover {
  position:relative;
  aspect-ratio:1 / 0.85;
  overflow:hidden;
  background:linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, #f7f6ff), color-mix(in srgb, var(--accent) 5%, #fff));
}

.tile-cover img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s var(--eoe), opacity .4s;
  opacity:.85;
}

.catalog-tile:hover .tile-cover img {
  transform:scale(1.08);
  opacity:1;
}

.tile-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(12,11,30,.02) 30%, rgba(12,11,30,.45));
  pointer-events:none;
  transition:opacity .4s;
}

/* Category icon centered */
.tile-icon-wrap {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:3;
  width:64px;
  height:64px;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 28px rgba(12,11,30,.14);
  transition:transform .4s var(--esp), box-shadow .4s;
}

.catalog-tile:hover .tile-icon-wrap {
  transform:translate(-50%,-50%) scale(1.1);
  box-shadow:0 12px 36px rgba(12,11,30,.2);
}

.tile-icon {
  width:28px;
  height:28px;
  color:var(--accent);
}
.tile-icon svg {
  width:100%;
  height:100%;
}

/* Badge */
.tile-badge {
  position:absolute;
  top:12px;
  left:12px;
  z-index:4;
  background:rgba(12,11,30,.78);
  color:#fff;
  font-size:9px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:999px;
  backdrop-filter:blur(6px);
}

/* Price strip at bottom of cover */
.tile-price-strip {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  z-index:4;
  padding:10px 16px;
  display:flex;
  align-items:baseline;
  gap:8px;
}

.tile-price {
  font-size:16px;
  font-weight:900;
  color:#fff;
  letter-spacing:-.3px;
  text-shadow:0 2px 8px rgba(0,0,0,.3);
}

.tile-price--custom {
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
}

.tile-price-old {
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,.6);
  text-decoration:line-through;
}

/* Body */
.tile-body {
  padding:18px 20px 20px;
  display:grid;
  gap:8px;
}

.tile-cat {
  font-family:'Geist Mono',monospace;
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ink55);
  display:flex;
  align-items:center;
  gap:6px;
}

.tile-cat-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  flex-shrink:0;
}

.tile-name {
  font-size:17px;
  font-weight:800;
  letter-spacing:-.4px;
  line-height:1.25;
}

.tile-desc {
  font-size:12px;
  line-height:1.55;
  color:var(--ink55);
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp: 2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.tile-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:6px;
  padding-top:10px;
  border-top:1px solid var(--ink10);
}

.tile-cta {
  font-size:12px;
  font-weight:700;
  color:var(--accent);
  letter-spacing:-.2px;
  transition:color .2s;
}

.tile-footer svg {
  color:var(--accent);
  transition:transform .3s var(--esp);
}

.catalog-tile:hover .tile-footer svg {
  transform:translateX(4px);
}

/* Empty state */
.catalog-empty {
  grid-column:1 / -1;
  text-align:center;
  padding:80px 24px;
}
.catalog-empty h3 {
  font-size:24px;
  font-weight:800;
  margin-bottom:8px;
}
.catalog-empty p {
  font-size:14px;
  color:var(--ink55);
}

/* ═══════════════════════════════════════════════
   ANIMATED BADGE VARIANTS — SPECIAL TILE STYLES
   ═══════════════════════════════════════════════ */

/* ── Shared: animated border glow ── */
.tile-border-glow {
  position:absolute;
  inset:-2px;
  border-radius:calc(var(--radius-xl) + 2px);
  z-index:0;
  pointer-events:none;
  opacity:0;
  transition:opacity .4s;
}

/* ── Sparkle particles layer ── */
.tile-sparkles {
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  overflow:hidden;
}
.tile-sparkles span {
  position:absolute;
  width:4px; height:4px;
  border-radius:50%;
  background:#fff;
  opacity:0;
}

/* ══════════════════════════════════
   1) FIRE — Hot Deal / Flash Sale / Discount
   ══════════════════════════════════ */
.tile--fire {
  --fire-1: #ff4d2b;
  --fire-2: #ff8c00;
  --fire-3: #ffcc00;
}

/* Pulsing outer glow */
.tile--fire .tile-border-glow {
  opacity:1;
  background:conic-gradient(from var(--fire-angle, 0deg), var(--fire-1), var(--fire-2), var(--fire-3), var(--fire-1));
  animation:fireRotate 2.5s linear infinite;
  filter:blur(4px);
}
.tile--fire::before {
  content:'';
  position:absolute;
  inset:1px;
  border-radius:var(--radius-xl);
  background:var(--bg);
  z-index:0;
}

@keyframes fireRotate {
  to { --fire-angle:360deg }
}
@property --fire-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Badge shake + flame icon */
.tile--fire .tile-badge {
  background:linear-gradient(135deg, #ff4d2b, #ff8c00);
  animation:badgeShake 2.8s ease-in-out infinite, badgePulse 1.6s ease-in-out infinite;
  box-shadow:0 0 16px rgba(255,77,43,.4);
}

.badge-flame {
  display:inline-block;
  vertical-align:middle;
  margin-right:3px;
  animation:flameDance .5s ease-in-out infinite alternate;
}

@keyframes badgeShake {
  0%,80%,100% { transform:translateX(0) }
  85% { transform:translateX(-3px) rotate(-2deg) }
  90% { transform:translateX(3px) rotate(2deg) }
  95% { transform:translateX(-2px) rotate(-1deg) }
}

@keyframes badgePulse {
  0%,100% { box-shadow:0 0 12px rgba(255,77,43,.3) }
  50% { box-shadow:0 0 24px rgba(255,140,0,.6) }
}

@keyframes flameDance {
  from { transform:scaleY(1) translateY(0) }
  to { transform:scaleY(1.15) translateY(-1px) }
}

/* Cover gets warm tint */
.tile--fire .tile-cover::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,77,43,.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(255,140,0,.12), transparent 60%);
  z-index:2;
  pointer-events:none;
  animation:fireBreath 2s ease-in-out infinite;
}

@keyframes fireBreath {
  0%,100% { opacity:.7 }
  50% { opacity:1 }
}

/* Price gets glow */
.tile--fire .tile-price {
  color:#fff;
  text-shadow:0 0 8px rgba(255,77,43,.6), 0 2px 12px rgba(255,140,0,.4);
  animation:priceFlicker 3s ease-in-out infinite;
}

@keyframes priceFlicker {
  0%,100% { text-shadow:0 0 8px rgba(255,77,43,.6), 0 2px 12px rgba(255,140,0,.4) }
  50% { text-shadow:0 0 16px rgba(255,77,43,.9), 0 2px 24px rgba(255,140,0,.7), 0 0 40px rgba(255,204,0,.3) }
}

/* Urgent tile body border */
.tile--fire .tile-body { border-top:2px solid rgba(255,77,43,.15) }
.tile--fire .tile-cta { color:var(--fire-1) }
.tile--fire .tile-footer svg { color:var(--fire-1) }

/* Icon bg warm */
.tile--fire .tile-icon-wrap {
  background:rgba(255,77,43,.08);
  box-shadow:0 8px 28px rgba(255,77,43,.2);
}

/* ══════════════════════════════════
   2) FEATURED — Most Popular / Best Value / is_featured
   ══════════════════════════════════ */
.tile--featured {
  --gold-1: #ffcc00;
  --gold-2: #ffa500;
  --gold-3: #fff4b0;
}

/* Golden shimmer sweep */
.tile--featured .tile-cover::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  background:linear-gradient(105deg, transparent 35%, rgba(255,215,0,.2) 45%, rgba(255,255,255,.35) 50%, rgba(255,215,0,.2) 55%, transparent 65%);
  background-size:250% 100%;
  animation:shimmerSweep 3s ease-in-out infinite;
}

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

/* Elevated golden border */
.tile--featured .tile-border-glow {
  opacity:1;
  background:linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-1));
  background-size:300% 300%;
  animation:goldenShift 4s ease infinite;
  filter:blur(3px);
}
.tile--featured::before {
  content:'';
  position:absolute;
  inset:1px;
  border-radius:var(--radius-xl);
  background:var(--bg);
  z-index:0;
}

@keyframes goldenShift {
  0%,100% { background-position:0% 50% }
  50% { background-position:100% 50% }
}

/* Star badge */
.tile--featured .tile-badge {
  background:linear-gradient(135deg, #ffcc00, #ffa500);
  color:#1a0e00;
  box-shadow:0 0 14px rgba(255,204,0,.4);
  animation:starBadge 2s ease-in-out infinite;
}

@keyframes starBadge {
  0%,100% { box-shadow:0 0 14px rgba(255,204,0,.3) }
  50% { box-shadow:0 0 28px rgba(255,204,0,.6), 0 0 8px rgba(255,165,0,.4) }
}

/* Sparkle particles */
.tile--featured .tile-sparkles span {
  background:var(--gold-1);
  animation:sparkleFloat 3s ease-in-out infinite;
}
.tile--featured .tile-sparkles span:nth-child(1) { left:15%; top:30%; animation-delay:0s; animation-duration:2.8s }
.tile--featured .tile-sparkles span:nth-child(2) { left:75%; top:20%; animation-delay:.5s; animation-duration:3.2s }
.tile--featured .tile-sparkles span:nth-child(3) { left:45%; top:60%; animation-delay:1s; animation-duration:2.5s }
.tile--featured .tile-sparkles span:nth-child(4) { left:85%; top:55%; animation-delay:1.5s; animation-duration:3.5s }
.tile--featured .tile-sparkles span:nth-child(5) { left:25%; top:75%; animation-delay:2s; animation-duration:2.9s }
.tile--featured .tile-sparkles span:nth-child(6) { left:60%; top:40%; animation-delay:.8s; animation-duration:3.1s }

@keyframes sparkleFloat {
  0%,100% { opacity:0; transform:scale(0) translateY(0) }
  20% { opacity:1; transform:scale(1.2) translateY(-4px) }
  40% { opacity:.8; transform:scale(.8) translateY(-8px) }
  60% { opacity:1; transform:scale(1) translateY(-12px) }
  80% { opacity:.4; transform:scale(.6) translateY(-18px) }
}

/* Golden icon */
.tile--featured .tile-icon-wrap {
  background:linear-gradient(135deg, rgba(255,204,0,.12), rgba(255,165,0,.08));
  box-shadow:0 8px 28px rgba(255,204,0,.2);
}
.tile--featured .tile-icon { color:#ffa500 }

/* CTA gold */
.tile--featured .tile-cta { color:var(--gold-2) }
.tile--featured .tile-footer svg { color:var(--gold-2) }

/* ══════════════════════════════════
   3) LIMITED — Limited / Exclusive
   ══════════════════════════════════ */
.tile--limited {
  --lim-1: #b388ff;
  --lim-2: #7c4dff;
  --lim-3: #e0b0ff;
}

/* Rotating conic gradient border */
.tile--limited .tile-border-glow {
  opacity:1;
  background:conic-gradient(from var(--lim-angle, 0deg), var(--lim-1), var(--lim-2), var(--lim-3), transparent, var(--lim-1));
  animation:limRotate 3s linear infinite;
  filter:blur(3px);
}
.tile--limited::before {
  content:'';
  position:absolute;
  inset:1px;
  border-radius:var(--radius-xl);
  background:var(--bg);
  z-index:0;
}

@property --lim-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes limRotate {
  to { --lim-angle:360deg }
}

/* Badge for limited */
.tile--limited .tile-badge {
  background:linear-gradient(135deg, #b388ff, #7c4dff);
  animation:limPulse 2s ease-in-out infinite;
  letter-spacing:.15em;
}

@keyframes limPulse {
  0%,100% { box-shadow:0 0 10px rgba(179,136,255,.3) }
  50% { box-shadow:0 0 22px rgba(124,77,255,.5), 0 0 6px rgba(224,176,255,.3) }
}

/* Scarcity line animation on cover */
.tile--limited .tile-cover::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  z-index:6;
  background:linear-gradient(90deg, var(--lim-2), var(--lim-3), var(--lim-2));
  background-size:200% 100%;
  animation:scarLine 1.5s linear infinite;
}

@keyframes scarLine {
  0% { background-position:200% 0 }
  100% { background-position:-200% 0 }
}

/* Purple icon */
.tile--limited .tile-icon-wrap {
  background:rgba(179,136,255,.1);
  box-shadow:0 8px 28px rgba(124,77,255,.18);
}
.tile--limited .tile-icon { color:#7c4dff }
.tile--limited .tile-cta { color:var(--lim-2) }
.tile--limited .tile-footer svg { color:var(--lim-2) }

/* ══════════════════════════════════
   4) FRESH — New / Trending
   ══════════════════════════════════ */
.tile--fresh {
  --neon-1: #00e5b0;
  --neon-2: #00d5e8;
}

/* Neon glow ring */
.tile--fresh .tile-border-glow {
  opacity:1;
  border-radius:calc(var(--radius-xl) + 2px);
  box-shadow:0 0 12px rgba(0,229,176,.25), inset 0 0 12px rgba(0,229,176,.08);
  border:2px solid rgba(0,229,176,.4);
  background:transparent;
  filter:none;
  animation:neonBreathe 2s ease-in-out infinite;
}

@keyframes neonBreathe {
  0%,100% { box-shadow:0 0 10px rgba(0,229,176,.2), inset 0 0 10px rgba(0,229,176,.05); border-color:rgba(0,229,176,.3) }
  50% { box-shadow:0 0 22px rgba(0,229,176,.45), inset 0 0 22px rgba(0,229,176,.12); border-color:rgba(0,229,176,.6) }
}

/* Badge bouncy */
.tile--fresh .tile-badge {
  background:linear-gradient(135deg, #00e5b0, #00d5e8);
  color:#0c0b1e;
  animation:freshBounce 2.5s ease-in-out infinite;
}

@keyframes freshBounce {
  0%,100% { transform:translateY(0) scale(1) }
  15% { transform:translateY(-4px) scale(1.08) }
  30% { transform:translateY(0) scale(1) }
}

/* Sweep highlight on cover */
.tile--fresh .tile-cover::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  background:linear-gradient(115deg, transparent 40%, rgba(0,229,176,.12) 47%, rgba(0,213,232,.18) 53%, transparent 60%);
  background-size:300% 100%;
  animation:freshSweep 4s ease-in-out infinite;
}

@keyframes freshSweep {
  0% { background-position:200% 0 }
  100% { background-position:-100% 0 }
}

/* Green icon */
.tile--fresh .tile-icon-wrap {
  background:rgba(0,229,176,.08);
  box-shadow:0 8px 28px rgba(0,229,176,.16);
}
.tile--fresh .tile-icon { color:#00e5b0 }
.tile--fresh .tile-cta { color:var(--neon-1) }
.tile--fresh .tile-footer svg { color:var(--neon-1) }

/* ══════════════════════════════════
   HOVER AMPLIFIERS — shared across all variants
   ══════════════════════════════════ */
.tile--fire:hover .tile-border-glow { filter:blur(6px) brightness(1.3) }
.tile--featured:hover .tile-border-glow { filter:blur(5px) brightness(1.2) }
.tile--limited:hover .tile-border-glow { filter:blur(5px) brightness(1.3) }
.tile--fresh:hover .tile-border-glow { animation-duration:1s }

/* 3D tilt style depth */
.catalog-tile { transform-style:preserve-3d; perspective:600px }
.catalog-tile .tile-body { transform:translateZ(20px); position:relative; z-index:2 }
.catalog-tile .tile-cover { position:relative; z-index:1 }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  #navbar {
    padding: 16px 24px;
  }

  #navbar.stuck {
    padding: 12px 24px;
  }

  .catalog-container { grid-template-columns:repeat(auto-fill, minmax(200px, 1fr)); gap:18px; padding:0 24px }
  .catalog-hero { padding:120px 24px 40px }
  .exclusive-wrap { padding: 0 24px; margin-bottom: 28px }
  .exclusive-head { flex-direction: column; align-items: flex-start }
  .exclusive-sub { max-width: none }
  .tile-icon-wrap { width:52px; height:52px; border-radius:16px }
  .tile-icon { width:24px; height:24px }
}

@media (max-width:560px) {
  .catalog-container { grid-template-columns:repeat(2, 1fr); gap:14px; padding:0 16px }
  .catalog-hero { padding:100px 16px 32px }
  .exclusive-wrap { padding: 0 16px; margin-bottom: 24px }
  .exclusive-grid { grid-template-columns: 1fr }
  .exclusive-cta { left: 12px; right: 12px; justify-content: center }
  .exclusive-media-label { font-size: 11px; padding: 6px 10px }
  .exclusive-modal__footer { flex-direction: column; align-items: stretch }
  .exclusive-modal__cta { justify-content: center; width: 100% }
  .exclusive-modal__close { top: 12px; right: 12px }
  .tile-body { padding:14px 14px 16px }
  .tile-name { font-size:14px }
  .tile-desc { display:none }
  .tile-icon-wrap { width:44px; height:44px; border-radius:14px }
  .tile-icon { width:20px; height:20px }
}

/* Touch devices */
@media (hover:none), (pointer:coarse), (max-width:900px) {
  body, a, button, .catalog-tile { cursor:auto !important }
  #cdot, #cring { display:none !important }
}
