
/* =========================================================
   UHU Korea Brand Page
   ========================================================= */
/* =========================================================
   INTRO
   ========================================================= */

body.intro-lock {
  height: 100vh;
  overflow: hidden;
}

.intro-screen {
  position: fixed;
  inset: 0;

  z-index: 99999;

  background: #fff200;

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

  transition:
    background .8s ease,
    opacity .8s ease,
    visibility .8s ease;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-screen.is-active {
  background: #f5f5f3;
}

.intro-screen.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-logo {
  position: relative;

  width: 294px;
  height: 120px;

  margin-bottom: 150px;
}

.intro-logo img {
  position: absolute;

  top: 0;
  left: 50%;

  width: 294px;
  height: auto;

  transform: translateX(-50%);

  transition:
    opacity .45s ease,
    transform .45s ease;
}

.intro-logo-default {
  opacity: 1;
}

.intro-logo-korea {
  opacity: 0;
}

.intro-toggle {
  width: 84px;
  height: 44px;

  border-radius: 999px;

  background: rgba(0,0,0,.08);

  position: relative;

  transform: translateX(-13px);

  cursor: pointer;

  transition:
    background .45s ease,
    transform .25s ease;
}

.intro-toggle:hover {
  transform: translateX(-13px) scale(1.06);
}

.intro-screen.is-active .intro-toggle {
  background: #fff200;
}

.intro-toggle span {
  position: absolute;

  top: 5px;
  left: 5px;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: #fff;

  transition:
    left .6s ease,
    transform .6s ease;
}

.intro-screen.is-active .intro-toggle span {
  left: 45px;
}

.intro-screen.is-active .intro-logo-default {
  opacity: 0;

  transform: translateX(-50%);
}

.intro-screen.is-active .intro-logo-korea {
  opacity: 1;

  transform: translateX(-50%);
}
/* =========================================================
   BASE
   ========================================================= */

   * {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    font-family: "Pretendard", sans-serif;
    background: #fff;
    color: #111;
  }
  
  .en {
    font-family: 'Paperlogy';
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font-family: inherit;
  }
  
  .wrap {
    width: 100%;
    overflow-x: hidden;
  }
  
  
  /* =========================================================
     INTRO
     ========================================================= */
  
  .intro-cover {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5ea2b;
    transition: transform 0.9s ease, opacity 0.9s ease;
  }
  
  .intro-cover.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
  
  .intro-logo-image {
    display: block;
    width: min(520px, 70vw);
    height: auto;
  }
  
  
  /* =========================================================
     HERO
     ========================================================= */
  
  .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 240px;
    padding-bottom: 240px;
    text-align: center;
  }
  
  .hero-logo {
    width: 207px;
    height: auto;
    display: block;
    margin: 0 auto 48px;
  }
  
  .hero-title {
    margin: 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.08em;
    color: #111;
  }
  
  .hero-desc {
    margin-top: 80px;
    margin-bottom: 80px;
    font-family: 'Pretendard', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 137%;
    letter-spacing: 0;
    color: #4d4d4d;
  }
  
  
  /* =========================================================
     MAIN BANNER
     ========================================================= */
  
  .main-banner {
    width: 1280px;
    margin: 0 auto 80px;
    display: flex;
    gap: 16px;
  }
  
  .banner-panel {
    width: 100px;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .45s ease;
  }
  
  .banner-panel.active {
    width: 932px;
  }
  
  .banner-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .banner-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.25),
      rgba(0,0,0,0)
    );
    z-index: 1;
  }
  
  .banner-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Paperlogy';
    font-size: 30px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
  }
  
  .banner-panel.active .banner-number {
    top: 20px;
    right: 20px;
    left: auto;
    transform: none;
  }
  
  .banner-panel:not(.active) .banner-number {
    top: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  .banner-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
  }
  
  .banner-panel.active .banner-content {
    opacity: 1;
    visibility: visible;
  }
  
  .banner-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    font-family: 'Paperlogy';
    font-size: 16px;
    font-weight: 700;
    color: #fff;
  }
  
  .banner-heading {
    margin: 8px 0 0;
    font-family: 'Pretendard';
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    color: #fff;
  }
  
  .banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    white-space: nowrap;
    font-family: 'Paperlogy';
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    z-index: 3;
    transition: all .3s ease;
  }
  
  .banner-panel:not(.active) .banner-title {
    opacity: 1;
    visibility: visible;
  }
  
  .banner-panel.active .banner-title {
    opacity: 0;
    visibility: hidden;
  }
  
  .banner-content,
  .banner-number,
  .banner-title {
    z-index: 2;
  }
  
  
  /* =========================================================
     SECTION(공통)
     ========================================================= */
  
  .section {
    padding: 80px 24px;
  }
  
  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .section-label {
    margin-bottom: 16px;
    font-family: 'Paperlogy', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #666;
  }
  
  .section-title {
    margin: 0 0 16px;
    font-family: 'Pretendard', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.04em;
  }
  
  .section-desc {
    max-width: 920px;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #111;
  }
  
  
  /* =========================================================
     POINT CARD LAYOUT
     ========================================================= */
  
  .grid {
    display: flex;
    gap: 40px;
    margin-top: 70px;
    padding-top: 12px;
    padding-bottom: 24px;
    padding-left: 14px;
    padding-right: 14px;
    margin-left: -14px;
    margin-right: -14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .grid::-webkit-scrollbar {
    display: none;
  }
  
  
  /* =========================================================
     POINT CARD
     ========================================================= */
  
  .card {
    position: relative;
    flex: 1;
    padding: 36px 25px;
    min-width: 260px;
    min-height: 320px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    transform-origin: center center;
  }
  
  .card:hover {
    transform: scale(1.022);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  }
  
  .card-kicker {
    font-family: 'Paperlogy', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888;
  }
  
  .card-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
  }
  
  .card-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  
  .highlight {
    color: #fff;
    background: #111;
  }
  
  .highlight .card-kicker,
  .highlight .card-desc {
    color: rgba(255, 255, 255, 0.78);
  }
  
  .card-more {
    position: absolute;
    right: 28px;
    bottom: 28px;
  
    width: auto;
    height: 32px;
    padding: 0 14px;
  
    border-radius: 999px;
    border: 1px solid rgba(255,243,106,0.7);
  
    background: rgba(255,243,106,0.55);
  
    font-family: 'Paperlogy';
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
  
    cursor: pointer;
  
    transition: all .25s ease;
  }
  
  .card-more:hover {
    transform: translateY(-2px);
    background: rgba(255,243,106,0.75);
  }
  
  .highlight .card-more {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.32);
    color: #fff;
  }
  
  /* =========================================================
     MODAL
     ========================================================= */
  
  .card-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
  }
  
  .card-modal.show {
    display: block;
  }
  
  .card-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(140, 140, 140, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .card-modal-panel {
    position: absolute;
    top: 55%;
    left: 50%;
    width: min(900px, calc(100% - 48px));
    padding: 40px;
    border-radius: 52px;
    background: #fff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
    transition: transform 0.28s ease, opacity 0.28s ease;
    box-shadow:
      0 20px 60px rgba(0,0,0,.08),
      0 8px 24px rgba(0,0,0,.04);
  }
  
  .card-modal.show .card-modal-panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .card-modal-panel.dark {
    background: #111;
  }
  
  .card-modal-panel.dark .card-modal-kicker {
    color: rgba(255,255,255,.7);
  }
  
  .card-modal-panel.dark .card-modal-title {
    color: #fff;
  }
  
  .card-modal-panel.dark .card-modal-desc {
    background: transparent;
    border-color: transparent;
    color: rgba(255,255,255,.85);
  }
  
  .card-modal-panel.dark .card-modal-desc::before {
    background: rgba(255,242,0,0.5);
  }
  
  .card-modal-panel.dark .card-modal-close {
    background: rgba(15,15,15,.55);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
      0 8px 24px rgba(0,0,0,.25),
      inset 0 1px 0 rgba(255,255,255,.08);
    color: #fff;
  }
  
  .card-modal-panel.dark .card-modal-close:hover {
    background: rgba(255,242,0,.45);
    border-color: rgba(255,242,0,.55);
    color: #111;
    box-shadow:
      0 12px 32px rgba(0,0,0,.3),
      0 0 24px rgba(255,242,0,.2);
  }
  
  .card-modal-close {
    position: absolute;
    top: -118px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      0 8px 24px rgba(0,0,0,.08),
      inset 0 1px 0 rgba(255,255,255,.5);
    cursor: pointer;
    color: #fff;
    transition:
      background .25s ease,
      transform .25s ease,
      box-shadow .25s ease,
      border-color .25s ease,
      color .25s ease;
  }
  
  .card-modal-close svg {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  .card-modal-close:hover {
    transform: translateX(-50%) scale(1.06);
    background: rgba(255, 242, 0, .55);
    border-color: rgba(255, 242, 0, .7);
    box-shadow:
      0 12px 32px rgba(0,0,0,.12),
      0 0 24px rgba(255,242,0,.25);
    color: #111;
  }
  
  .card-modal-content {
    padding: 20px;
  }
  
  .card-modal-kicker {
    margin-bottom: 16px;
    font-family: 'Paperlogy', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #555;
  }
  
  .card-modal-title {
    margin: 0 0 40px;
    font-family: 'Pretendard', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    color: #111;
  }
  
  .card-modal-desc {
    position: relative;
    margin: 0;
    padding-left: 48px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #333;
  }
  
  .card-modal-desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: calc(100% - 16px);
    border-radius: 999px;
    background: rgba(255,242,0,.5);
  }

/* =========================================================
   PRODUCT CARD
   ========================================================= */

   .product-grid {
    gap: 0;

    position: relative;

    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: 20px;
  }
  
  .product-card {
    display: flex;
    flex: 0 0 364px;
    flex-direction: column;
  
    width: 364px;
    min-width: 364px;
    height: 580px;
  
    padding: 32px;
  
    scroll-snap-align: start;
  
    text-decoration: none;
    color: #111;
  }
  
  .product-image {
    width: 300px;
    height: 300px;
  
    overflow: hidden;
    border-radius: 28px;
  
    background: #fff;
  
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.04);
  
    transform-origin: center center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  
  .product-image img {
    display: block;
  
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  
    transition: transform 0.35s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.027);

    box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08)
    0 8px 20px rgba(0, 0, 0, 0.05)
  }
  
  .product-dots {
    display: none;
  }
  
  .product-title {
    margin: 24px 0 0;
  
    font-family: 'Pretendard', sans-serif;
    font-size: 30px;
    font-weight: 700;
  
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  
  .product-desc {
    margin: 24px 0 0;
  
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
  
    line-height: 1.55;
    letter-spacing: 0.05em;
  
    color: #111;
  }
  
  .product-more {
    display: inline-block;
  
    margin-top: auto;
    padding-top: 32px;
  
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 600;
  
    line-height: 1.2;
    letter-spacing: 0.05em;
  
    color: #0066cc;
  
    transition: font-weight 0.25s ease;
  }
  
  .product-card:hover .product-more {
    font-weight: 900;
  }
  
  #products .section-inner {
    position: relative;
  }
  
  .product-arrows {
    position: absolute;
    right: -8px;
    top: 210px;
  
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  
    margin-top: 0;
    padding-right: 0;
  }
  
  .product-arrow {
    width: 44px;
    height: 44px;
  
    border: 0;
    border-radius: 50%;
  
    background: #f1f1f1;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    cursor: pointer;
  
    transition:
      background 0.25s ease,
      transform 0.25s ease,
      opacity 0.25s ease;
  }
  
  .product-arrow svg {
    width: 24px;
    height: 24px;
  
    fill: none;
    stroke: #c9c9c9;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .product-arrow:hover {
    background: #e8e8e8;
    transform: scale(1.04);
  }
  
  .product-arrow:hover svg {
    stroke: #9f9f9f;
  }
  
  .product-arrow:hover {
    background: #d8d8d8;
    color: #222;
  }

  .product-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
    
  /* =========================================================
    4 CUT BANNER
    ========================================================= */

      /* PC용 숨김 */
    .mobile-4cut-section{
      display:none;
    }
    
    .fourcut-section {
      padding: 80px 24px;
    }
    
    .fourcut-grid {
      max-width: 1280px;
    
      margin: 0 auto;
    
      display: grid;
    
      grid-template-columns: repeat(2, 632px);
    
      gap: 16px;
    
      justify-content: center;
    }
    
    .fourcut-card {
      position: relative;
    
      display: block;
    
      width: 632px;
      height: 674px;
    
      overflow: hidden;
    }
    
    .fourcut-card img {
      display: block;
    
      width: 100%;
      height: 100%;
    
      object-fit: cover;
    }
    
    .fourcut-card .hover-img {
      position: absolute;
    
      inset: 0;
    
      opacity: 0;
    
      transition: opacity .25s ease;
    }
    
    .fourcut-card:hover .hover-img {
      opacity: 1;
    }
  
  
/* =========================================================
MOBILE
========================================================= */
  
@media (max-width: 960px) {

    /* =========================================================
   INTRO - MOBILE
   ========================================================= */

   .intro-logo {

    position: relative;
    width: 200px;
    height: 90px;

    margin-bottom: 220px;

    left:5px;
  }

  .intro-logo img {
    width: 200px;
  }

  .intro-toggle {
    width: 84px;
    height: 44px;

    transform: translateX(0px);
  }

  .intro-toggle:hover {
    transform: translateX(0px) scale(1.04);
  }

  .intro-toggle span {
    top: 5px;
    left: 5px;

    width: 34px;
    height: 34px;
  }

  .intro-screen.is-active .intro-toggle span {
    left: 45px;
  }

  /* =========================================================
  MOBILE COMMON RULE
  카드 그림자 잘림 방지
  ========================================================= */

  /* 카드 그림자 잘림 방지 - 최종 */
/* 카드 그림자 잘림 방지 - 수정 */
  .main-banner,
  .grid,
  .product-grid{
    padding-top: 24px;
    padding-bottom: 24px;

    overflow-x: auto;
    overflow-y: visible;
  }
  .product-arrows,
  .category-prev,
  .category-next{
    display:none;
  }

  .hero {
    padding: 100px 24px 80px;
  }

  .hero-logo {
    width: 200px;
    margin: 0 auto 40px;
    position: relative;
    left: 5px;
  }

  .hero-title {
    margin: 0;

    font-family: 'Pretendard', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 53px;
    letter-spacing: -0.08em;
  }

  .hero-desc {
    margin: 50px auto 0;

    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 136%;
    letter-spacing: 0;

    color: #4d4d4d;
  }

  /* MOBILE MAIN BANNER */

  .main-banner{
    width:100%;
    margin:0;
  
    padding-top:24px;
    padding-bottom:24px;
  
    display:flex;
    gap:16px;
  
    overflow-x:auto;
    overflow-y:visible;
  
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .main-banner::before,
  .main-banner::after{
    display:none;
  }

  .banner-panel,
  .banner-panel.active{
    flex:0 0 300px;
    width:300px;
    height:400px;

    border-radius:28px;
    scroll-snap-align:center;
  }

  .banner-panel:first-child{
    margin-left:45px;
  }

  .banner-panel:last-child{
    margin-right:45px;
  }


  /*/////////////////////////*/

  .banner-panel:not(.active) .banner-title,
  .banner-panel .banner-title,
  .banner-number{
    display:none;
  }

  .banner-content{
    left:0;
    right:0;
    bottom:0;

    width:300px;
    height:146px;

    padding:24px 24px 22px;

    opacity:1;
    visibility:visible;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
  }

  .banner-tag{
    height:auto;
    padding:8px;

    border-radius:999px;

    background:rgba(255,243,106,0.55);
    border:1px solid rgba(255,243,106,0.7);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    font-family:'Paperlogy';
    font-size:16px;
    font-weight:700;
    line-height:1;

    color:#fff;
  }

  .banner-heading{
    margin:8px 0 0;
    padding-left:14px;

    font-family:'Pretendard';
    font-size:20px;
    font-weight:600;
    line-height:1.36;
    letter-spacing:0;

    color:#fff;
  }

  .main-banner::-webkit-scrollbar{
    display:none;
  }

  /* =========================================================
  BRAND SECTION
  ========================================================= */

  .section-label{
    margin-bottom:24px;

    font-family:'Paperlogy';
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.04em;

    color:#777;
  }

  .section-title{
    margin-bottom:24px;

    font-family:'Pretendard';
    font-size:48px;
    font-weight:700;
    line-height:53px;
    letter-spacing:-0.08em;
  }

  .section-desc{
    margin:0;

    font-family:'Pretendard';
    font-size:20px;
    font-weight:400;
    line-height:32px;
    letter-spacing:-0.04em;
  }

  /* =========================================================
  MOBILE BRAND SECTION
  ========================================================= */

  .section{
    padding:90px 0;
  }

  .section-inner{
    width:100%;
    max-width:none;
  }

  .section-label{
    margin:0 24px 24px;

    font-family:'Paperlogy';
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.04em;

    color:#777;
  }

  .section-title{
    margin:0 24px 24px;

    font-family:'Pretendard';
    font-size:48px;
    font-weight:700;
    line-height:53px;
    letter-spacing:-0.08em;
  }

  .section-desc{
    margin:0 24px;

    font-family:'Pretendard';
    font-size:20px;
    font-weight:400;
    line-height:32px;
    letter-spacing:-0.04em;
  }


  /* =========================================================
  MOBILE POINT CARD
  ========================================================= */

  .grid{
    margin-top:50px;

    display:flex;
    gap:16px;

    padding:0;
    margin-left:0;
    margin-right:0;

    overflow-x:auto;
    overflow-y:visible;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .grid::-webkit-scrollbar{
    display:none;
  }

  .card{
    flex:0 0 300px;

    width:300px;
    min-width:300px;
    min-height:400px;

    padding:32px 28px;

    border-radius:32px;

    scroll-snap-align:center;

    opacity:1;
    transform:none;
  }

  .card:first-child{
    margin-left:45px;
  }

  .card:last-child{
    margin-right:45px;
  }

  .card:hover{
    transform:none;
    box-shadow:0 10px 34px rgba(0,0,0,0.04);
  }

  .card.is-active{
    opacity:1;
    transform:none;
    box-shadow:0 10px 34px rgba(0,0,0,0.04);
  }

  /* =========================================================
  MOBILE CARD MODAL
  ========================================================= */

  .card-modal-panel{
    top:50%;

    width:calc(100% - 48px);
    max-height:none;

    padding:32px 24px;
    border-radius:32px;

    overflow:visible;
  }

  .card-modal-content{
    padding:0;
  }

  .card-modal-kicker{
    margin-bottom:16px;

    font-size:14px;
    letter-spacing:0.18em;
  }

  .card-modal-title{
    margin:0 0 28px;

    font-size:34px;
    line-height:1.18;
    letter-spacing:-0.06em;
  }

  .card-modal-desc{
    padding-left:24px;

    font-size:18px;
    line-height:1.65;
    letter-spacing:-0.02em;
  }

  .card-modal-desc::before{
    top:6px;

    width:5px;
    height:calc(100% - 12px);
  }

  .card-modal-close{
    top:-32px;
    left:50%;
    right:auto;

    width:64px;
    height:64px;

    border-radius:50%;

    transform:translateX(-50%);

    background:rgba(255,243,106,0.55);
    border:1px solid rgba(255,243,106,0.7);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 8px 24px rgba(255,242,0,.2);

    color:#111;
  }

  .card-modal-panel.dark .card-modal-close {
    top:-32px;
    left:50%;
    right:auto;

    width:64px;
    height:64px;

    border-radius:50%;

    transform:translateX(-50%);

    background:rgba(255,243,106,0.55);
    border:1px solid rgba(255,243,106,0.7);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 8px 24px rgba(255,242,0,.2);

    color:#111;
}

  .card-modal-close:hover{
    transform:translateX(-50%);
    background:rgba(255,243,106,0.55);
    box-shadow:0 8px 24px rgba(255,242,0,.2);
  }

  .card-modal-close svg{
    width:24px;
    height:24px;
  }

  /* =========================================================
  MOBILE PRODUCT CARD
  ========================================================= */
  /* 모바일에서는 제품 카드 호버 효과 제거 */
  .product-card:hover .product-image{
    transform:none;
    box-shadow:0 10px 34px rgba(0,0,0,0.04);
  }

  .product-more:hover{
    transform:none;
    background:rgba(255,243,106,0.55);
    font-weight:600;
  }

  .product-card:hover .product-more{
    font-weight:600;
  }

  .product-grid{
    margin-top:50px;

    display:flex;
    gap:16px;

    padding:0;
    margin-left:0;
    margin-right:0;

    overflow-x:auto;
    overflow-y:visible;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .product-grid::-webkit-scrollbar{
    display:none;
  }

  .product-card{
    flex:0 0 300px;

    width:300px;
    min-width:300px;
    height:auto;

    padding:10px;

    border-radius:36px;
    background:#fff;

    box-shadow:0 10px 34px rgba(0,0,0,0.04);

    scroll-snap-align:center;
  }

  .product-card:first-child{
    margin-left:45px;
  }

  .product-card:last-child{
    margin-right:45px;
  }

  .product-image{
    width:280px;
    height:280px;

    border-radius:28px;

    background:#e9e9e9;
  }

  .product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
  }

  .product-title {
    margin: 32px 0 12px 0;
    padding: 0 10px;

    font-family: 'Pretendard', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .product-desc {
    margin: 0;
    padding: 0 10px;

    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align:justify;
    text-align-last:left;
  }

  .product-more{
    margin-top: 32px;
    margin-left: 5px;
    margin-bottom: 5px;

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

    width:96px;
    height:36px;

    border-radius:999px;

    background:rgba(255,243,106,0.55);
    border:1px solid rgba(255,243,106,0.7);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    font-family:'Pretendard';
    font-size:14px;
    font-weight:600;
    line-height: 1;
    padding-top: 1px;

    color:#111;
    text-decoration:none;
  }

  /* =========================================================
  MOBILE 4CUT BANNER
  ========================================================= */
  /* PC용 숨김 */
  .fourcut-section{
    display:none;
  }
  
  /* 모바일용 표시 */
  .mobile-4cut-section{
    display:block;
    padding:72px 24px 80px;
    background:#fff;
  }
  
  .mobile-4cut-inner{
    width:300px;
    margin:0 auto;
  
    display:flex;
    flex-direction:column;
  
    position:relative;
  }
  
  .mobile-4cut-hero{
    display:block;
  
    width:300px;
    height:360px;
  
    border-radius:28px;
    overflow:hidden;
  
    background:#fff;
    text-decoration:none;
  
    position:relative;
    z-index:2;
  
    box-shadow:0 10px 34px rgba(0,0,0,0.04);
  }
  
  .mobile-4cut-hero img{
    width:100%;
    height:100%;
  
    display:block;
    object-fit:cover;
  }
  
  .mobile-4cut-cta{
    width:300px;
    height:78px;
  
    margin-top:-18px;
    padding:18px 18px 0;
  
    display:flex;
    align-items:center;
    justify-content:space-between;
  
    box-sizing:border-box;
  
    border-radius:0 0 28px 28px;
  
    background:rgba(255,243,106,0.72);
  
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  
    border:1px solid rgba(255,243,106,0.85);
    border-top:0;
  
    box-shadow:
      0 10px 24px rgba(0,0,0,0.04),
      inset 0 1px 0 rgba(255,255,255,0.45);
  
    text-decoration:none;
    color:#111;
  
    position:relative;
    z-index:1;
  }
  
  .mobile-4cut-title{
    font-family:'Pretendard';
    font-size:16px;
    font-weight:700;
    line-height:1;
    letter-spacing:-0.05em;
  
    color:#111;
  }
  
  .mobile-4cut-link{
    display:flex;
    align-items:center;
    gap:6px;
  
    font-family:'Paperlogy';
    font-size:14px;
    font-weight:700;
    line-height:1;
  
    color:#111;
  }
  
  .mobile-4cut-link svg{
    width:15px;
    height:15px;
  
    fill:none;
    stroke:currentColor;
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;

    margin-bottom: 1px;
  
    transform:translateY(1px);
  }
  
 /* .mobile-4cut-text-btn{
    width: 300px;
  
    margin-top: 20px;
    padding: 20px 18px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    border-radius: 28px;
  
    text-decoration: none;
    color: #111;
  
    background: rgba(255,255,255,0.6);
  
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  
    border: 1px solid rgba(0,0,0,0.06);
  
    box-shadow:
      0 10px 34px rgba(0,0,0,0.04),
      inset 0 1px 0 rgba(255,255,255,0.45);
  }*/

  .mobile-4cut-text-btn{
    width: 300px;
  
    margin-top: 18px;
  
    padding: 14px 18px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    border-radius: 18px;
  
    background: rgba(255,255,255,0.18);
  
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  
    border: 1px solid rgba(255,255,255,0.28);
  
    text-decoration: none;
    color: rgba(17,17,17,0.65);
  }

  .mobile-4cut-text-btn + .mobile-4cut-text-btn{
    margin-top: 8px;
  }

  .grid,
  .grid.point-grid,
  .product-grid{
    overflow-x:auto;
    overflow-y:visible;
  
    padding-top:24px;
    padding-bottom:24px;
  }
  
  .card,
  .card.is-active{
    overflow:visible;
  }


}