 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }


 .m-only {
   display: none;
 }

 @media (max-width: 768px) {
   .m-only {
     display: inline;
   }
 }

 /* -------------------------------- Section: sub__ceo --------------------------------- */
 .sub__ceo_bg2 {
   position: relative;
   width: 100%;
   height: 598px;
   overflow: hidden;

   display: flex;
   align-items: center;
   justify-content: center;

   background-color: #f0f0f0;
 }

 /* ✅ 배경 확대용 레이어 */
 .sub__ceo_bg2::before {
   content: "";
   position: absolute;
   inset: 0;

   background: url(../../1x/s1/sub1_2__bg.png) no-repeat center;
   background-size: cover;

   transform: scale(1);
   transition: transform 2.5s ease;

   z-index: 0;
 }

 /* ✅ 페이지 진입시 서서히 확대 */
 .sub__ceo_bg2.is-active::before {
   transform: scale(1.15);
 }

 /* 텍스트는 위에 유지 */
 .sub__ceo_bg2 * {

   z-index: 2;
 }

 /* 텍스트 기본 상태 (숨김) */
 .sub__title {
   color: #fff;
   font-size: 56px;
   font-weight: 600;


   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.8s ease, transform 0.8s ease;
 }

 /* 나타난 상태 */
 .sub__title.is-show {
   opacity: 1;
   transform: translateY(0);
 }

 .sub__ceo {
   padding-bottom: 150px;
 }

 .sub__ceo_wrap {
   max-width: 1794px;
   background: #fafafa;
   margin-left: auto;
   border-radius: 50px 0 0 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 50px;
 }






 /* 기본 박스 */
 .sea-box {
   display: block;
   outline: 0 solid transparent;
   outline-offset: 0;
   transition: outline-color .25s ease, outline-width .25s ease;
 }

 /* hover 시 테두리 */
 .sea-item:hover .sea-box {
   outline: 3px solid #34445b;
 }








 .sub__ceo_text {
   width: 100%;
   padding: 3rem 0 3rem 6rem;
 }

 .sub__ceo_text div {
   font-family: "esamanru";
   font-size: 3rem;
   font-weight: 900;
 }

 .sub__ceo_text h3 {
   font-size: 2.25rem;
   font-weight: 800;
   padding-bottom: 2rem;
 }

 .sub__ceo_text p {
   line-height: 1.6;
 }

 .sub__ceo_text p span {
   font-family: 'KyoboHandwriting2020A';
   font-size: 1.125rem;
 }

 .sub__ceo_img img {
   width: 720px;
 }

 @media (max-width: 1024px) {
   .sub__ceo_wrap {
     flex-direction: column;
     align-items: center;
     padding: 2rem;
   }

   .sub__ceo_text {
     padding: 2rem 1rem;
     text-align: center;
   }

   .sub__ceo_text div {
     font-size: 2.5rem;
   }

   .sub__ceo_text h3 {
     font-size: 2rem;
   }

   .sub__ceo_text p span {
     font-size: 1rem;
   }

   .sub__ceo_img img {
     width: 100%;
     max-width: 600px;
   }
 }

 @media (max-width: 768px) {
   .sub__ceo_bg2 {
     height: 200px;
   }

   .recipe-sec {
     padding: 140px 0;
     margin-top: -38% !important;
   }

   .sub__ceo_wrap {
     border-radius: 30px 0 0 0;
     padding: 1.5rem;
   }

   .sub__ceo_text div {
     font-size: 2rem;
   }

   .sub__ceo_text h3 {
     font-size: 1.5rem;
   }

   .sub__ceo_text p {
     font-size: 0.95rem;
   }

   .sub__ceo_text p span {
     font-size: 0.9rem;
   }

   .sub__ceo_img img {
     max-width: 100%;
   }
 }








 /* ===============================
   SEA CUCUMBER
================================ */

 .sea-cucumber {
   padding: 140px 0;
   background: #fff;
 }

 .sea-cucumber__inner {
   width: min(1400px, 92%);
   margin: 0 auto;
   text-align: center;
 }

 .sea-cucumber__title {
   font-size: 40px;
   font-weight: 600;
   margin-bottom: 16px;
 }

 .sea-cucumber__desc {
   font-size: 16px;
   color: #555;
   margin-bottom: 80px;
 }

 /* LIST */
 .sea-cucumber__list {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 40px;
 }

 /* ITEM */
 .sea-item {
   text-align: center;
 }

 /* BOX */
 .sea-box {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 36px;
   background: #f6f6f6;
   /* ✅ 연회색 */
   border-radius: 18px;
   border: 1.5px solid #cfcfcf;
 }





 .sea-box img {
   max-width: 100%;
   height: auto;
   display: block;
 }

 /* TEXT (OUTSIDE BOX) */
 .sea-text {
   margin-top: 20px;
   font-size: 17px;
   font-weight: 500;
 }

 /* ===============================
   RESPONSIVE
================================ */

 @media (max-width: 1024px) {
   .sea-cucumber__list {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 480px) {
   .sea-cucumber {
     padding: 100px 0;
   }

   .sea-cucumber__title {
     font-size: 30px;
   }

   .sea-box {
     padding: 24px;
   }

   .sea-text {
     font-size: 16px;
   }
 }






 /* HEAD */
 .sea-cucumber__head {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   margin-bottom: 80px;
 }

 .sea-cucumber__titles {
   text-align: center;
 }

 .sea-filter {
   position: absolute;
   right: 0;
   top: 0;
 }

 option {
   background-color: #f0f0f0;
 }

 .sea-filter select {
   width: 140px;
   height: 44px;
   border: 1.5px solid #cfcfcf;
   border-radius: 6px;
   padding: 0 14px;
   background: #fff;
 }

 /* MOBILE */
 @media (max-width: 768px) {
   .sea-filter {
     position: static;
     margin-top: 20px;
   }

   .sea-cucumber__head {
     flex-direction: column;
     align-items: center;
   }
 }









 /* ===============================
   PRODUCT DETAIL SECTION
================================ */

 .product-detail {
   padding: 140px 0;
   background: #fff;
 }

 .product-detail__inner {
   width: min(1400px, 92%);
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 80px;
   align-items: start;
 }

 /* LEFT */
 .product-detail__left {
   display: flex;
   justify-content: center;
 }

 /* 기존 sea-box 스타일 그대로 */
 .product-box {
   padding: 70px;
   background: #f6f6f6;
   border: 1.5px solid #cfcfcf;
   border-radius: 18px;
 }

 .product-box img {
   max-width: 100%;
   height: auto;
   display: block;
 }

 /* RIGHT */
 .product-title {
   font-size: 37px;
   font-weight: 800;
   margin-bottom: 20px;
   color: #000;
 }

 .product-desc {
   font-size: 15px;
   /* line-height: 1.8; */
   color: #000;
   margin-bottom: 32px;
 }

 /* divider */
 .product-line {
   width: 100%;
   height: 1px;
   background: #cfcfcf;
   margin-bottom: 28px;
 }

 /* spec list */
 .product-spec {
   display: grid;
   row-gap: 14px;
 }

 .product-spec li {
   display: grid;
   grid-template-columns: 120px 1fr;
   font-size: 16px;
 }

 .spec-label {
   color: #777;
 }

 .spec-value {
   color: #222;
 }

 /* ===============================
   RESPONSIVE
================================ */

 @media (max-width: 1024px) {
   .product-detail__inner {
     grid-template-columns: 1fr;
     gap: 60px;
   }

   .product-detail__left {
     justify-content: center;
   }

   .product-title {
     text-align: center;
   }

   .product-desc {
     text-align: center;
   }
 }

 @media (max-width: 480px) {
   .product-detail {
     padding: 100px 0;
   }

   .product-box {
     padding: 32px;
   }

   .product-title {
     font-size: 24px;
   }

   .product-spec li {
     grid-template-columns: 90px 1fr;
   }
 }


 .recipe-sec {
   padding: 140px 0;
   margin-top: -5%;
 }

 .recipe-inner {
   width: min(1400px, 92%);
   margin: 0 auto;
   text-align: center;
 }

 /* HEAD */
 .recipe-head {
   position: relative;
   margin-bottom: 60px;
 }

 .recipe-en {
   font-size: 17px;
   color: #34445b;
 }

 .recipe-title {
   font-size: 36px;
   margin-top: 8px;
   color: #000;
 }

 /* 👩‍🍳 CHEF */
 .recipe-chef {
   position: absolute;
   right: 17px;
   top: -70px;
   width: 331px;
   z-index: 1;
 }

 h3.hfont {
   color: #34445b;
   font-size: 35px;
   margin-bottom: 16px;
 }

 strong.font {
   color: #34445b;
   font-size: 20px;

 }

 p.hfont {
   font-size: 18px;
   margin-top: 7px;
 }

 ol.font {
   font-size: 17px;
   margin-top: 22px;
 }

 /* ===============================
   TABS
================================ */
 .recipe-tabs {
   display: flex;
   justify-content: center;
   gap: 0px;
   margin-bottom: -28px;
   /* 박스 위로 얹힘 */
   position: relative;
   z-index: 3;
 }

 .recipe-tab {
   min-width: 465px;
   height: 95px;

   display: flex;
   align-items: flex-start;
   /* ✅ 위로 */
   justify-content: center;

   padding-top: 22px;
   /* ✅ 시안처럼 내려서 맞춤 */
   padding-bottom: 0;
   padding-left: 40px;
   padding-right: 40px;

   border: none;
   cursor: pointer;
   background: #ececec;
   color: #b5b5b5;
   font-size: 20px;
   font-weight: 500;

   border-radius: 16px 16px 0 0;
 }

 .recipe-tab.is-active {
   background: #2f3f55;
   color: #ffffff;
   position: relative;
   z-index: 2;
 }

 /* ===============================
   BOX
================================ */
 .recipe-box {
   position: relative;
   z-index: 5;

   background: #ffffff;
   border-radius: 30px;
   padding: 56px 64px;

   /* 그림자 */
   box-shadow:
     0 12px 28px rgba(0, 0, 0, 0.08),
     0 2px 6px rgba(0, 0, 0, 0.04);
 }

 /* 🔥 탭과 박스 경계 자연스럽게 이어주기 */


 /* ===============================
   CONTENT
================================ */
 .recipe-panel {
   display: none;
 }

 .recipe-panel.is-active {
   display: block;
 }

 .recipe-layout {
   display: grid;
   grid-template-columns: 420px 1fr;
   gap: 60px;
   align-items: center;
 }

 .recipe-img img {
   width: 100%;
   border-radius: 24px;
 }

 .recipe-text {
   text-align: left;
 }

 .dot-line {
   border-bottom: 1px dashed #ccc;
   margin: 20px 0;
 }

 /* ===============================
   RESPONSIVE
================================ */
 @media (max-width: 1024px) {
   .recipe-layout {
     grid-template-columns: 1fr;
   }

   .recipe-text {
     text-align: center;
   }

   .recipe-chef {
     display: none;
   }

   .recipe-tabs {
     overflow-x: auto;
     padding-bottom: 4px;
   }

   .recipe-tab {
     min-width: 0;
     height: 52px;
     font-size: 14px;
     margin-bottom: 27px;
   }

   .recipe-tab {

     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding-top: 9px;
     padding-bottom: 8px;
     padding-left: 40px;
     padding-right: 40px;
     border: none;
     cursor: pointer;
     background: #ececec;
     color: #b5b5b5;
     font-weight: 500;
     border-radius: 16px 16px 0 0;
   }
 }












 /* ===============================
   PRODUCT THUMBNAILS
================================ */
 .product-thumbs {
   display: flex;
   gap: 16px;
   margin-top: 20px;
 }

 .product-thumbs .thumb {
   width: 92px;
   height: 92px;

   border: none;
   padding: 0;
   background: transparent;
   cursor: pointer;

   border-radius: 12px;
   overflow: hidden;
   opacity: 0.6;

   transition: opacity .2s ease, box-shadow .2s ease;
 }

 .product-thumbs .thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .product-thumbs .thumb.is-active {
   opacity: 1;
   box-shadow: 0 0 0 2px #2f3f55;
 }

 /* ===============================
   RESPONSIVE
================================ */
 @media (max-width: 768px) {
   .product-thumbs {
     justify-content: center;
   }

   .product-thumbs .thumb {
     width: 72px;
     height: 72px;
   }
 }

 /* LEFT 영역 정리 */
 .product-detail__left {
   display: flex;
   flex-direction: column;
   /* ✅ 위 → 아래 */
   align-items: center;
   /* ✅ 중앙 정렬 */
 }

 .product-thumbs {
   display: flex;
   gap: 16px;
   margin-top: 24px;
   /* ✅ 메인 박스 아래로 떨어짐 */
   justify-content: center;
 }