/**
 * 메인 페이지 전용 (Nike Podium CDS × 리앤양 토큰)
 */

/* ── 메인 promo bar (Nike top banner) ─────────── */
.wrapper.is-index .la-promo-bar {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.la-promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}

.la-promo-bar__text {
  margin: 0;
  flex: 1 1 auto;
  text-align: center;
}

.la-promo-bar__auth {
  flex: 0 0 auto;
}

.la-auth-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.la-auth-links > li {
  display: inline-flex;
  align-items: center;
}

.la-auth-links > li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
  padding: 0 10px;
}

.la-auth-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.la-auth-links a:hover,
.la-auth-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.at-lnb .la-auth-links a {
  color: #fff;
}

.at-lnb .la-auth-links {
  padding: 10px 0 5px;
}

.at-lnb .la-auth-links > li {
  float: none;
  padding: 0;
}

.at-lnb .la-auth-links > li::after {
  content: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 991px) {
  .la-promo-bar__inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
  }

  .la-promo-bar__text {
    width: 100%;
  }

  .la-promo-bar__auth {
    width: 100%;
  }

  .la-auth-links {
    justify-content: center;
  }
}

/* ── 버튼 ───────────────────────────────────── */
.la-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--la-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 980px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.la-btn:focus-visible {
  outline: 2px solid var(--la-accent);
  outline-offset: 2px;
}
.la-btn--accent {
  background: var(--la-accent);
  color: var(--la-white);
}
.la-btn--accent:hover {
  background: var(--la-accent-hov);
  color: var(--la-white);
}
.la-btn--secondary {
  background: transparent;
  color: var(--la-text);
  border: 1.5px solid var(--la-border);
}
.la-btn--secondary:hover {
  border-color: var(--la-charcoal);
}
.la-btn--on-dark {
  color: var(--la-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.la-btn--on-dark:hover {
  border-color: var(--la-white);
  color: var(--la-white);
}

/* 히어로 CTA — Primary 레드 + Secondary 흰 솔리드 */
.la-main-hero .la-btn--accent {
  background: var(--la-accent);
  color: #fff !important;
  border: 2px solid var(--la-accent);
}
.la-main-hero .la-btn--accent:hover {
  background: var(--la-accent-hov);
  color: #fff !important;
  border-color: var(--la-accent-hov);
}
.la-main-hero .la-btn--secondary.la-btn--on-dark {
  background: #fff;
  color: #111 !important;
  border: 2px solid #fff;
}
.la-main-hero .la-btn--secondary.la-btn--on-dark:hover {
  background: #f5f5f5;
  color: #111 !important;
  border-color: #f5f5f5;
}

/* ── 히어로 (Nike식 풀블리드 + 중앙 카피) ─────── */
.la-main-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--la-white);
  background: #000;
}
.la-main-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.la-main-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.72) saturate(0.85);
}
.la-main-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.la-main-hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.la-main-hero__eyebrow {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
  text-align: center;
}
.la-main-hero__title {
  width: 100%;
  font-family: var(--la-font-head);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.la-main-hero__desc {
  width: 100%;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.la-main-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.la-main-hero .la-btn {
  min-height: 44px;
  padding: 12px 28px;
}
.la-main-hero__caption {
  width: 100%;
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  text-align: center;
}

/* ── 메인 컨테이너 ──────────────────────────── */
.la-main-wrap {
  width: 100%;
}

.la-main-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.la-main-wrap .section {
  padding: 64px 0;
  position: relative;
}

/* 섹션 헤더 — Nike 좌측 H2 + 우측 링크 */
.la-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.la-section-head .section-heading {
  margin: 0;
  text-align: left;
}

.la-section-head__link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--la-charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.la-section-head__link:hover {
  color: var(--la-accent);
}

.la-main-wrap .section-heading {
  display: block;
  margin: 0 0 28px;
  padding-bottom: 0;
  border-bottom: none;
  font-family: var(--la-font-head);
  font-size: clamp(28px, 3.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--la-charcoal);
}

/* ── 상품 섹션 (플랫 그리드) ───────────────── */
.la-main-wrap .section--products {
  background: var(--la-cream);
}

.la-main-wrap .products-section {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.la-main-wrap .products-section .miso-item .item-wrap {
  margin-right: -8px !important;
  margin-bottom: -8px !important;
}

.la-main-wrap .products-section .miso-item .item-list {
  margin-right: 8px !important;
  margin-bottom: 8px !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: none;
}

@media (hover: hover) {
  .la-main-wrap .products-section .miso-item .item-list:hover {
    box-shadow: none;
    transform: none;
  }
}

.la-main-wrap .products-section .miso-item .img-wrap,
.la-main-wrap .products-section .miso-item .img-wrap img {
  border-radius: 0 !important;
}

.la-main-wrap .products-section .miso-item .item-content {
  padding: 12px 4px 16px;
}

.la-main-wrap .products-section .miso-item .item-content strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--la-charcoal);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.la-main-wrap .products-section .miso-item .item-content .item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--la-text-muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 4px;
}

.la-main-wrap .products-section .miso-item .item-price {
  color: var(--la-charcoal);
  font-weight: 600;
  font-size: 15px;
}

.la-main-wrap .products-section .miso-item .item-more a,
.la-main-wrap .products-section .miso-item .btn-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  color: var(--la-charcoal);
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
}

.la-main-wrap .products-section .miso-item .item-more a:hover,
.la-main-wrap .products-section .miso-item .btn-more a:hover {
  color: var(--la-accent);
  border: none;
}

/* ── 연락처 (Nike Black 플랫) ───────────────── */
.la-main-wrap .section--contact {
  background: #111111;
}

.la-main-wrap .section--contact .section-heading {
  color: #fff;
  text-align: left;
  margin-bottom: 8px;
}

.la-contact-lead {
  margin: 0 0 32px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.la-contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.la-contact-quick__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.la-contact-quick__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

a.la-contact-quick__item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
}

.la-contact-quick__item:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.la-contact-quick__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.la-contact-quick__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.la-contact-quick__value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.la-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.la-contact-panel {
  padding: 32px 24px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.la-contact-panel:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.la-contact-panel__title {
  font-family: var(--la-font-head);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.la-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.la-contact-row:last-child {
  margin-bottom: 0;
}

.la-contact-row__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
}

.la-contact-row__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.la-contact-row__value {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.la-contact-row__value a:not(.la-btn) {
  color: #1190ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.la-contact-row__value a:not(.la-btn):hover {
  color: #4da3ff;
}

.la-btn--contact {
  margin-top: 4px;
  background: var(--la-accent);
  color: #fff !important;
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--la-accent);
  text-decoration: none !important;
}

.la-btn--contact:hover {
  background: var(--la-accent-hov);
  color: #fff !important;
  border-color: var(--la-accent-hov);
}

/* ── reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .la-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── 반응형 ─────────────────────────────────── */
@media (max-width: 1024px) {
  .la-main-hero {
    min-height: 82vh;
  }
  .la-main-hero__copy {
    padding: 120px 20px 80px;
  }
  .la-main-hero__title {
    font-size: clamp(40px, 7vw, 56px);
  }
  .la-contact-quick {
    grid-template-columns: 1fr;
  }
  .la-contact-quick__item:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 992px) {
  .la-main-wrap .section {
    padding: 56px 0;
  }
  .la-contact-grid {
    grid-template-columns: 1fr;
  }
  .la-contact-panel:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 768px) {
  .la-main-wrap .section {
    padding: 48px 0;
  }
  .la-main-hero__img {
    object-position: center 40%;
  }
  .la-main-hero__title {
    font-size: clamp(36px, 9vw, 44px);
    line-height: 1.06;
  }
  .la-main-hero__desc {
    font-size: 15px;
    line-height: 1.5;
    max-width: 420px;
  }
  .la-main-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .la-main-hero__actions .la-btn {
    width: 100%;
  }
  .la-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .la-main-inner {
    padding: 0 16px;
  }
  .la-main-wrap .section {
    padding: 40px 0;
  }
}
