/* ═══════════════════════════════════════
   STORE GALLERY — store.css
   daphone-landing-page
═══════════════════════════════════════ */

.store {
  padding: 0;
}
.store__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 560px;
}
.store__item {
  position: relative;
  overflow: hidden;
  height: 560px;
}
.store__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px) brightness(0.4);
  transform: scale(1.08);
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.store__item:hover .store__bg {
  transform: scale(1.12);
  filter: blur(2px) brightness(0.55);
}
.store__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.store__sub {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.store__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.store__title em {
  font-style: normal;
  color: var(--gold);
}
.store__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}
.store__item:first-child {
  border-right: 1px solid rgba(240, 192, 0, 0.15);
}

@media (max-width: 900px) {
  .store__grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .store__item {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .store__item {
    height: 360px;
  }
  .store__item:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(240, 192, 0, 0.15);
  }
  .store__overlay {
    padding: 32px 24px;
  }
}
