/* ==========================================================================
   L'Aube Avenue - Shopping Guide Styles
   ========================================================================== */

/* Breadcrumb (reuse from detail) */
.breadcrumb-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 0;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  color: var(--color-text-muted);
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
}
.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--color-text-muted);
}
.breadcrumb-list li a {
  color: var(--color-text-light);
  font-size: 11px;
}
.breadcrumb-list li.current {
  color: var(--color-text);
}

/* ==========================================================================
   Guide Hero
   ========================================================================== */
.guide-hero {
  background: var(--color-bg-light);
  padding: 50px 0;
  text-align: center;
}
.guide-hero-title {
  font-family: var(--font-family-heading);
  font-size: 36px;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 8px;
}
.guide-hero-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Guide Navigation (sticky)
   ========================================================================== */
.guide-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.guide-nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
.guide-nav-list li {
  flex-shrink: 0;
}
.guide-nav-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 12px;
  color: var(--color-text-light);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.guide-nav-list a:hover,
.guide-nav-list a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  opacity: 1;
}
.guide-nav-list a i {
  font-size: 14px;
}

/* ==========================================================================
   Guide Content & Sections
   ========================================================================== */
.guide-content {
  padding: 0 0 60px;
  background: var(--color-bg);
}
.guide-section {
  padding: 50px 0 40px;
  border-bottom: 1px solid var(--color-border-light);
}
.guide-section:last-child {
  border-bottom: none;
}
.guide-section-icon {
  text-align: center;
  margin-bottom: 10px;
}
.guide-section-icon i {
  font-size: 28px;
  color: var(--color-primary);
}
.guide-section-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-text);
}

/* ==========================================================================
   Highlight Box (key numbers)
   ========================================================================== */
.guide-highlight-box {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.highlight-item {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 20px 30px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 300px;
}
.highlight-item.highlight-primary {
  background: #FFF8E7;
  border-color: #F0D78C;
}
.highlight-big {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 6px;
}
.highlight-item.highlight-primary .highlight-big {
  color: var(--color-primary);
}
.highlight-desc {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Guide Table
   ========================================================================== */
.guide-table-wrap {
  margin-bottom: 25px;
  overflow-x: auto;
}
.guide-table {
  width: 100%;
  border-collapse: collapse;
}
.guide-table th,
.guide-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 13px;
  text-align: left;
}
.guide-table thead th {
  background: var(--color-bg-light);
  font-weight: bold;
  color: var(--color-text);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.guide-table tbody td {
  color: var(--color-text-light);
}
.guide-table tbody td strong {
  color: var(--color-text);
}

/* ==========================================================================
   Guide Notes
   ========================================================================== */
.guide-notes {
  margin-bottom: 20px;
}
.guide-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-notes li {
  padding: 5px 0;
  font-size: 12px;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
}
.guide-notes li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Guide Cards
   ========================================================================== */
.guide-card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}
.guide-card {
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}
.guide-card h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--color-text);
}
.guide-card h3 i {
  margin-right: 6px;
}
.guide-card h3 .fa-check-circle { color: #4CAF50; }
.guide-card h3 .fa-times-circle { color: var(--color-sale); }

.guide-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-card li {
  font-size: 13px;
  color: var(--color-text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.guide-card li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ==========================================================================
   Info Box
   ========================================================================== */
.guide-info-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: #F0F7FF;
  border: 1px solid #C4DDFF;
  border-radius: 8px;
  margin-bottom: 25px;
}
.guide-info-box > i {
  font-size: 20px;
  color: #4A90D9;
  margin-top: 2px;
}
.guide-info-box strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--color-text);
}
.guide-info-box p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Return Steps
   ========================================================================== */
.guide-steps {
  margin-bottom: 25px;
}
.guide-steps h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step {
  text-align: center;
  flex: 0 0 auto;
  padding: 0 15px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto 8px;
}
.step p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}
.step-arrow {
  color: var(--color-text-muted);
  font-size: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   Payment Cards
   ========================================================================== */
.payment-methods {
  grid-template-columns: repeat(3, 1fr);
}
.payment-card {
  text-align: center;
}
.payment-card h3 {
  font-size: 13px;
  margin-bottom: 6px;
}
.payment-card h3 i {
  color: var(--color-primary);
}
.payment-card p {
  font-size: 11px;
  color: var(--color-text-light);
  margin: 0 0 8px;
}
.payment-note {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: bold;
}

/* ==========================================================================
   Coupon Cards
   ========================================================================== */
.coupon-card {
  text-align: center;
  position: relative;
  padding-top: 35px;
}
.coupon-card-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--color-sale);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 8px 0 8px 0;
}
.coupon-card-badge.birthday { background: #D4AF37; }
.coupon-card-badge.app { background: var(--color-primary); }

.coupon-card h3 {
  font-size: 13px;
}
.coupon-card-value {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-sale);
  margin: 8px 0;
}
.coupon-card-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Membership Table
   ========================================================================== */
.rank-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}
.rank-regular { background: #999; }
.rank-silver { background: #A8A8A8; }
.rank-gold { background: #D4AF37; }
.rank-platinum { background: #1a1a2e; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .guide-hero {
    padding: 30px 0;
  }
  .guide-hero-title {
    font-size: 28px;
  }
  .guide-nav-list {
    justify-content: flex-start;
    padding: 0 10px;
  }
  .guide-nav-list a {
    padding: 12px 14px;
    font-size: 11px;
  }
  .guide-section {
    padding: 30px 0;
  }
  .guide-section-title {
    font-size: 18px;
  }
  .guide-highlight-box {
    flex-direction: column;
    align-items: center;
  }
  .highlight-item {
    max-width: 100%;
    width: 100%;
  }
  .highlight-big {
    font-size: 28px;
  }
  .guide-card-row {
    grid-template-columns: 1fr;
  }
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .step-arrow {
    display: none;
  }
  .step {
    flex: 0 0 45%;
    padding: 10px;
    background: var(--color-bg-light);
    border-radius: 8px;
  }
  .guide-info-box {
    flex-direction: column;
    gap: 10px;
  }
}
