/* --- HERO --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3.5rem 2.5rem 3rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-left { padding-right: 3rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #555;
  display: inline-block;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 7rem;
  line-height: 0.92;
  color: #e8e8e8;
  letter-spacing: 3px;
  text-shadow: 
    0 4px 15px rgba(0,0,0,0.9),
    0 8px 40px rgba(0,0,0,0.7),
    0 16px 60px rgba(0,0,0,0.5),
    3px 3px 0px rgba(0,0,0,0.5),
    -1px -1px 0px rgba(255,255,255,0.03);
}

.hero-title .accent {
  color: #777;
  display: block;
  text-shadow:
    0 4px 15px rgba(0,0,0,0.9),
    0 8px 40px rgba(0,0,0,0.7),
    3px 3px 0px rgba(0,0,0,0.4);
}

.hero-right {
  border-left: 1px solid #222;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-sub {
  font-size: 1.35rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.stat-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.stat-val {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: #bbb;
  letter-spacing: 2px;
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.8),
    0 4px 20px rgba(0,0,0,0.6),
    2px 2px 0px rgba(0,0,0,0.5);
}

.tags-row {
  display: flex;
  gap: 0.6rem;
  padding: 1.8rem 2.5rem;
  border-top: 1px solid #222;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #444;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* --- BUTTONS --- */
.btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-dark {
  background: #e8e8e8;
  color: #0d0d0d;
  padding: 0.8rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.6),
    0 8px 40px rgba(0,0,0,0.4),
    0 0 16px rgba(255,255,255,0.35),
    0 0 32px rgba(255,255,255,0.15);
  transition: box-shadow 0.3s ease, transform 0.15s ease;
  animation: shopGlowPulse 3s ease-in-out infinite;
}

.btn-dark:hover {
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.6),
    0 8px 40px rgba(0,0,0,0.4),
    0 0 24px rgba(255,255,255,0.6),
    0 0 50px rgba(255,255,255,0.3),
    0 0 80px rgba(255,255,255,0.15);
  transform: translateY(-2px);
  animation-play-state: paused;
}

@keyframes shopGlowPulse {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(0,0,0,0.6),
      0 8px 40px rgba(0,0,0,0.4),
      0 0 16px rgba(255,255,255,0.35),
      0 0 32px rgba(255,255,255,0.15);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(0,0,0,0.6),
      0 8px 40px rgba(0,0,0,0.4),
      0 0 24px rgba(255,255,255,0.55),
      0 0 48px rgba(255,255,255,0.25);
  }
}

.btn-ghost {
  background: transparent;
  color: #666;
  padding: 0.8rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #333;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
/* --- NEW DROPS SECTION --- */
.drops-section {
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 2;
}

.drops-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.drops-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: #e8e8e8;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow:
    0 4px 15px rgba(0,0,0,0.9),
    3px 3px 0px rgba(0,0,0,0.5);
}

.drops-view-all {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #555;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.drops-view-all:hover { color: #ccc; }

/* --- DROPS GRID --- */
.drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* --- DROP CARD --- */
.drop-card {
  background: #111;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;

  /* POP UP ANIMATION */
  opacity: 0;
  transform: translateY(40px);
}

.drop-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.drop-card:hover {
  transform: translateY(-10px);
  border-color: #555;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px rgba(0, 0, 0, 0.5);
}

.drop-card:hover .drop-img-wrap img {
  transform: scale(1.06);
}

/* STAGGERED DELAY */
.drop-card:nth-child(1) { transition-delay: 0s; }
.drop-card:nth-child(2) { transition-delay: 0.1s; }
.drop-card:nth-child(3) { transition-delay: 0.2s; }
.drop-card:nth-child(4) { transition-delay: 0.3s; }

.drop-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}

.drop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.drop-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: #0d0d0d;
  background: #e8e8e8;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
}

.drop-info {
  padding: 1rem 1rem 0.5rem;
  flex: 1;
}

.drop-tag {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.drop-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: #e0e0e0;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.drop-spec {
  font-size: 0.75rem;
  color: #444;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.drop-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  color: #bbb;
  letter-spacing: 2px;
}

/* --- DROP BUTTONS --- */
.drop-btns {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
}

.drop-btn-cart {
  flex: 1;
  background: transparent;
  color: #888;
  padding: 0.55rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #333;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-btn-cart:hover {
  background: #333;
  color: #e0e0e0;
}

.drop-btn-buy {
  flex: 1;
  background: #e8e8e8;
  color: #0d0d0d;
  padding: 0.55rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-btn-buy:hover {
  background: #ccc;
  border-color: #ccc;
}
.drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.drop-card {
    background: #0a0a0a;
    padding: 1rem;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.drop-card:hover {
    transform: translateY(-10px);
    border-color: #555;
}

.drop-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.drop-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.drop-card .price {
    font-family: 'Barlow Condensed', sans-serif;
    color: #888;
    margin-bottom: 1rem;
}

.btn-ghost-small {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
}
/* ====================================================
   MOBILE RESPONSIVE — HERO & HOME & SHOP PAGE
   ==================================================== */
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 1.5rem;
    align-items: start;
    gap: 2rem;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 0.95;
  }

  .hero-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    gap: 1.5rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .stat-row {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stat-val {
    font-size: 1.6rem;
  }

  .btn-row {
    flex-wrap: wrap;
  }

  .btn-dark,
  .btn-ghost {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .tags-row {
    padding: 1.2rem 1.5rem;
    gap: 0.5rem;
  }

  .tag {
    font-size: 0.6rem;
    padding: 0.35rem 0.8rem;
  }

  .drops-section {
    padding: 2rem 1.5rem;
  }

  .drops-title {
    font-size: 2.4rem;
  }

  .drops-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* --- SHOP GRID & CARD RESPONSIVENESS --- */
  .drops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .drop-card .price {
    font-size: 0.85rem;
  }

  /* Force visible text colors on mobile (overriding desktop hover states) */
  .product-grid-container .item-card-title,
  .drops-grid .item-card-title,
  .drops-grid h3,
  .drops-grid h2,
  .drop-card h3 {
    color: #ffffff !important;
  }

  .product-grid-container .item-card-price,
  .drops-grid .item-card-price,
  .drops-grid p,
  .drop-card .price {
    color: #a3a3a3 !important;
  }

  /* Keep the shop images from getting squished or stretched */
  .item-img-wrap,
  .drop-card img {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .bg-text {
    font-size: 5rem;
  }

  .drops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
}
/* ====================================================
   IPHONE SE & ULTRA-SMALL MOBILE DEVICES
   ==================================================== */
@media (max-width: 375px) {
  /* 1. Prevent the giant background texture from breaking horizontal limits */
  .bg-text {
    font-size: 4rem !important;
  }

  /* 2. Tighten shop grid spacing even further */
  .drops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem !important;
  }

  /* 3. Scale down product titles and prices so they fit inside the small cards */
  .item-card h3,
  .item-card h2,
  .drop-card h3,
  .product-grid-container .item-card-title,
  .drops-grid .item-card-title {
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
  }

  .item-card .item-card-price,
  .drop-card .price {
    font-size: 0.75rem !important;
  }

  /* 4. Scale down action buttons so text doesn't wrap awkwardly */
  .btn-dark,
  .btn-ghost,
  .card-btns button,
  .card-btns a {
    font-size: 0.6rem !important;
    padding: 0.6rem 0.5rem !important;
    letter-spacing: 1px !important;
  }
}
/* --- DROPS GRID --- */
.drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch; /* Makes sure cards in the same row have identical heights */
  gap: 1.5rem;
}

/* --- DROP CARD --- */
.drop-card {
  background: #0a0a0a;
  border: 1px solid #222;
  display: flex;
  flex-direction: column; /* Allows internal alignment */
  height: 100%; /* Spans the full height of the grid row */
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;

  /* POP UP ANIMATION */
  opacity: 0;
  transform: translateY(40px);
}

.drop-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}

.drop-card:hover {
  transform: translateY(-5px);
  border-color: #555;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.drop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* --- CARD CONTENT WRAPPER & ALIGNMENT --- */
.drop-card-content {
  padding: 1.2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Expands to push the buttons and price down */
}

.drop-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #e0e0e0;
  letter-spacing: 2px;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

/* Push the price and button to the absolute bottom of the card */
.drop-card .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: #888;
  margin-top: auto; /* Forces price down */
  margin-bottom: 1rem;
}

.btn-ghost-small {
  background: transparent;
  border: 1px solid #333;
  color: #888;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.25s ease;
  width: 100%;
}

.btn-ghost-small:hover {
  border-color: #fff;
  color: #fff;
}

/* ====================================================
   IPHONE SE & ULTRA-SMALL MOBILE DEVICES
   ==================================================== */
@media (max-width: 375px) {
  .bg-text {
    font-size: 4rem !important;
  }

  .drops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem !important;
  }

  .drop-card h3 {
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
  }

  .drop-card .price {
    font-size: 0.75rem !important;
  }

  .btn-dark,
  .btn-ghost,
  .btn-ghost-small {
    font-size: 0.6rem !important;
    padding: 0.6rem 0.5rem !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 320px) {
  .drops-grid {
    gap: 0.4rem !important;
  }
  
  .drop-card {
    padding: 0.5rem !important;
  }
}
/* ====================================================
   IPHONE 14 & MODERN STANDARD MOBILE DEVICES (376px - 414px)
   ==================================================== */
@media (min-width: 376px) and (max-width: 414px) {
  /* Give the grid slightly more breathing room on iPhone 14 */
  .drops-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.85rem !important;
  }

  /* Scale font sizes up slightly for readability on a 390px screen */
  .drop-card h3 {
    font-size: 1.15rem !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 0.4rem !important;
  }

  .drop-card .price {
    font-size: 0.9rem !important;
    margin-bottom: 1.1rem !important;
  }

  /* Scale up buttons so they look like comfortable tap targets */
  .btn-ghost-small {
    font-size: 0.68rem !important;
    padding: 0.7rem 0.8rem !important;
    letter-spacing: 1.5px !important;
  }
  
  /* Reset the inner card content padding for a balanced look */
  .drop-card-content {
    padding: 1rem 0.8rem 1.2rem !important;
  }
}
/* ====================================================
   IPHONE PRO MAX & LARGE MOBILE DEVICES (415px - 440px)
   ==================================================== */
@media (min-width: 415px) and (max-width: 440px) {
  /* Strict two column grid with robust spacing */
  .drops-grid,
  .supply-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.15rem !important;
  }

  /* Increase padding inside the cards for a premium feel */
  .drop-card-content,
  .item-info {
    padding: 1.25rem 1rem 1.4rem !important;
  }

  /* Emphasize the bold typography on larger Pro Max displays */
  .drop-card h3,
  .item-card h3,
  .item-name {
    font-size: 1.35rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.15 !important;
  }

  /* Slightly upscale the price font size */
  .drop-card .price,
  .item-card .item-price,
  .item-price {
    font-size: 1rem !important;
    margin-bottom: 1.25rem !important;
  }

  /* Make buttons larger and easier to tap on Pro Max devices */
  .btn-ghost-small,
  .card-btns button,
  .card-btns a {
    font-size: 0.72rem !important;
    padding: 0.8rem 1rem !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
  }
}