/* =============================================
   MEONTAYLINKS STORE — PLAYFUL & ELECTRIC THEME
   Bright yellow, orange, hot pink · Animated wallpaper
   ============================================= */

/* ── ANIMATED WALLPAPER (full-page canvas) ── */
.store-wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(145deg, #f5e100 0%, #ff8c00 40%, #ff4d6d 75%, #c9184a 100%);
  background-size: 400% 400%;
  animation: wallpaperShift 18s ease infinite;
}

@keyframes wallpaperShift {
  0%   { background-position: 0% 50%; }
  35%  { background-position: 100% 50%; }
  65%  { background-position: 80% 20%; }
  100% { background-position: 0% 50%; }
}

/* Wallpaper overlay — softens the gradient so text is readable */
.store-wallpaper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 225, 0, 0.15) 0%,
    rgba(255, 140, 0, 0.08) 50%,
    rgba(255, 77, 109, 0.12) 100%
  );
  pointer-events: none;
}

/* All store content floats above the wallpaper */
.store-wallpaper + * {
  position: relative;
  z-index: 1;
}

/* Body on store pages: transparent so wallpaper shows through */
body.store-page {
  background: transparent;
  color: #1a0530;
}

/* ── HOT ITEMS BANNER ── */
.hot-banner {
  background: linear-gradient(90deg, #1a0530, #2d0a5e);
  border-bottom: 1px solid rgba(245, 225, 0, 0.3);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 30;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hot-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hot-banner-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5e100;
  padding: 5px 14px;
  background: rgba(245, 225, 0, 0.15);
  border: 1px solid rgba(245, 225, 0, 0.4);
  border-radius: 99px;
  white-space: nowrap;
}

.hot-banner-label .emoji {
  font-size: 16px;
  animation: hotSpin 2s ease infinite;
}

@keyframes hotSpin {
  0%, 100% { transform: rotate(-8deg) scale(1.1); }
  50% { transform: rotate(8deg) scale(1.1); }
}

.hot-banner-items {
  display: flex;
  gap: 32px;
  animation: bannerScroll 30s linear infinite;
  white-space: nowrap;
}

.hot-banner-items:hover {
  animation-play-state: paused;
}

@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hot-banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}

.hot-banner-item:hover {
  color: #f5e100;
}

.hot-banner-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d6d;
  flex-shrink: 0;
}

.hot-banner-item .price {
  color: #34d399;
  font-size: 13px;
  font-weight: 700;
}

/* ── NAV (store) ── */
.store-nav {
  position: sticky;
  top: 0;
  background: rgba(26, 5, 48, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 225, 0, 0.15);
  padding: 16px 48px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.store-nav .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: #fff;
}

.store-nav .logo span {
  background: linear-gradient(135deg, #f5e100, #ff8c00, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-nav-links { display: flex; align-items: center; gap: 28px; }

.store-nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.store-nav-link:hover { color: #f5e100; }

.store-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f5e100, #ff8c00);
  color: #1a0530;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245, 225, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}
.store-nav-cta:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 225, 0, 0.5);
  color: #1a0530;
}

@media (max-width: 768px) {
  .store-nav { padding: 14px 20px; }
  .store-nav-links .store-nav-link:not(:last-child) { display: none; }
}

/* ── CONFETTI PARTICLES ── */
#confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── PAGE HEADER ── */
.store-page-header {
  padding: 56px 48px 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.store-section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c9184a;
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(201, 24, 74, 0.1);
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(201, 24, 74, 0.25);
}

.store-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #1a0530;
  margin-bottom: 10px;
}

.store-page-title .accent {
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-page-sub {
  font-size: 18px;
  color: #5a1040;
  max-width: 520px;
}

@media (max-width: 768px) {
  .store-page-header { padding: 36px 20px 28px; }
}

/* ── TOOLBAR ── */
.store-toolbar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.store-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.store-filter-pill {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(201, 24, 74, 0.2);
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #5a1040;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.store-filter-pill:hover, .store-filter-pill.active {
  background: rgba(245, 225, 0, 0.85);
  border-color: #f5e100;
  color: #1a0530;
  transform: scale(1.05);
}

.store-sort-select {
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(201, 24, 74, 0.2);
  border-radius: 10px;
  color: #5a1040;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}
.store-sort-select:hover { border-color: #ff8c00; }
.store-sort-select option { background: #fff; color: #1a0530; }

@media (max-width: 768px) {
  .store-toolbar { padding: 0 20px 28px; }
}

/* ── PRODUCT GRID ── */
.store-catalog-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── PRODUCT CARD ── */
.store-product-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: #1a0530;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(201, 24, 74, 0.12);
  border: 1.5px solid rgba(255, 140, 0, 0.15);
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s,
    border-color 0.25s;
}
.store-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(255, 77, 109, 0.2);
  border-color: rgba(245, 225, 0, 0.5);
}

.store-product-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: #ffe4a0;
}

.store-product-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #ffe4a0, #ffd580);
  color: rgba(201, 24, 74, 0.3);
}

.store-product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.store-product-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ff8c00;
}

.store-product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a0530;
}

.store-product-desc {
  font-size: 14px;
  color: #5a1040;
  flex: 1;
  line-height: 1.5;
}

.store-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1.5px solid rgba(201, 24, 74, 0.1);
}
.store-product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #ff4d6d;
}

.store-product-btn {
  padding: 8px 18px;
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  border-radius: 99px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}
.store-product-card:hover .store-product-btn {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(255, 77, 109, 0.45);
}

/* ── HOT BADGE ── */
.store-hot-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a0530;
  background: #f5e100;
  box-shadow: 0 4px 12px rgba(245, 225, 0, 0.5);
  animation: hotPulse 1.5s ease-in-out infinite;
  z-index: 5;
}

.store-hot-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 99px;
  background: linear-gradient(135deg, #f5e100, #ff8c00, #ff4d6d, #f5e100);
  background-size: 300% 300%;
  animation: badgeGlow 2s ease infinite;
  z-index: -1;
  filter: blur(4px);
}

@keyframes hotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badgeGlow {
  0%, 100% { background-position: 0% 50%; opacity: 0.6; }
  50% { background-position: 100% 50%; opacity: 0.9; }
}

/* Product card with badge — card needs relative + overflow:hidden */
.store-product-card-wrap {
  position: relative;
}

.store-product-card-wrap .store-product-card {
  width: 100%;
}

/* ── STATS BAR ── */
.store-stats-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1.5px solid rgba(255, 140, 0, 0.2);
  border-bottom: 1.5px solid rgba(255, 140, 0, 0.2);
  padding: 24px 0;
}

.store-stats-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.store-stat-item { text-align: center; }
.store-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.store-stat-label {
  font-size: 12px;
  color: #5a1040;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── CATEGORY CARDS ── */
.store-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.store-cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(245, 225, 0, 0.2);
  background: rgba(26, 5, 48, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  min-height: 300px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}
.store-cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.store-cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s;
}
.store-cat-card:hover .store-cat-card-img {
  opacity: 0.7;
  transform: scale(1.05);
}

.store-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 5, 48, 0.5) 0%, rgba(26, 5, 48, 0.95) 100%);
}

.store-cat-card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}

.store-cat-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 225, 0, 0.15);
  border: 1.5px solid rgba(245, 225, 0, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.store-cat-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.store-cat-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.5;
}

.store-cat-card-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #f5e100;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.store-cat-card-arrow {
  font-size: 18px;
  color: #f5e100;
  transition: transform 0.25s;
}
.store-cat-card:hover .store-cat-card-arrow { transform: translateX(6px); }

@media (max-width: 768px) {
  .store-cat-grid { grid-template-columns: 1fr; }
  .store-cat-card { min-height: 240px; }
}

/* ── SECTION HEADERS ── */
.store-section {
  padding: 80px 0;
}
.store-section--alt {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.store-section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c9184a;
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(201, 24, 74, 0.08);
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(201, 24, 74, 0.2);
}

.store-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #1a0530;
}

.store-section-sub {
  color: #5a1040;
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.store-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.store-view-all-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #ff8c00;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.store-view-all-link:hover { gap: 10px; color: #ff4d6d; }

/* ── HERO (store page) ── */
.store-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}

.store-hero-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, rgba(255, 77, 109, 0.1) 40%, transparent 70%);
  pointer-events: none;
}

.store-hero-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ff8c00;
  margin-bottom: 22px;
  display: inline-block;
  animation: bouncyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.store-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
  color: #1a0530;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.store-hero h1 .accent {
  background: linear-gradient(135deg, #ff8c00, #ff4d6d, #c9184a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-hero-sub {
  font-size: 18px;
  color: #5a1040;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.store-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(255, 77, 109, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  animation: bouncyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.store-hero-cta:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 77, 109, 0.55);
  color: #fff;
}

.store-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: rgba(255, 255, 255, 0.85);
  color: #1a0530;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  border-radius: 99px;
  border: 2px solid rgba(245, 225, 0, 0.4);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
  animation: bouncyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.store-hero-cta-secondary:hover {
  transform: scale(1.08) translateY(-2px);
  background: rgba(245, 225, 0, 0.9);
  color: #1a0530;
}

.store-hero-visual {
  position: relative;
  margin: 56px auto 0;
  max-width: 900px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(245, 225, 0, 0.2), 0 32px 80px rgba(0, 0, 0, 0.25);
  animation: bouncyIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.store-hero-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── WHY US ── */
.store-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.store-why-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(245, 225, 0, 0.25);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(201, 24, 74, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, border-color 0.25s;
}
.store-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 77, 109, 0.15);
  border-color: rgba(245, 225, 0, 0.5);
}

.store-why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 225, 0, 0.2), rgba(255, 140, 0, 0.15));
  border: 1.5px solid rgba(245, 225, 0, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.store-why-card:nth-child(2) .store-why-icon { color: #ff8c00; }
.store-why-card:nth-child(3) .store-why-icon { color: #ff4d6d; }

.store-why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #1a0530;
  margin-bottom: 10px;
}

.store-why-card p { font-size: 14px; color: #5a1040; line-height: 1.65; }

@media (max-width: 768px) {
  .store-why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── NEWSLETTER ── */
.store-newsletter-band {
  background: linear-gradient(135deg, rgba(245, 225, 0, 0.2), rgba(255, 140, 0, 0.15));
  border: 1.5px solid rgba(245, 225, 0, 0.3);
  border-radius: 28px;
  padding: 60px 52px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.12);
}

.store-newsletter-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #1a0530;
  margin-bottom: 10px;
}

.store-newsletter-band p { color: #5a1040; margin-bottom: 32px; font-size: 16px; }

.store-newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.store-newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  color: #1a0530;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.store-newsletter-form input:focus {
  border-color: #ff8c00;
  background: rgba(245, 225, 0, 0.15);
}
.store-newsletter-form input::placeholder { color: #5a1040; }

.store-newsletter-form button {
  padding: 13px 28px;
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.3);
  white-space: nowrap;
}
.store-newsletter-form button:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 77, 109, 0.45);
}

@media (max-width: 600px) {
  .store-newsletter-band { padding: 36px 24px; }
  .store-newsletter-form { flex-direction: column; }
}

/* ── FOOTER ── */
.store-footer {
  background: rgba(26, 5, 48, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 225, 0, 0.15);
  padding: 44px 0;
}

.store-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.store-footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}

.store-footer-links { display: flex; gap: 28px; }
.store-footer-links a { font-size: 14px; color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: color 0.2s; }
.store-footer-links a:hover { color: #f5e100; }

.store-footer-text { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* ── EMPTY STATE ── */
.store-empty-state {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}
.store-empty-state h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #1a0530;
  margin-bottom: 12px;
}
.store-empty-state p { color: #5a1040; margin-bottom: 24px; }
.store-empty-state a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.3);
}

/* ── BOUNCY ANIMATIONS ── */
@keyframes bouncyIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

/* Hero elements stagger in */
.store-hero-tag { animation-delay: 0s; }
.store-hero h1  { animation: bouncyIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.1s both; }
.store-hero-sub { animation: bouncyIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.15s both; }
.store-hero-actions { animation: bouncyIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.2s both; }
.store-hero-visual { animation: bouncyIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.3s both; }

/* Floating elements in hero */
.hero-float-a { animation: floatUp 4s ease-in-out infinite; }
.hero-float-b { animation: floatUp 5s ease-in-out infinite 1s; }
.hero-float-c { animation: floatUp 3.5s ease-in-out infinite 0.5s; }

/* ── PRODUCT DETAIL PAGE (standalone styles) ── */
.store-product-page {
  min-height: 100vh;
}

.store-product-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .store-product-layout { grid-template-columns: 1fr; gap: 32px; padding: 24px 20px 60px; }
}

.store-product-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(245, 225, 0, 0.3);
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.store-product-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.store-product-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #ffe4a0, #ffd580);
  color: rgba(201, 24, 74, 0.3);
}

.store-product-info { position: sticky; top: 100px; }

.store-product-cat-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8c00;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.store-product-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #1a0530;
  margin-bottom: 12px;
}

.store-product-short-desc {
  font-size: 17px;
  color: #5a1040;
  line-height: 1.6;
  margin-bottom: 28px;
}

.store-price-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(245, 225, 0, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(245, 225, 0, 0.15);
}

.store-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5e100, #ff8c00, #ff4d6d);
}

.store-price-display { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }

.store-price-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: #ff4d6d;
  letter-spacing: -2px;
  line-height: 1;
}

.store-price-label { font-size: 15px; color: #5a1040; font-weight: 500; }
.store-price-note { font-size: 13px; color: #5a1040; margin-top: 4px; }

.store-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff8c00, #ff4d6d);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(255, 77, 109, 0.35);
  margin-bottom: 12px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, opacity 0.2s;
}
.store-buy-btn:hover:not(:disabled) {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 77, 109, 0.5);
  opacity: 0.92;
}
.store-buy-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.store-guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #5a1040;
  margin-bottom: 24px;
}

.store-product-divider {
  height: 1.5px;
  background: rgba(201, 24, 74, 0.1);
  margin: 24px 0;
}

.store-features-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.store-features-list li { display: flex; align-items: flex-start; gap: 14px; }

.store-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(245, 225, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.store-feature-text { font-size: 14px; color: #5a1040; line-height: 1.5; }
.store-feature-text strong { color: #1a0530; }

.store-product-description {
  padding: 0 40px 80px;
  max-width: 1160px;
  margin: 0 auto;
}
.store-desc-section { max-width: 680px; }
.store-desc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #1a0530;
  margin-bottom: 14px;
}
.store-desc-text { font-size: 16px; color: #5a1040; line-height: 1.8; }

.store-checkout-error {
  display: none;
  padding: 12px 16px;
  background: rgba(201, 24, 74, 0.08);
  border: 1px solid rgba(201, 24, 74, 0.2);
  border-radius: 8px;
  font-size: 14px;
  color: #c9184a;
  margin-bottom: 12px;
}
.store-checkout-error.visible { display: block; }

.store-breadcrumb-bar {
  padding: 20px 0 0;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
.store-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #5a1040; }
.store-breadcrumb a { color: #ff8c00; text-decoration: none; transition: color 0.2s; }
.store-breadcrumb a:hover { color: #ff4d6d; }

.store-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.store-stat-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(245, 225, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.store-stat-box .store-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #1a0530;
  margin-bottom: 3px;
}
.store-stat-box .store-stat-lbl { font-size: 11px; color: #5a1040; text-transform: uppercase; letter-spacing: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .store-catalog-body { padding: 0 20px 60px; }
  .store-footer-inner { padding: 0 20px; }
  .store-product-description { padding: 0 20px 60px; }
  .store-breadcrumb-bar { padding-left: 20px; padding-right: 20px; }
}

/* ── CONTAINER ── */
.store-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}