/* ===== STORE SECTION ===== */
.store-section {
  padding: 96px 0; /* 96px top and bottom as requested */
}

/* ===== GRID ===== */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.store-grid > * {
  min-width: 0; /* Prevents flex/grid blowout */
}

/* ===== LEFT: CONTENT ===== */
.store-title {
  font-size: 3rem;
  color: #181c20;
  line-height: 125%;
  margin-bottom: 32px;
}

.store-title-green {
  color: #006e25;
}

.store-desc {
  font-size: 1.125rem;
  color: #3e4a3c;
  line-height: 150%;
  margin-bottom: 32px;
}

/* ===== CHECKLIST ===== */
.store-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.store-check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.125rem;
  color: #181c20;
}

.check-icon {
  width: 13.3px;
  height: 7.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-left: 2px solid #006e25;
  border-bottom: 2px solid #006e25;
  transform: rotate(-45deg);
}

/* ===== RIGHT: AWARD CARD ===== */
.store-card-wrapper {
  display: flex;
  justify-content: center;
}

.store-award-card {
  background-color: #ebf3ee;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
}

/* ===== AWARD IMAGE ===== */
.award-img-placeholder {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.award-img-box {
  width: 100px;
  height: 130px;
  background-color: #c5d9c8;
  border-radius: 10px;
}

.award-img {
  width: 100px;
  height: 130px;
  object-fit: contain;
  border-radius: 10px;
}

/* ===== AWARD TEXT ===== */
.award-title {
  font-size: 1.75rem;
  color: #191c1d;
  line-height: 36.4px;
}

.award-presenter {
  font-size: 0.75rem;
  color: #006e25;
  margin: 0 0 16px 0;
  font-weight: 600;
  line-height: 100%;
}

.award-tagline {
  font-size: 1.5rem;
  color: #3e4a3c;
  line-height: 125%;
  font-weight: 700;
  font-family: "Jakarta", sans-serif;
  margin-bottom: 24px;
}

/* ===== AUDIO PLAYER ===== */
.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #181c20;
  border-radius: 50px;
  padding: 10px 16px;
}

/* Play Button */
.audio-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
  background: linear-gradient(135deg, #007016 0%, #00aa34 100%);
}

.audio-play-btn img {
  left: 5px;
  position: relative;
}

.audio-play-btn:hover {
  background-color: #155f30;
}

/* Waveform */
.audio-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  height: 28px;
  overflow: hidden;
}

.waveform-bar {
  display: inline-block;
  width: 3px;
  border-radius: 3px;
  background-color: #fff;
  animation: waveAnim 1.2s ease-in-out infinite;
}

/* Staggered animation for each bar */
.waveform-bar:nth-child(odd) {
  height: 60%;
  animation-delay: 0s;
}
.waveform-bar:nth-child(even) {
  height: 100%;
  animation-delay: 0.2s;
}
.waveform-bar:nth-child(3n) {
  height: 40%;
  animation-delay: 0.4s;
}
.waveform-bar:nth-child(4n) {
  height: 80%;
  animation-delay: 0.1s;
}
.waveform-bar:nth-child(5n) {
  height: 55%;
  animation-delay: 0.3s;
}

@keyframes waveAnim {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(0.4);
    opacity: 1;
  }
}

/* Duration */
.audio-duration {
  font-size: 0.78rem;
  color: #cccccc;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .store-grid {
    gap: 50px;
  }

  .store-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .store-section {
    padding: 60px 0;
  }

  .store-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 40px;
  }

  .store-title {
    font-size: 1.7rem;
  }

  .store-card-wrapper {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .store-section {
    padding: 48px 0;
  }

  .store-title {
    font-size: 1.5rem;
  }

  .store-award-card {
    padding: 20px;
  }
}
