@charset "utf-8";

/* =========================================
   ROGER PRO 3 LANDING PAGE
   ========================================= */

#lp_rogerpro3 {
  background: #fff;
  min-width: 1280px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #111;
  word-break: keep-all;
  letter-spacing: -0.02em;
  text-transform: none;
}

#lp_rogerpro3 * {
  text-transform: none;
}

#lp_rogerpro3 .inner {
  width: 1280px;
  margin: 0 auto;
  gap: 20px;
}

#contents{min-height:400px;padding:0 0 0 0;}
/* =========================================
   SECTION HEADING (공통)
   ========================================= */
.sec_heading {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 70px 0 50px;
}

.sec_heading .wrap_heading-title { flex-shrink: 0; }

.sec_heading .txt_heading-main {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: #111;
}

.sec_heading .deco_divider {
  display: block;
  flex: 1;
  height: 4px;
  background: #111;
}

.sec_heading .txt_heading-sub {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  white-space: nowrap;
}

/* =========================================
   CTA 버튼 (공통)
   ========================================= */
#lp_rogerpro3 .btn_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 34px;
  padding: 0 20px;
  background: #d9fb82;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

#lp_rogerpro3 .btn_cta .ico_arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* =========================================
   HERO
   ========================================= */
   .sec_hero {
    position: relative;
    width: 100%;
    height: 87vh;
    background: url('../img/sec_hero.png') no-repeat center center / cover;
    overflow: hidden;
  }
  
  .sec_hero .wrap_hero {
    display: flex;
    align-items: center;
    height: 100%;
    
    box-sizing: border-box;
  }
  
  .sec_hero .area_hero-copy {
    width: 550px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .sec_hero .wrap_hero-headline { margin-bottom: 54px; }
  
  .sec_hero .img_brand-logo { margin-bottom: 22px; }
  
  .sec_hero .img_brand-logo img {
    width: 40px;
    height: auto;
  }
  
  .sec_hero .wrap_hero-title { padding-left: 12px; }
  
  .sec_hero .txt_hero-title-ko,
  .sec_hero .txt_hero-title-en {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.2;
    color: #111;
  }
  
  .sec_hero .wrap_hero-desc { margin-bottom: 42px; }
  
  .sec_hero .txt_hero-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #111;
  }
  
  .sec_hero .area_hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(87vh - 163px);
    padding-left: 210px;
  }

  .sec_hero .wrap_hero-shoe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sec_hero .img_shoe {
    width: 520px;
    height: auto;
    object-fit: contain;
    animation: float-shoe 3.5s ease-in-out infinite;
  }

  .sec_hero .img_shadow {
    width: 100%;
    height: auto;
    margin-top: -10px;
    animation: float-shadow 3.5s ease-in-out infinite;
  }

@keyframes float-shoe {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-22px); }
}

@keyframes float-shadow {
  0%, 100% { transform: scaleX(1);    opacity: 0.55; }
  50%       { transform: scaleX(0.72); opacity: 0.3; }
}
/* =========================================
   FEATURE ANATOMY
   ========================================= */
.sec_feature-anatomy {
  display: flex;
  align-items: flex-start;
  padding-bottom: 100px;
}

.sec_feature-anatomy .area_anatomy-visual {
  width: 630px;
  height: 630px;
  flex-shrink: 0;
  overflow: hidden;
}

.sec_feature-anatomy .area_anatomy-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec_feature-anatomy .area_anatomy-features {
  flex: 1;
  padding: 60px 0 0 50px;
  box-sizing: border-box;
}

.wrap_feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.item_feature .txt_feature-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 12px;
}

.item_feature .txt_feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.75;
}

.item_feature {
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

/* =========================================
   FEATURE CARDS
   ========================================= */
.sec_feature-cards { padding-bottom: 100px; }

.sec_feature-cards .wrap_card-list {
  display: flex;
  gap: 27px;
}

.card_feature { flex: 1; }

.card_feature .area_card-img {
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 43px;
}

.card_feature .area_card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card_feature .txt_card-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin-bottom: 22px;
}

.card_feature .txt_card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.75;
}

/* =========================================
   AMBASSADOR
   ========================================= */
.sec_ambassador {
  background: #f5f5f5;
  overflow: hidden;
}

.sec_ambassador .wrap_ambassador {
  display: flex;
  align-items: stretch;
  min-height: 733px;
}

.sec_ambassador .area_ambassador-img {
  position: relative;
  width: 432px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 733px;
}

.sec_ambassador .area_ambassador-img img,
.sec_ambassador .area_ambassador-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec_ambassador .area_ambassador-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sec_ambassador .area_ambassador-text {
  flex: 1;
  padding: 80px 0 0;
}

.sec_ambassador .wrap_ambassador-copy {
  padding-left: 109px;
  max-width: 628px;
}

.sec_ambassador .txt_athlete-name {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 36px;
  text-transform: none;
}

.sec_ambassador .wrap_athlete-info {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 65px;
}

.tag_athlete-name-kr {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: #111;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.tag_athlete-role {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #111;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  line-height: 1;
  text-transform: none;
}

.sec_ambassador .txt_ambassador-quote {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
}

.sec_ambassador .area_ambassador-gallery {
  display: flex;
  gap: 17px;
  height: 248px;
  margin-top: 48px;
  overflow: hidden;
}

.sec_ambassador .area_ambassador-gallery img {
  flex: 1;
  width: 0;
  height: 248px;
  object-fit: cover;
}

/* =========================================
   QUOTE
   ========================================= */
.sec_quote { padding: 60px 0; }

.sec_quote .wrap_quote-text {
  position: relative;
  width: 470px;
  padding-left: 36px;
  box-sizing: border-box;
}

.deco_quote-bar {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #111;
}

.sec_quote .txt_quote {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
}

/* =========================================
   LINEUP CARDS
   ========================================= */
.sec_lineup-cards { padding-bottom: 100px; }

.wrap_lineup-list {
  display: flex;
  gap: 19px;
}

.card_lineup { flex: 1; }

.card_lineup .link_card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card_lineup .link_card:hover .area_card-img img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.card_lineup .area_card-img {
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 24px;
}

.card_lineup .area_card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card_lineup .wrap_card-info { padding: 0 16px; }

.card_lineup .wrap_product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card_lineup .txt_product-name {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.tag_gender {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #111;
  font-size: 11px;
  font-weight: 500;
  color: #111;
  text-transform: uppercase !important;
}

.wrap_color-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
}

.swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}

.swatch-lime       { background: #a8cc00; }
.swatch-white-pink { background: #f5b8c4; }

.swatch-colorname {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.swatch-court {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.swatch-court::before {
  content: '·';
  margin-right: 6px;
}

/* =========================================
   CTA CLOSING
   ========================================= */
.sec_cta-closing {
  text-align: center;
  padding: 110px 0 100px;
}

.sec_cta-closing .wrap_cta-copy {
  width: 668px;
  margin: 0 auto 55px;
}

.sec_cta-closing .wrap_cta-title {
  margin-bottom: 30px;
}

.sec_cta-closing .txt_product-name {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.sec_cta-closing .wrap_cta-tagline { padding: 10px 0; }

.sec_cta-closing .txt_cta-tagline {
  font-size: 48px;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
}

.sec_cta-closing .wrap_cta-desc { padding: 10px 0; }

.sec_cta-closing .txt_cta-desc {
  font-size: 22px;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
}

/* =========================================
   BRAND BAR
   ========================================= */
.sec_brand-bar {
  border-top: 1px solid #e5e5e5;
  padding: 10px 0;
}

.sec_brand-bar .wrap_brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 77px;
}

.sec_brand-bar .img_logo-on {
  height: 50px;
  width: auto;
}

.sec_brand-bar .txt_logo-x {
  font-size: 30px;
  font-weight: 100;
  color: #111;
}

.sec_brand-bar .img_logo-tm {
  height: 36px;
  width: auto;
}

/* =========================================================
   ON TENNIS 2026 FW LAUNCH CALENDAR (index-preview 전용)
   ========================================================= */
#lp_onfw {
  background: #fff;
  min-width: 1280px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #111;
  word-break: keep-all;
  letter-spacing: -0.02em;
}

#lp_onfw * { text-transform: none; }

#lp_onfw .inner {
  width: 1280px;
  margin: 0 auto;
}

#lp_onfw .btn_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 34px;
  padding: 0 20px;
  background: #d9fb82;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

#lp_onfw .btn_cta:hover { background: #c3e86a; }

#lp_onfw .btn_cta .ico_arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* 이미지 없는 영역 회색 placeholder */
#lp_onfw .ph_gray {
  width: 100%;
  height: 100%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------------------
   HERO (rogerpro3 .sec_hero 레이아웃과 동일 구조 + 배경 슬라이드쇼)
   --------------------------------------------------------- */
.onfw_hero {
  position: relative;
  width: 100%;
  height: 87vh;
  overflow: hidden;
  background: #f3f3f3;
}

.onfw_hero-bgslider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.onfw_hero-bgslide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.onfw_hero-bgslide.is-active { opacity: 1; }

.onfw_hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.15) 66%, rgba(0,0,0,0) 80%);
  mix-blend-mode: multiply;
}

.onfw_hero .wrap_hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.onfw_hero .area_hero-copy {
  width: 550px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.onfw_hero .wrap_hero-headline { margin-bottom: 54px; }

.onfw_hero .img_brand-logo { margin-bottom: 22px; }

.onfw_hero .img_brand-logo img {
  width: 40px;
  height: auto;
  filter: brightness(0) invert(1);
}

.onfw_hero .wrap_hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.onfw_hero .deco_eyebrow-dash {
  width: 22px;
  height: 1px;
  background: #fff;
}

.onfw_hero .txt_eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.onfw_hero .txt_hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
}

.onfw_hero .wrap_hero-desc { margin: 30px 0 42px; }

.onfw_hero .txt_hero-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

/* ---------------------------------------------------------
   SEASON INTRO
   --------------------------------------------------------- */
.onfw_intro { background: #111; padding: 70px 0; }

.onfw_intro .wrap_intro {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.onfw_intro .txt_intro-title {
  flex-shrink: 0;
  width: 380px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  color: #d9fb82;
}

.onfw_intro .txt_intro-desc {
  flex: 1;
  font-size: 15px;
  line-height: 1.85;
  color: #c7c7c7;
}

/* ---------------------------------------------------------
   CATEGORY / PRODUCT GRID
   --------------------------------------------------------- */
.sec_category { padding-bottom: 100px; }

.grid_product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.card_product .area_card-img {
  position: relative;
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-sizing: border-box;
}

.card_product .area_card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 모자 카드: 좌우 꽉 채우고 하단 기준 정렬 */
#cat-headwear .card_product .area_card-img {
  padding: 0;
}

#cat-headwear .card_product .area_card-img img {
  object-fit: cover;
  object-position: bottom;
}

/* 의류(캐러셀) 카드: 패딩 제거 */
.onfw_apparel .apparel_card .area_card-img {
  padding: 0;
}

.card_product .tag_new {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 50px;
}

.card_product .txt_card-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 8px;
}

.card_product .txt_card-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
}

.card_product .wrap_card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 14px;
}

.card_product .txt_price {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.card_product .link_buy {
  font-size: 12px;
  font-weight: 500;
  color: #111;
  border: 1px solid #111;
  border-radius: 50px;
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.card_product .link_buy:hover { background: #111; color: #d9fb82; }

.card_product .wrap_channel {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card_product .tag_channel {
  font-size: 11px;
  font-weight: 400;
  color: #666;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 4px 10px;
  background: #f7f7f7;
}

.card_product .tag_channel[data-map] {
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.card_product .tag_channel[data-map]:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ---------------------------------------------------------
   APPAREL (sec_ambassador 레이아웃 응용: 영상 + 자동 슬라이드 카드)
   --------------------------------------------------------- */
.onfw_apparel { background: #e7e7e8; overflow: hidden; }

.onfw_apparel .wrap_apparel {
  display: flex;
  align-items: stretch;
  min-height: 733px;
}

.onfw_apparel .area_apparel-video {
  position: relative;
  width: 432px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 733px;
}

.onfw_apparel .area_apparel-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 영상 중앙에 플로팅되는 흰색 타이틀 (LONDON / EDITION) — 큰 텍스트 위, 작은 텍스트 아래 */
.onfw_apparel .video_heading-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  gap: 8px;
  pointer-events: none;
}

.onfw_apparel .video_heading-overlay .txt_heading-main {
  color: #fff;
  font-size: 32px;
}

.onfw_apparel .video_heading-overlay .txt_heading-sub {
  color: #fff;
  letter-spacing: 0.35em;
  white-space: nowrap;
}

.onfw_apparel .area_apparel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 80px 70px 60px 70px;
  box-sizing: border-box;
}

.onfw_apparel .sec_heading { padding: 0 0 40px; }

.onfw_apparel .apparel_carousel {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.onfw_apparel .apparel_track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.onfw_apparel .apparel_card {
  flex: 0 0 auto;
}

/* ---------------------------------------------------------
   STORE EXPERIENCE
   --------------------------------------------------------- */
.onfw_store { padding: 100px 0; }

.onfw_store .wrap_store-head { max-width: 640px; margin-bottom: 44px; }

.onfw_store .tag_store-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.onfw_store .txt_store-title {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 16px;
}

.onfw_store .txt_store-desc {
  font-size: 14.5px;
  color: #444;
  line-height: 1.75;
}

.grid_store {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.card_store {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.card_store::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.88) 100%);
  pointer-events: none;
}

.card_store .ico_store {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_store .ico_store svg { width: 22px; height: 22px; }

.card_store .txt_store-name {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: #d9fb82;
}

.card_store .txt_store-desc {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.card_store ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card_store li {
  font-size: 12.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card_store li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9fb82;
  flex-shrink: 0;
}

.card_store .wrap_store-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.card_store .tag_store-location,
.card_store .btn_store-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.card_store .btn_store-map {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.card_store .btn_store-map .mappin { font-size: 11px; }

.card_store .btn_store-map:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.txt_store-note {
  font-size: 12.5px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.txt_store-note a {
  font-weight: 500;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
}

/* 매장 찾기 헤딩(맨 위, 공통 sec_heading 스타일) — onfw_store 자체 패딩과 중복되지 않게 보정 */
.onfw_store .sec_heading:first-child {
  padding-top: 0;
  margin-bottom: 40px;
}

#lp_onfw .btn_cta.btn_cta-store {
  flex-shrink: 0;
  height: 50px;
  padding: 0 32px;
  font-size: 16px;
}

/* 매장 카드 클릭 가능 표시 */
.card_store[data-map] {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card_store[data-map]:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* 매장 지도 모달 */
.store_map_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.store_map_modal.is-open { display: flex; }

.store_map_modal-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.store_map_modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 94vw;
  max-height: 90vh;
  overflow: auto;
}

.store_map_modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.store_map_modal-content { display: none; }
.store_map_modal-content.is-active { display: block; }

/* ---------------------------------------------------------
   BRAND BAR — 이 페이지만 검은 배경 + 흰색 로고/텍스트로 반전
   --------------------------------------------------------- */
#lp_onfw .sec_brand-bar {
  background: #111;
  border-top: none;
}

#lp_onfw .sec_brand-bar .img_logo-on,
#lp_onfw .sec_brand-bar .img_logo-tm {
  filter: brightness(0) invert(1);
}

#lp_onfw .sec_brand-bar .txt_logo-x {
  color: #fff;
}
