/* ══════════════════════════════════════════
   POPULAR STRIP v4 — dark theme throughout
   Navy bg, dark grey cards, no bright white
══════════════════════════════════════════ */

.popular-strip {
  background: transparent;   /* page bg (#0a1628) shows through */
  padding: 8px 0 10px;
  position: relative;
  z-index: 2;
}
.popular-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.popular-strip__disclosure {
  font-size: .6rem;
  color: rgba(255,255,255,.22);
  text-align: center;
  padding: 4px 1rem 0;
  margin: 0;
}

/* Product card — dark blue-grey */
.pop-card {
  display: flex;
  flex-direction: column;
  background: #1a2844;       /* dark blue-grey, not white */
  border: 1px solid #253555;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all .25s ease;
  min-height: 255px;
  cursor: pointer;
  position: relative;
}
.pop-card:hover {
  border-color: #a8864a;
  box-shadow: 0 6px 24px rgba(0,0,0,.5);
  transform: translateY(-3px);
  background: #1e3060;
}
.pop-card--empty {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 10px;
  min-height: 255px;
}

/* Image area — darkest */
.pop-card__img {
  height: 155px;
  overflow: hidden;
  background: #0f1a2e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.pop-card__img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: .75rem; transition: transform .35s ease;
  filter: brightness(.92) contrast(1.02);
}
.pop-card:hover .pop-card__img img { transform: scale(1.05); }

/* "View on Amazon" overlay on image */
.pop-card__img::after {
  content: 'View on Amazon →';
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(122,21,21,.88); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-align: center; padding: .38rem;
  transform: translateY(100%); transition: transform .2s ease;
}
.pop-card:hover .pop-card__img::after { transform: translateY(0); }

/* Card text */
.pop-card__body {
  padding: .62rem .82rem .75rem;
  flex: 1; display: flex; flex-direction: column; gap: .24rem;
}
.pop-card__label {
  font-size: .57rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #a8864a;
}
.pop-card__name {
  font-family: 'Playfair Display', serif; font-size: .86rem;
  color: rgba(255,255,255,.88); line-height: 1.3; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.pop-card__price {
  font-family: 'Playfair Display', serif; font-size: .98rem;
  font-weight: 700; color: #a8864a; margin: 0;
}
.pop-card__cta {
  font-size: .67rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #c9a96e;
  margin-top: auto; padding-top: .35rem; display: block;
}

/* ── Gift Concierge tile ── */
.pop-card--concierge {
  background: linear-gradient(145deg, #0d1e40 0%, #152348 55%, #1a3060 100%);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 10px; min-height: 255px; cursor: pointer;
  position: relative; overflow: hidden;
}
.pop-card--concierge::before {
  content: '✦';
  position: absolute; bottom: -8px; right: 8px;
  font-size: 5rem; color: rgba(201,169,110,.06); line-height: 1; pointer-events: none;
}
.pop-card--concierge:hover {
  border-color: #c9a96e;
  box-shadow: 0 8px 30px rgba(201,169,110,.25);
  transform: translateY(-3px);
}
.pop-concierge__inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 1.3rem 1rem; height: 100%; position: relative; z-index: 1;
}
.pop-concierge__icon {
  font-size: 1.7rem; color: #c9a96e; margin-bottom: .5rem;
  animation: concGlow 2.5s ease-in-out infinite;
}
@keyframes concGlow {
  0%,100% { text-shadow: 0 0 8px rgba(201,169,110,.3); }
  50%      { text-shadow: 0 0 22px rgba(201,169,110,.8); }
}
.pop-concierge__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.95rem, 1.7vw, 1.3rem);
  color: #fff; line-height: 1.2; margin-bottom: .5rem;
}
.pop-concierge__title em { color: #c9a96e; font-style: italic; }
.pop-concierge__desc {
  font-size: .74rem; color: rgba(255,255,255,.48);
  line-height: 1.55; margin-bottom: .8rem; max-width: 195px;
}
.pop-concierge__btn {
  display: inline-flex; align-items: center; gap: .38rem;
  background: #c9a96e; color: #0a1628;
  font-family: 'Lato', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .48rem 1.05rem; border-radius: 28px; border: none;
  transition: all .25s; pointer-events: none;
}
.pop-card--concierge:hover .pop-concierge__btn { background: #e8d4a8; }
.pop-concierge__hint { display: block; font-size: .58rem; color: rgba(255,255,255,.2); margin-top: .48rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .popular-strip__inner { grid-template-columns: repeat(2,1fr); gap: 6px; padding: 0 8px; }
}
@media (max-width: 600px) {
  .popular-strip__inner { grid-template-columns: 1fr; gap: 5px; padding: 0 6px; }
  .pop-card { flex-direction: row; min-height: 100px; }
  .pop-card--concierge { flex-direction: column; min-height: 150px; }
  .pop-card__img { width: 105px; height: 105px; flex-shrink: 0; }
  .pop-card__body { padding: .5rem .7rem; }
  .pop-concierge__desc { display: none; }
  .pop-concierge__inner { padding: .85rem; }
}
