/* ===== SHOP HERO ===== */
.shop-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #FDF5E6 0%, #fff 100%);
}

.shop-hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 20px;
}

.shop-hero__sub {
  font-size: 1.15rem;
  color: #6B5E52;
  margin-bottom: 32px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  gap: 8px;
  display: inline-flex;
  align-items: center;
}

/* ===== CATEGORIES CAROUSEL ===== */
.categories-section {
  overflow: hidden;
  padding: 20px 0 40px;
  position: relative;
}

.categories-section::before,
.categories-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.categories-section::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.categories-section::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.categories-track {
  display: flex;
  gap: 14px;
  animation: scrollCategories 30s linear infinite;
  width: max-content;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  background: #FDF5E6;
  border: 1px solid #EDE0D0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.category-chip:hover {
  background: #F5E6D0;
  border-color: #B8722A;
}

.category-chip__icon {
  font-size: 1.2rem;
}

@keyframes scrollCategories {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}

.how-it-works .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: #FAFAF8;
  border: 1px solid #EDE0D0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 26, 14, 0.08);
}

.step-card__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 0.92rem;
  color: #6B5E52;
  line-height: 1.6;
}

/* ===== DEAL OF THE WEEK ===== */
.deal-section {
  padding: 60px 0 80px;
  background: #fff;
}

.deal-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #B8722A, #CE8A42);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.deal-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FDF5E6 0%, #F5E6D0 100%);
  border: 1px solid #EDE0D0;
}

.deal-card__visual {
  flex-shrink: 0;
}

.deal-card__logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: contain;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.1);
}

.deal-card__expires {
  font-size: 0.82rem;
  color: #B8722A;
  font-weight: 600;
  margin-bottom: 8px;
}

.deal-card__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.deal-card__desc {
  font-size: 1rem;
  color: #6B5E52;
  margin-bottom: 20px;
}

/* ===== FLASH BOOST STORES ===== */
.flash-section {
  padding: 80px 0;
  background: #FAFAF8;
}

.flash-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.flash-section__header .section-title {
  margin-bottom: 8px;
}

.flash-section__note {
  font-size: 0.92rem;
  color: #6B5E52;
  max-width: 500px;
}

.flash-section__timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #B8722A;
  background: #FDF5E6;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid #EDE0D0;
}

.flash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.flash-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #EDE0D0;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.flash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 26, 14, 0.1);
}

.flash-card__img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  background: #F5E6D0;
}

.flash-card__body {
  padding: 18px 20px;
}

.flash-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.flash-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: #B8722A;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.flash-card__cashback {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2E7D32;
}

/* ===== ALL BOOST STORES ===== */
.all-stores-section {
  padding: 80px 0;
  background: #fff;
}

.all-stores-section .section-title {
  margin-bottom: 24px;
}

.stores-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.stores-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FAFAF8;
  border: 1px solid #EDE0D0;
  border-radius: 12px;
  padding: 12px 18px;
  max-width: 400px;
}

.stores-search svg {
  flex-shrink: 0;
  color: #6B5E52;
}

.stores-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  width: 100%;
}

.stores-search input::placeholder {
  color: #A99E93;
}

.stores-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #EDE0D0;
  background: #FAFAF8;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6B5E52;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:hover {
  border-color: #B8722A;
  color: #B8722A;
}

.filter-pill--active {
  background: #B8722A;
  color: #fff;
  border-color: #B8722A;
}

.filter-pill--active:hover {
  background: #a0642a;
  color: #fff;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #EDE0D0;
  background: #FAFAF8;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.08);
  border-color: #B8722A;
}

.store-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border: 1px solid #EDE0D0;
  flex-shrink: 0;
}

.store-card__info {
  flex: 1;
  min-width: 0;
}

.store-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-card__cashback {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2E7D32;
  margin-top: 2px;
}

.store-card__category {
  font-size: 0.78rem;
  color: #A99E93;
  margin-top: 2px;
}

.stores-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6B5E52;
  font-size: 1rem;
}

/* ===== FAQ ===== */
.shop-faq {
  padding: 80px 0;
  background: #FAFAF8;
}

.shop-faq .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #EDE0D0;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
}

.faq-item__q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #6B5E52;
}

.faq-item.open .faq-item__q svg {
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-item__a {
  max-height: 500px;
  padding-bottom: 22px;
}

.faq-item__a p,
.faq-item__a ul {
  font-size: 0.95rem;
  color: #6B5E52;
  line-height: 1.7;
}

.faq-item__a ul {
  padding-left: 20px;
}

.faq-item__a ul li {
  margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 120px 0 40px;
  }

  .shop-hero__title {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .deal-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 24px;
  }

  .deal-card__title {
    font-size: 1.3rem;
  }

  .flash-section__header {
    flex-direction: column;
  }

  .flash-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .stores-grid {
    grid-template-columns: 1fr;
  }

  .stores-search {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shop-hero__title {
    font-size: 1.65rem;
  }

  .flash-grid {
    grid-template-columns: 1fr;
  }

  .category-chip {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
