/* ========================================
   VOLT SHOP - Premium Store Page
   ======================================== */

/* ========== SHOP HERO ========== */
.shop-hero {
  position: relative;
  min-height: 28vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shop-hero-img {
  position: absolute;
  inset: 0;
  background: url('images/bg_shop.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: shopHeroDrift 20s ease-in-out infinite alternate;
}

@keyframes shopHeroDrift {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.1) translateY(-10px); }
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.6) 0%,
    rgba(10, 10, 15, 0.4) 40%,
    rgba(10, 10, 15, 0.5) 70%,
    rgba(10, 10, 15, 0.95) 100%
  );
}

.shop-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.4) 100%);
}

.shop-hero-light-rays {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 60%;
  background: radial-gradient(ellipse at top center, rgba(212, 165, 32, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 0 3rem;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 1rem 0 1.2rem;
  letter-spacing: -0.02em;
}

.shop-hero-title .title-line {
  display: block;
}

.shop-hero-title .title-accent {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px var(--primary-glow));
}

.shop-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.shop-hero-fade {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ========== HERO TO SECTION TRANSITION ========== */
.shop-transition {
  position: relative;
  height: 60px;
  margin-top: -60px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.shop-transition-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: radial-gradient(ellipse at center, rgba(212, 165, 32, 0.3) 0%, transparent 70%);
  box-shadow: 0 0 40px 10px rgba(212, 165, 32, 0.06);
}

/* Floating particles */
.shop-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shop-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: shopParticleFloat 8s infinite;
}

.shop-particle:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; animation-duration: 7s; }
.shop-particle:nth-child(2) { left: 75%; top: 50%; animation-delay: 1.5s; animation-duration: 9s; }
.shop-particle:nth-child(3) { left: 40%; top: 70%; animation-delay: 3s; animation-duration: 6s; }
.shop-particle:nth-child(4) { left: 85%; top: 25%; animation-delay: 4.5s; animation-duration: 8s; }
.shop-particle:nth-child(5) { left: 25%; top: 60%; animation-delay: 2s; animation-duration: 10s; }
.shop-particle:nth-child(6) { left: 60%; top: 40%; animation-delay: 5s; animation-duration: 7.5s; }

@keyframes shopParticleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}

/* ========== SHOP SECTION ========== */
.shop-section {
  position: relative;
  padding: 0 0 2rem;
  min-height: 60vh;
  padding-top: 0.5rem;
}

.shop-bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

/* ========== SHOP TABS ========== */
.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.shop-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.shop-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.shop-tab:hover {
  border-color: rgba(212, 165, 32, 0.3);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.shop-tab.active {
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.15), rgba(46, 204, 113, 0.1));
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow:
    0 0 20px rgba(212, 165, 32, 0.15),
    inset 0 1px 0 rgba(212, 165, 32, 0.2);
}

.shop-tab.active .shop-tab-icon {
  stroke: var(--primary-light);
}

.shop-tab-icon {
  transition: stroke var(--transition-normal);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.shop-tab span {
  position: relative;
  z-index: 1;
}

/* ========== CATEGORY SECTIONS ========== */
.shop-category {
  display: none;
  position: relative;
  z-index: 2;
  animation: categoryFadeIn 0.4s ease;
}

.shop-category.active {
  display: block;
}

@keyframes categoryFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.category-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.category-desc {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========== SHOP GRID ========== */
.shop-grid {
  display: grid;
  gap: 1rem;
}

.gems-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gem-card-large {
  grid-column: span 2;
}

.gem-card-large .gem-img {
  width: 160px;
  height: 160px;
}

.gem-card-large .gem-amount {
  font-size: 1.8rem;
}

.gem-card-large .gem-label {
  font-size: 0.8rem;
}

.gem-card-large .card-inner {
  padding: 1.25rem;
}

.gem-card-large .shop-buy-btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

.gem-card-large .btn-price {
  font-size: 1rem;
}

.ranks-grid {
  grid-template-columns: repeat(4, 1fr);
}

.packs-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ========== SHOP CARDS - BASE ========== */
.shop-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.shop-card:hover {
  transform: translateY(-6px);
}

.card-inner {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-normal), background var(--transition-normal);
}

.shop-card:hover .card-inner {
  border-color: rgba(212, 165, 32, 0.25);
  background: var(--bg-card-hover);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 165, 32, 0.1),
    transparent 40%
  );
  z-index: 1;
}

.shop-card:hover .card-glow {
  opacity: 1;
}

/* Featured Card - Animated Border */
.card-featured {
  z-index: 3;
}

.card-featured .card-inner {
  border-color: rgba(212, 165, 32, 0.3);
}

.card-border-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  z-index: 1;
  padding: 1px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    var(--primary),
    transparent 40%,
    transparent 60%,
    var(--accent)
  );
  -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;
  animation: borderRotate 4s linear infinite;
  opacity: 0.7;
}

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

@keyframes borderRotate {
  to { --border-angle: 360deg; }
}

.card-glow-featured {
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 165, 32, 0.15),
    transparent 40%
  ) !important;
}

/* Best Value Card */
.card-best-value .card-inner {
  border-color: rgba(46, 204, 113, 0.25);
}

.card-glow-value {
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(46, 204, 113, 0.12),
    transparent 40%
  ) !important;
}

.border-glow-value {
  background: linear-gradient(
    var(--border-angle, 0deg),
    var(--accent),
    transparent 40%,
    transparent 60%,
    var(--emerald)
  ) !important;
}

/* Ultimate Card */
.badge-ultimate {
  background: linear-gradient(135deg, #ff6b35, #ffd700, #ff6b35);
  background-size: 200% 100%;
  animation: badgeShimmer 3s ease infinite;
  color: #1a0a00;
  box-shadow: 0 2px 16px rgba(255, 107, 53, 0.5);
  font-weight: 800;
}

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

.gem-card-ultimate .gem-img {
  width: 200px !important;
  height: 200px !important;
}

.gem-card-ultimate .gem-amount {
  font-size: 2.2rem !important;
}

.gem-card-ultimate .gem-label {
  font-size: 0.9rem !important;
}

.gem-card-ultimate .card-inner {
  padding: 1.5rem !important;
  border-color: rgba(255, 107, 53, 0.3);
}

.gem-card-ultimate:hover .card-inner {
  border-color: rgba(255, 107, 53, 0.5);
}

.border-glow-ultimate {
  background: linear-gradient(
    var(--border-angle, 0deg),
    #ff6b35,
    transparent 35%,
    transparent 55%,
    #ffd700
  ) !important;
  opacity: 0.9;
}

.btn-ultimate {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 215, 0, 0.08));
  border-color: rgba(255, 107, 53, 0.3);
  color: #ffd700;
}

.btn-ultimate:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.22), rgba(255, 215, 0, 0.14)) !important;
  border-color: #ff6b35 !important;
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.3) !important;
}

.gem-card-ultimate .price-save {
  color: #ff6b35;
}

.gem-card-ultimate:hover .gem-img {
  filter: drop-shadow(0 8px 28px rgba(255, 107, 53, 0.5)) !important;
}

.gem-card-ultimate .gem-img {
  filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.35));
}

/* ========== BADGES ========== */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 10;
}

.badge-popular {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #1a1000;
  box-shadow: 0 2px 12px rgba(212, 165, 32, 0.4);
}

.badge-value {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a2a1a;
  box-shadow: 0 2px 12px rgba(46, 204, 113, 0.4);
}

/* ========== GEM CARDS ========== */
.gem-visual {
  text-align: center;
  padding: 0.5rem 0 0.4rem;
}

.gem-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 0.4rem;
  filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.25));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.shop-card:hover .gem-img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(46, 204, 113, 0.4));
}

.card-featured .gem-img {
  filter: drop-shadow(0 4px 16px rgba(212, 165, 32, 0.3));
}

.shop-card.card-featured:hover .gem-img {
  filter: drop-shadow(0 8px 24px rgba(212, 165, 32, 0.5));
}

.card-best-value .gem-img {
  filter: drop-shadow(0 4px 16px rgba(46, 204, 113, 0.3));
}

.shop-card.card-best-value:hover .gem-img {
  filter: drop-shadow(0 8px 24px rgba(46, 204, 113, 0.5));
}

.gem-amount {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1;
}

.gem-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* ========== PRICING ========== */
.card-pricing {
  text-align: center;
  padding-bottom: 0.15rem;
}

.price-save {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

/* ========== BUY BUTTON ========== */
.shop-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.shop-buy-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.shop-buy-btn:hover {
  border-color: rgba(212, 165, 32, 0.4);
  color: var(--text-primary);
  background: rgba(212, 165, 32, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 165, 32, 0.15);
}

.shop-buy-btn:active {
  transform: translateY(0);
}

.btn-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.btn-separator {
  width: 1px;
  height: 14px;
  background: var(--border-color);
  flex-shrink: 0;
}

.btn-featured {
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.12), rgba(212, 165, 32, 0.06));
  border-color: rgba(212, 165, 32, 0.3);
  color: var(--primary-light);
}

.btn-featured:hover {
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.2), rgba(212, 165, 32, 0.1)) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 24px rgba(212, 165, 32, 0.25) !important;
}

.btn-value {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
  border-color: rgba(46, 204, 113, 0.25);
  color: var(--accent-light);
}

.btn-value:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.18), rgba(46, 204, 113, 0.08)) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 24px rgba(46, 204, 113, 0.2) !important;
}

/* ========== RANK CARDS ========== */
.rank-header {
  text-align: center;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.6rem;
}

.rank-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.shop-card:hover .rank-icon-wrap {
  transform: scale(1.1);
}

.rank-icon-vip {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.rank-icon-vipplus {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.05));
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: #2196f3;
}

.rank-icon-mvp {
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.2), rgba(212, 165, 32, 0.05));
  border: 1px solid rgba(212, 165, 32, 0.4);
  color: var(--primary-light);
}

.shop-card:hover .rank-icon-mvp {
  box-shadow: 0 0 20px rgba(212, 165, 32, 0.3);
}

.rank-icon-mvpplus {
  background: linear-gradient(135deg, rgba(255, 50, 50, 0.15), rgba(212, 165, 32, 0.1));
  border: 1px solid rgba(255, 50, 50, 0.3);
  color: #ff5252;
}

.shop-card:hover .rank-icon-mvpplus {
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.25);
}

.rank-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.rank-vip .rank-name { color: #4caf50; }
.rank-vipplus .rank-name { color: #2196f3; }
.rank-mvp .rank-name { color: var(--primary-light); }
.rank-mvpplus .rank-name { color: #ff5252; }

.rank-tagline {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== RANK PERKS ========== */
.rank-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.5rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.perk-item svg {
  flex-shrink: 0;
}

.perk-disabled {
  opacity: 0.35;
}

.perk-disabled span {
  text-decoration: line-through;
}

/* ========== PACK CARDS ========== */
.pack-card {
  display: flex;
  flex-direction: column;
}

.pack-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-card .card-inner {
  border-radius: 0 0 16px 16px;
}

.pack-creature {
  height: 140px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-normal);
}

.shop-card:hover .pack-creature {
  transform: scale(1.08) translateY(-4px);
}

.pack-visual-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.pack-visual-glow-featured {
  background: radial-gradient(circle, rgba(212, 165, 32, 0.25) 0%, transparent 70%);
}

.pack-visual-glow-value {
  background: radial-gradient(circle, rgba(46, 204, 113, 0.25) 0%, transparent 70%);
}

.pack-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.pack-tagline {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pack-contents {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.pack-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pack-item svg {
  flex-shrink: 0;
}

.pack-pricing {
  text-align: center;
}

.pack-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pack-original-price {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: line-through;
}

/* ========== TRUST BADGES ========== */
.shop-trust {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .gems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gem-card-large {
    grid-column: span 1;
  }

  .gem-card-large .gem-img {
    width: 140px;
    height: 140px;
  }

  .gem-card-ultimate .gem-img {
    width: 160px !important;
    height: 160px !important;
  }
}

@media (max-width: 1100px) {
  .ranks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .gem-card-large .gem-img {
    width: 120px;
    height: 120px;
  }

  .gem-card-ultimate .gem-img {
    width: 140px !important;
    height: 140px !important;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    min-height: 35vh;
    padding-top: 70px;
  }

  .shop-tabs {
    gap: 0.4rem;
  }

  .shop-tab {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .gems-grid,
  .ranks-grid {
    grid-template-columns: 1fr;
  }

  .packs-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .card-badge {
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }
}

@media (max-width: 480px) {
  .shop-hero-content {
    padding: 2rem 0 1rem;
  }

  .shop-tab {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .shop-tab-icon {
    width: 16px;
    height: 16px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
