/* 모달/메뉴 열릴 때 바디 스크롤 막기 */
body.no-scroll {
  overflow: hidden;
}


/********************************************
 * 🔥 MOBILE HEADER
 ********************************************/
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    padding: 0 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(68, 232, 250, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255, 255, 255);

    z-index: 9999;
}

.menu-toggle {
    font-size: 30px;
    font-weight: 700;
    background: transparent;
    border: none;
    color: rgb(0, 0, 0);
    padding: 6px;
    cursor: pointer;
    z-index: 10001;
}

.menu-toggle:active {
    transform: scale(0.9);
}

.mobile-header .logo {
    color: rgb(255, 255, 255);
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    /* 🔥 텍스트 그림자 */
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}




/********************************************
 * 🔥 MOBILE NAV (SLIDING MENU)
 ********************************************/
.mobile-menu {
    position: fixed;
    top: 58px;
    left: 0;
    width: 78%;
    height: calc(100% - 58px);

    background: rgba(17, 24, 39, 0.9); /* Dark + transparent */
    backdrop-filter: blur(12px);

    padding: 28px 22px;
    box-shadow: 4px 0 12px rgba(0,0,0,0.4);

    transform: translateX(-100%);
    transition: transform 0.28s ease-out, opacity 0.25s ease;

    opacity: 0;
    pointer-events: none;
    z-index: 9998;
}

/* 메뉴 열릴 때 */
body.menu-open .mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}


/********************************************
 * 🔥 MENU HEADER 영역
 ********************************************/
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.menu-header h2 {
    color: rgb(0, 170, 40);
    font-size: 1.2rem;
    font-weight: 800;
}

/******************************************************/

.menu-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-title .arrow-down {
    width: 16px;
    height: 16px;
}


/******************************************************/

/* 메뉴 헤더 전체 */
.mobile-menu .menu-header {
    position: relative;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 양 끝 배치 */
}

/* MENU + 화살표 */
.mobile-menu .menu-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #00b919;
}

/* 닫기 버튼 */
.mobile-menu .close-btn {
    position: absolute;
    right: 16px;
    top: 14px;
    font-size: 1.6rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}


/*******************************************************/

.close-btn {
    font-size: 30px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    z-index: 10002;
}

.close-btn:active {
    transform: scale(0.9);
}


/********************************************
 * 🔥 MENU ITEMS
 ********************************************/
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 18px;
}

.mobile-menu ul li a {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.3px;
    font-family: 'Inter', sans-serif;
    color: rgb(255,255,255);
    text-decoration: none;

    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu ul li a:hover {
    color: #d9ff00;
    transform: translateX(4px);
}


/********************************************
 * 🔥 BODY OVERLAY 효과 (선택)
 ********************************************/
body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 9990;
}




/* Main ****************************************************************************************/
.mobile-main-content {
    padding: 80px 16px 16px;
}

.hero-section {
   position: relative;
    width: 100%;
    height: 320px; /* 필요 시 조정 */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 텍스트를 아래로 */
    align-items: center;
    border-radius: 8px;

    /* 🔹 배경 이미지 */
    background-image: url('./england.png'); /* 원하시는 이미지 경로 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 🔹 텍스트가 더 잘 보이도록 살짝 어둡게 */
    /* 필요 없으면 제거 가능 */
    /* overlay 넣으려면 아래 4줄 주석 제거 */
    /* 
    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.25);
        z-index: 1;
    } 
    */
}

/* 🔹 어둡게 처리하는 Overlay */
.hero-section::before {
     border-radius: 8px;
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* 🔥 어둡기 조절 부분 */
    z-index: 1;
}

/************************** FROM PRO HANDS.FOR FUTURE PROS.*****************/

.hero-section h1 {
    position: relative;
    z-index: 2; /* 🔹 텍스트를 이미지 위로 */
    /* 🔹 전용 서체 지정 (원하는 폰트 적으세요) */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 2.0rem;
    font-weight: 800;
    text-align: center;
}

.hero-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}



/************************************영국 PGA 프로 스튜어트 스미스의 브랜드*********************************************/
.hero-section p {
    position: relative;
    z-index: 2; /* 🔹 텍스트를 이미지 위로 */
    /* 🔹 전용 서체 지정 (원하는 폰트 적으세요) */
   font-family: 'Noto Sans KR', sans-serif;
   font-weight: 500;
    color: white; /* 배경 위에서 가장 선명 */
    text-align: center;
    letter-spacing: -0.5px;   /* 자연스럽게 좁아짐 */
    margin-bottom: 24px;
}

/*****************************************************************/




/******************************************************************/

/* Features */
.features h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-list {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
}

.card {
    flex-shrink: 0;
    width: 160px;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.card .title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.card .price {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #059669;
}
.card .price.gray {
    color: #6b7280;
}

/*****************************************************************/

.middle_img img {
    margin-top: 20px;
    width: 100%;
    height: auto;
    display: block;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.middle_img img.active {
    opacity: 1;
    transform: translateY(0);
}


/* Company Box ************************************/



.company-box {
    background: rgb(187, 255, 0);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*****************************SMITHWORKS***********************/
.company-box h3 {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    color: green;
}

.company-box p {
    
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
    color: rgb(0, 0, 0);
}

.spacer {
    height: 20vh;
}
.bottom-text {
    text-align: center;
    color: #6b7280;
}

/* Footer */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: white;
    border-top: 1px solid #ddd;
    z-index: 10000;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
    transition: 0.2s;
}
.nav-item.active {
    opacity: 1;
}

.bottom-nav a:visited,
.bottom-nav a:hover,
.bottom-nav a:active {
  text-decoration: none;
}


/***********************************************************************************************/




/**********************************************************************************************/

.bg001 {
    position: relative;
    width: 100%;
    height: 50vh; /* 필요에 따라 변경 */
    overflow: hidden;
    border-radius: 8px;
}

.bg001 .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;  /* 영상이 영역을 꽉 채움 */
    z-index: -1;        /* 뒤로 보내기 */
}


/* 🔹 개별 여백 설정 (원하는 값으로 조정 가능) */
.bg001 h1 {
    position: relative;
    margin-top: 0px;         /* 상단 여백 */
    margin-left: 20px;        /* 좌측 여백 */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;  
}

.bg001 p {
    position: relative;
    margin-left: 20px;        /* 좌측 여백 */
    margin-right: 20px;
    margin-top: 10px;         /* h1과의 간격 */
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    letter-spacing: -0.3px;
    font-size: 1rem;
}

/**********************************************************************/

.scroll-icon {
  position: fixed;
  right: 2vw;
  bottom: 70px;
  /* 화면 하단으로부터 20px */
  transform: translateX(-50%);
  /* 가로 가운데 정렬 */

  width: 30px;
  /* 가로 60px */
  height: 50px;
  /* 세로 100px */
  border: 2px solid #fff;
  /* 1px 흰색 테두리 */
  border-radius: 15px;
  /* 모서리 둥글게 (원하시면 숫자 조정) */
  display: flex;
  align-items: center;
  /* 수직 중앙 기준(기본 dot 시작 위치) */
  justify-content: center;
  background: #ffffff32;
  box-sizing: border-box;
  pointer-events: none;
  /* 클릭 방해하지 않음 */
  z-index: 9999;
}

/* 내부 컨테이너: 위치기준 및 overflow 처리 */
.scroll-icon .frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 이동하는 작은 원 */
.scroll-icon .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  /* 세로 절반 위치에서 시작 */
  transform: translate(-50%, -50%);
  width: 8px;
  /* 원 크기 (원하면 조절) */
  height: 8px;
  border-radius: 50%;
  background: #fff;
  /* 원 색상 (테두리와 동일) */
  box-shadow: none;
  opacity: 1;
  /* 애니메이션: 위로 이동 후 다시 원래 위치로 돌아오는 루프 */
  animation: moveUp 1.6s cubic-bezier(.2, .9, .2, 1) infinite;
}

/* 애니메이션 키프레임: 0% 시작 -> 60% 위 이동 -> 100% 원위치 (투명해짐) */
@keyframes moveUp {
  0% {
    transform: translate(-50%, 0);
    /* 시작: 중앙(절반) */
    opacity: 1;
  }

  60% {
    transform: translate(-50%, -23px);
    /* 위쪽으로만 이동 (값 조정 가능) */
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0);
    /* 다시 원위치로 */
    opacity: 0;
    /* 살짝 숨기고 재시작 */
  }
}

/* 사용자의 '감속모션(감소모션)' 선호를 존중 */
@media (prefers-reduced-motion: reduce) {
  .scroll-icon .dot {
    animation: none;
    opacity: 1;
  }
}

/*****************************************************************/

.img4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px; /* 간격 조금 넓게 */
    padding-left: 4vw;
    padding-right: 4vw;
    scroll-behavior: smooth;
}

.img4 img {
    flex: 0 0 30%; /* 기존 50% → 40% 로 축소 */
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    scroll-snap-align: start;
}

.img4::-webkit-scrollbar {
    display: none;
}

/***********************************************************************/

.bg002 {
    position: relative;
    width: 100%;
    height: 50vh; /* 필요에 따라 변경 */
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;   /* ⭐ 반드시 추가해야 영상이 보임 */
}

.bg002 .bg-video2 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;  /* 영상이 영역을 꽉 채움 */
    z-index: -1;        /* 뒤로 보내기 */
}


/* 🔹 개별 여백 설정 (원하는 값으로 조정 가능) */
.bg002 h1 {
    position: relative;
    margin-top: 0px;         /* 상단 여백 */
    margin-left: 20px;        /* 좌측 여백 */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;  
}

.bg002 p {
    position: relative;
    margin-left: 20px;        /* 좌측 여백 */
    margin-top: 10px;         /* h1과의 간격 */
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    letter-spacing: -0.3px;
    font-size: 1rem;
}

/***************************************************************/

.img_over {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow: hidden;
}

.img_over .img_box {
    position: relative;
    width: 50%; /* 가로 2개 */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.img_over .img_box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* 오버레이 */
.img_over .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* 어둡게 */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.35s ease;
}

.img_over .overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.3px;
}

/* 호버 시 효과 */
.img_over .img_box:hover img {
    transform: scale(1.06);
    opacity: 0.85;
}

.img_over .img_box:hover .overlay {
    opacity: 1;
}

/********************************************************/

.tech_pop {
    width: 100%;
    text-align: center;
    margin: 30px 0;
    z-index: 100;
}

.tech-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;

    color: white;
    background: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover 효과 */
.tech-btn:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-2px);
}

/********************************************************/

#spin-hero h1 {
    color: #ff0062;
}

#spin-hero P {
    color: #ffffff;
   
}

/********************************************************/

/* 🔹 공통 버튼 스타일 */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #16a34a; /* green-600 */
    color: white;
    font-size: 2rem; /* text-3xl */
    padding: 12px 16px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 40;
    border-radius: 0; /* 라운드 제거 */
    user-select: none;
}

.slide-btn:hover {
    background: #15803d; /* green-700 */
}

/* 🔹 좌측 버튼 */
.slide-btn-left {
    left: 0;
    z-index: 100;
}

/* 🔹 우측 버튼 */
.slide-btn-right {
    right: 0;
    z-index: 100;
}

/*******************************************************/

/* 요소 기본 스타일 */
.video_choice00 {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;

    background-image: url('./kings_video_choice.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 12px;
    overflow: hidden;

    /* 애니메이션 초기 상태 (숨겨짐) */
    opacity: 0;
    transform: scale(0.85);
}

/* 화면에 보일 때 활성화 */
.video_choice00.active {
    animation: fadeScaleUp 0.9s ease-out forwards;
}

/* 등장 애니메이션 */
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.video_choice00 {
    pointer-events: none !important;
}


/***********************************************************/

.video_choice01 {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 1920x1080 = 16:9 비율 */
    position: relative;

    background-image: url('./IMG_8386_png.png'); /* ✔ 여기만 이미지 경로로 변경 */
    background-size: cover;      /* 화면 전체에 꽉 채우기 */
    background-position: center; /* 항상 중앙 기준 */
    background-repeat: no-repeat;
    border-radius: 8px;         /* 선택: 모서리 부드럽게 */
    overflow: hidden;
}

/***********************************************************/

.video_choice02 {
    width: 100%;
    display: flex;
    justify-content: center; /* 가운데 정렬 */
    gap: 2vw; /* 이미지 간격 */
    padding: 40px 0; /* 위/아래 여백 (조절 가능) */
}

.video_choice02 img {
    width: 30%;              /* 3개를 정확히 가로로 배치 */
    height: auto;
    border-radius: 8px;     /* 라운드 처리 (선택) */
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;

}

/* IntersectionObserver가 붙을 때 활성화 */
.video_choice02.active img {
    opacity: 1;
    transform: translateY(0);
}

/* 조금씩 딜레이 추가 (더 세련됨) */
.video_choice02 img:nth-child(1) { transition-delay: 0.0s; }
.video_choice02 img:nth-child(2) { transition-delay: 0.15s; }
.video_choice02 img:nth-child(3) { transition-delay: 0.3s; }


/*********************************************************/

.video_choice {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.video-list {
    width: 100%;
    max-width: 95vw;
    display: flex;
    justify-content: center;
    gap: 3vw;
}

/* 썸네일 컨테이너 */
.video-wrap {
    position: relative;
    flex: 1;
    aspect-ratio: 9 / 16;
    cursor: pointer;
}

/* 썸네일 이미지 */
.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ▶ 아이콘 */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    opacity: 0.9;
    pointer-events: none;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* 팝업 */
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.video-popup video {
    width: 94%;
    max-height: 88vh;
    border-radius: 8px;
}

.close-popup {
    position: absolute;
    top: 28px;
    right: 25px;
    font-size: 34px;
    color: white;
    cursor: pointer;
}



/*******************************************************/

.caption001 {
    color: #15803d;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-weight: 600;

    /* 🔥 반응형 폰트 (모바일 최적화) */
    font-size: clamp(1rem, 2.5vw, 1.4rem);

    /* 🔥 위아래 패딩 20px */
    padding-top: 20px;
    padding-bottom: 20px;
}

.caption002 {
    color: #000000;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-weight: 600;

    /* 🔥 반응형 폰트 (모바일 최적화) */
    font-size: clamp(1rem, 2.5vw, 1.4rem);

    /* 🔥 위아래 패딩 20px */
   
    padding-bottom: 20px;
}


/******************************************************/

/* 요소 기본 스타일 */
.video_choice03 {
    width: 100%;
    height: 60vh;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;

    background-image: url('./e.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 12px;
    overflow: hidden;
}

.video_choice03 h1 {
    position: relative;
    margin-top: 0px;         /* 상단 여백 */
    margin-left: 20px;        /* 좌측 여백 */
    font-family: 'Inter', sans-serif;
    color: white; /* 배경 위에서 가장 선명 */
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;  
}

.video_choice03 p {
    position: relative;
    margin-left: 20px;        /* 좌측 여백 */
    margin-top: 10px;         /* h1과의 간격 */
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    letter-spacing: -0.3px;
    font-size: 1rem;
}
/************************************************/


/* 초기 상태: 아래쪽에 있고 투명 */
.logo-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 화면에 등장했을 때 적용될 상태 */
.logo-anim.active {
    opacity: 1;
    transform: translateY(0);
}

/************************************************************/

/* ⭐ 가로 100px, 높이 2px 정도의 밝은 직사각형 */
.moving-line {
  width: 100px;
  height: 2px;
  background: rgba(183, 255, 0, 0.9);
  margin-bottom: 20px;
  animation: slideLine 2.2s linear infinite;
}

.moving-line2 {
  width: 100px;
  height: 2px;
  background: rgba(255, 123, 0, 0.9);
  margin-bottom: 20px;
  animation: slideLine 2.2s linear infinite;
}

.moving-line3 {
  width: 100px;
  height: 2px;
  background: rgba(255, 0, 119, 0.9);
  margin-bottom: 20px;
  animation: slideLine 2.2s linear infinite;
}

/* ⭐ 좌 → 우 → 다시 좌로 무한 반복 */
@keyframes slideLine {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}

/********************************************************************/
/* 컨테이너: 가장자리 페이드 + 오버플로우 숨김 */
.marquee-wrap {   
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

/* 트랙: 수평 행으로 흘려보내기 */
.marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

/* 마우스/터치 올렸을 때 멈춤 */
.marquee:hover { animation-play-state: paused; }

/* 애니메이션 키프레임 */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* 트랙을 절반만큼 왼쪽으로 */
}

/* 모션 최소화 환경에서 정지 */
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
}

/*************************************************************************/

.product-strip { padding: 24px 16px; }

.bottom_putter{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 기본 3열 */
  gap: 12px;
}

/* 이미지 높이 통일(크롭) */
.bottom_putter .thumb{
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  /* 필요 비율로 변경 가능: 4/3, 1/1, 16/9 등 */
  aspect-ratio: 3 / 4;
  background: #0f0f0f0d;
}
.bottom_putter img{
  width: 100%; height: 100%;
  object-fit: cover;            /* 비율 유지 + 크롭 */
  display: block;
}

/* 반응형: 화면이 좁아질수록 2열 → 1열 */
@media (max-width: 992px){
  .bottom_putter{ grid-template-columns: repeat(3, 1fr); } /* 필요 시 유지 */
}

/*************************************************************************/
/* 색상은 필요에 맞게 조정 */
:root { --sep-color: #ff64c1; } /* 진한 그린(emerald-800 느낌) */


.mid-section{
  min-height: 10vh;                 /* 페이지 중간 영역(원하면 100vh) */
  display: flex;
  align-items: center;               /* 수직 가운데 */
  justify-content: center;           /* 수평 가운데 */
  padding: 40px 16px;
}

.v-sep{
  width: 2px;
  height: 60px;                      /* 요구사항: 80px */
  background: var(--sep-color);
  border-radius: 2px;
  transform-origin: center bottom;
  animation: vGrow 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--sep-color) 85%, transparent 15%),
              0 6px 16px rgba(0,0,0,.15);
}

/* 줄었다가(0.6배) 늘었다가(1배) 반복 */
@keyframes vGrow{
  0%   { transform: scaleY(0.4); opacity: .5; }
  50%  { transform: scaleY(1);   opacity: 1;  }
  100% { transform: scaleY(0.4); opacity: .5; }
}

/* 접근성: 모션 최소화 환경에서 정지 */
@media (prefers-reduced-motion: reduce){
  .v-sep{ animation: none; }
}


/* motion 기준 ********************************************/
/* 원형 플레이 버튼 */
.video-wrap .play-icon-m {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  border: 2px solid rgba(255,255,255,0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
  pointer-events: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* ▶ 삼각형 */
.video-wrap .play-icon-m::before {
  content: "";
  width: 0;
  height: 0;

  border-left: 14px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;

  margin-left: 3px; /* 시각적 중앙 보정 */
}

/* hover 효과 (선택) */
.video-wrap .play-icon-m {
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-wrap:hover .play-icon-m {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0,0,0,0.7);
}

/* 모바일 크기 조절 */
@media (max-width: 768px) {
  .video-wrap .play-icon-m {
    width: 44px;
    height: 44px;
  }
  .video-wrap .play-icon-m::before {
    border-left-width: 11px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }
}

/****************************************************************************/

/* 기본: 숨김 */
.orientation-lock {
  display: none;
}

/* 🔥 가로 모드일 때만 표시 */
@media screen and (orientation: landscape) {
  body > *:not(.orientation-lock) {
    display: none !important;
  }

  .orientation-lock {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: #000;
    color: #fff;

    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 1.2rem;
    font-weight: 600;
  }
}

/****************************************************************************/





















