/* ===== GW Scene Products — Day/Night Tab + Blocks ===== */
.etl-gw-scene * { margin: 0; padding: 0; box-sizing: border-box; }
.etl-gw-scene {
  background: #f5f0e8;
  padding: 32px 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.etl-gw-scene .sc-header { text-align: center; margin-bottom: 16px; }
.etl-gw-scene .sc-title {
  font-size: 20px; font-weight: 900; color: #2c2c2c;
}
.etl-gw-scene .sc-sub {
  font-size: 13px; color: #4b5563; margin-top: 4px;
}
/* Tabs */
.etl-gw-scene .sc-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 18px;
  max-width: 320px; margin-left: auto; margin-right: auto;
}
.etl-gw-scene .sc-tab {
  flex: 1; text-align: center;
  padding: 10px 16px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  background: #eee; color: #888;
  border: 2px solid #e0d8d0;
  transition: all 0.2s;
}
.etl-gw-scene .sc-tab:first-child { border-radius: 12px 0 0 12px; }
.etl-gw-scene .sc-tab:last-child { border-radius: 0 12px 12px 0; }
.etl-gw-scene .sc-tab.active {
  background: #1a3a4a; color: #fff; border-color: #1a3a4a;
}
.etl-gw-scene .sc-tab-icon { display: block; font-size: 18px; margin-bottom: 2px; }

/* Product grid */
.etl-gw-scene .sc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 840px; margin: 0 auto;
}
/* Cards hidden by default, JS adds .sc-show */
.etl-gw-scene .sc-card {
  background: #fff; border-radius: 14px;
  overflow: hidden; color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(201,169,110,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  display: none;
}
.etl-gw-scene .sc-card.sc-show { display: block; }
.etl-gw-scene .sc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.etl-gw-scene .sc-card-img {
  display: block; width: 100%; aspect-ratio: 1;
  background: #f5f0e8; overflow: hidden;
  text-decoration: none;
}
.etl-gw-scene .sc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.etl-gw-scene .sc-card-info { padding: 10px 12px; }
.etl-gw-scene .sc-card-scene {
  font-size: 10px; font-weight: 700; color: #1a3a4a;
  margin-bottom: 2px;
}
.etl-gw-scene .sc-card-name {
  font-size: 12px; font-weight: 700; color: #2c2c2c;
  line-height: 1.3;
}
.etl-gw-scene .sc-card-price {
  font-size: 14px; font-weight: 900; color: #c04828;
  margin-top: 4px;
}
.etl-gw-scene .sc-card-btn {
  display: block; width: 100%;
  margin-top: 8px; padding: 8px 0;
  background: #1a3a4a; color: #fff;
  font-size: 11px; font-weight: 700;
  text-align: center; border: none; border-radius: 8px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.etl-gw-scene .sc-card-btn:hover { background: #244d5f; }

/* View more link */
.etl-gw-scene .sc-more-wrap {
  text-align: center; margin-top: 18px;
}
.etl-gw-scene .sc-more-btn {
  color: #1a3a4a;
  font-size: 14px; font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.etl-gw-scene .sc-more-btn:hover {
  color: #244d5f;
}

/* Lucky note */
.etl-gw-scene .sc-lucky {
  text-align: center; margin-top: 16px;
  font-size: 13px; color: #c04828; font-weight: 700;
}

/* ========== Tablet+ (≥600px): 4 columns ========== */
@media (min-width: 600px) {
  .etl-gw-scene .sc-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

@media (min-width: 768px) {
  .etl-gw-scene { padding: 48px 40px; }
  .etl-gw-scene .sc-title { font-size: 28px; }
  .etl-gw-scene .sc-sub { font-size: 15px; }
  .etl-gw-scene .sc-tabs { max-width: 400px; }
  .etl-gw-scene .sc-tab { font-size: 16px; padding: 12px 20px; }
  .etl-gw-scene .sc-grid { gap: 20px; max-width: 1100px; }
  .etl-gw-scene .sc-card-info { padding: 14px 16px; }
  .etl-gw-scene .sc-card-scene { font-size: 13px; }
  .etl-gw-scene .sc-card-name { font-size: 15px; }
  .etl-gw-scene .sc-card-price { font-size: 18px; }
  .etl-gw-scene .sc-card-btn { font-size: 14px; padding: 10px 0; border-radius: 10px; }
  .etl-gw-scene .sc-lucky { font-size: 15px; }
  .etl-gw-scene .sc-more-btn { font-size: 15px; }
}
