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

  body {
    font-family: 'Spoqa Han Sans Neo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
  }

html {
  scroll-behavior: smooth;
  }


  /* Main Content */
  .header-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 2rem 0 1rem 0;
  }

  .header-content p {
    font-size: 22px;
    color: #666;
  }

  .header-content .brand {
    font-weight: 500;
  }

  .header-content .highlight {
    color: #2563eb;
    font-weight: 500;
  }

  main {
    max-width: 1050px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 15rem;
  }

  /* Logo and Title Section */
  .title-section {
    text-align: center;
    margin-bottom: 4.5rem;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 140px 0px 0px;
  }

  .logo-wrapper .mini-podo {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.025em;
  }

  .logo-wrapper .mini-box {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  .logo-wrapper h1 {
    font-size: 3.375rem;
    letter-spacing: -0.025em;
  }

  .logo-wrapper .thin-text {
    font-weight: 300;
  }

  .logo-wrapper .bold-text {
    font-weight: 700;
  }

  .logo-image {
    height: auto;
    width: 300px;
    display: block;
  }

  .subtitle {
    font-size: 1.3125rem;
    color: #666;
    margin-bottom: 50px;
  }


  /* navigation background 네비게이션 탭 배경 - 모바일 전용(500이하) Liquid Glass 효과 */
  .nav-background {
    display: none; /* 기본적으로 숨김 */
  }

  @media (max-width: 500px) {
    .nav-background {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 90px;
      background: rgba(180, 194, 205, 0.2);
      z-index: 998;
      
      /* Liquid Glass Effect */
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 
        0 8px 32px rgba(180, 194, 205, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .nav-background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      pointer-events: none;
    }
  }

/* Section Tabs (vertical cards per reference) */
.section-tabs {
  position: fixed;
  top: 100px;
  left: 30px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr; /* force vertical */
  gap: 0;
  width: 120px;
  max-width: 120px;
  /* height: 544px; */
  /* max-height: 544px; */
  border-radius: 7px;
  /* overflow: hidden; */
  /* border: 1px solid #e6e6e6; */
}

.section-tab {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  max-width: 140px;
  gap: 6px;
  padding: 10px 12px;
  /* background: #f3f4f6; */
  color: #4b5563;
  text-decoration: none;
  /* border-bottom: 1px solid #e6e6e6; */
}

.section-tab:last-child { border-bottom: 0; }

/* .section-tab .tab-icon svg { width: 72px; height: 72px; color: #111; } */
.section-tab .tab-label { 
  font-weight: 400; 
  font-size: 10px;
  color: #5c5c5f;
  letter-spacing: -0.01em; 
}

.section-tab.is-active { 
  color: #111; 
  border-radius: 6px;
}

.section-tab.is-active .tab-label {
  font-weight: 800;
  color: #282828;
}

/* .badge-new {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #000000;
  color: #ffffff;
  font-weight: 500;
  font-size: 6px;
  padding: 2px 6px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.tab-icon {
  position: relative;
}

.tab-icon img {
  width: 100%;
  object-fit: cover;
}

.tab-icon-active {
  display: none;
}

.section-tab.is-active .tab-icon-default {
  display: none;
}

.section-tab.is-active .tab-icon-active {
  display: block;
}

.section-tab:not(.is-active) .tab-icon-active {
  display: none;
}

/* keep vertical layout on all sizes */

  .main-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
  }

  /* 그라데이션 텍스트 스타일 */
  .gradient-text-green {
    background: linear-gradient(90deg, #42CFAF, #669AE4, #715CE2, #3FA8AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .gradient-text-gray {
    background: linear-gradient(90deg, #565656, #898989, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Main Product Image */
  .product-image {
    margin-bottom: 11.25rem;
  }

  .image-container {
    position: relative;
    width: 100%;
    border-radius: 1.0rem;
    overflow: visible;
  }

  .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* 화살표와 텍스트 주석 스타일 */
  .annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .arrow-line {
    width: 80px;
    height: 1px;
  }

  .annotation-text {
    font-family: 'Spoqa Han Sans Neo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    white-space: nowrap;
  }

  /* MINI 섹션 주석 위치 */
  .annotation-1 {
    top: 30%;
    left: -100px;
    transform: rotate(-15deg);
  }

  .annotation-1 .arrow-line {
    transform: scaleX(-1);
  }

  .annotation-2 {
    bottom: 25%;
    right: -120px;
    transform: rotate(8deg);
  }

  /* 80L 섹션 주석 위치 */
  .annotation-3 {
    top: 20%;
    left: -140px;
    transform: rotate(-12deg);
  }

  .annotation-3 .arrow-line {
    transform: scaleX(-1);
  }

  .annotation-4 {
    bottom: 30%;
    right: -150px;
    transform: rotate(5deg);
  }

  /* 110L 섹션 주석 위치 */
  .annotation-5 {
    top: 25%;
    left: -160px;
    transform: rotate(-10deg);
  }

  .annotation-5 .arrow-line {
    transform: scaleX(-1);
  }

  .annotation-6 {
    top: 50%;
    right: -120px;
    transform: rotate(8deg);
  }

  .annotation-7 {
    bottom: 20%;
    right: -140px;
    transform: rotate(12deg);
  }

  /* 반응형 - 작은 화면에서는 숨김 */
  @media (max-width: 1200px) {
    .annotation {
      display: none;
    }
  }

  /* Description Section */
  .description {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .description p {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 2.0rem;
    text-align: left;
  }

  .description p:last-child {
    font-size: 3rem;
    font-weight: 500;
  }

  /* Features Grid */
  .property-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .property-grid .property-card {
    background-color: #F5F5F7 !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.8rem !important;
    text-align: left !important;
    flex: 0 0 auto !important;
  }

  .property-card img {
    width: auto !important;
    max-width: 25px;
    height: auto;
  }

  .property-card svg {
    width: 1.875rem;
    height: 1.875rem;
    color: #374151;
  }

  .property-card p {
    font-size: 1.6rem;
    font-weight: normal;
    color: #000000;
    flex: 0 0 auto;
  }


  /* Bottom Images Grid */
  .images-grid {
    display: grid;
    grid-template-columns: 3fr 3fr 4fr; /* 왼쪽 2열, 오른쪽 1열 */
    grid-template-rows: 1fr 1fr;        /* 상/하 2행 */
    gap: 0.8rem;
    max-width: 1002px;
    margin: 0 auto;
    height: 525px;                      /* Detail-4 기준 높이 */
  }

  .image-box {
    border-radius: 1.0rem;
    background: linear-gradient(to bottom right, #f5f5f5, #e5e5e5);
    overflow: hidden;
  }

  .image-box.Detail-1 {
    grid-column: 1 / span 2; /* 왼쪽 상단 전체(두 칸) */
    grid-row: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ECEEF2;
  }

  .image-box.Detail-1 img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .image-box.Detail-2 {
    grid-column: 1;          /* 왼쪽 하단 왼쪽 */
    grid-row: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E8EEF4;
  }

  .image-box.Detail-2 img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .image-box.Detail-3 {
    grid-column: 2;          /* 왼쪽 하단 오른쪽 */
    grid-row: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E8EEF4;
  }

  .image-box.Detail-3 img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .image-box.Detail-4 {
    grid-column: 2;          /* 왼쪽 하단 오른쪽 */
    grid-row: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E8EEF4;
  }

  .image-box.Detail-4 img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .image-box.Detail-4 {
    grid-column: 3;         /* 오른쪽 전체(세로로 두 행) */
    grid-row: 1 / span 2;
    height: 525px;
    max-height: 525px;
    align-items: center;
  }

  /* 80L specific layout */
  .images-grid--80l .image-box.Detail-80l-1a {
    grid-column: 1;          /* 상단 왼쪽 (분할 1) */
    grid-row: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F6F4F4
  }

  .images-grid--80l .image-box.Detail-80l-1a img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .images-grid--80l .image-box.Detail-80l-1b {
    grid-column: 2;          /* 상단 가운데 (분할 2) */
    grid-row: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F6F4F4
  }

  .images-grid--80l .image-box.Detail-80l-1b img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .images-grid--80l .image-box.Detail-80l-2 {
    grid-column: 1 / span 2; /* 하단 왼쪽부터 두 칸 모두 채움 */
    grid-row: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2ECF0
  }

  .images-grid--80l .image-box.Detail-80l-2 img {
    height: auto;
    object-fit: cover;
  }

  .images-grid--80l .image-box.Detail-80l-4 {
    grid-column: 3;          /* 오른쪽 전체(세로로 두 행) */
    grid-row: 1 / span 2;
    height: 525px;
    max-height: 525px;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2ECF0
  }


  .images-grid--80l .image-box.Detail-80l-4 img {
    width: auto;
    height: 93%;
    object-fit: cover;
  }




  /* 110L specific overrides */
  .images-grid--110l .image-box.Detail-1 {
    grid-column: 1 / span 2; /* 좌측 영역 전체 */
    grid-row: 1 / span 2;
    max-width: 606px;
    height: 525px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBF0E9
  }

  /* .images-grid--110l .image-box.Detail-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
  } */

  .images-grid--110l .image-box.Detail-4a {
    grid-column: 3;          /* 오른쪽 위 */
    grid-row: 1;
    height: 300px;
    max-height: auto;
    /* max-height: 300px; */
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EDF0E9
  }

  .images-grid--110l .image-box.Detail-4b {
    grid-column: 3;          /* 오른쪽 아래 */
    grid-row: 2;
    height: 217px;           /* 525 - 300 = 225 */
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F0EEE9
  }

  .image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Responsive */
  @media (min-width: 768px) {
    .main-title {
      font-size: 5rem;
      font-weight: 450;
    }

    .property-grid {
      max-width: 650px;
      margin-bottom: 11.25rem;
    }
  }

  /* Responsive (stack on smaller screens) */
  @media (max-width: 1024px) {
    .images-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      max-width: 100%;
      height: auto;
    }

    .image-box.Detail-1,
    .image-box.Detail-2,
    .image-box.Detail-3,
    .image-box.Detail-4 {
      grid-column: 1;
      grid-row: auto;
      height: auto;
      max-height: 525px;
    }




    /* 유지하고 싶은 배너 비율 지정 */
    .image-box.Detail-1 { aspect-ratio: 4 / 0; }
    .image-box.Detail-2 { aspect-ratio: 1 / 1; }
    .image-box.Detail-3 { aspect-ratio: 3 / 3; }
    .image-box.Detail-4 { aspect-ratio: 0 / 4; }
  }

  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 3rem auto 0;
    max-width: 1002px;
    margin-bottom: 300px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
  }

  .btn-primary {
    background: #0066cc;
    color: #fff;
    padding: 12px 18px;
  }
  .btn-primary:hover {
    background: #142b86;
    border-color: #000;
  }

  .btn-secondary {
    background: transparent;
    color: #111;
    border: 1px solid #cfcfcf;
    padding: 12px 18px;
  }
  .btn-secondary:hover {
    background: #f5f5f5;
    border-color: #bdbdbd;
  }

  @media (max-width: 640px) {
    .cta-buttons {
      flex-direction: column;
      gap: 0.5rem;
    }
    .btn { width: 100%; }
  }

  /* Promo Section (referenced design) */
  .promo-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
  }
  .promo-inner {
    max-width: 1002px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .promo-text .promo-eyebrow {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
  }
  .promo-text .promo-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  .promo-text .promo-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .promo-bullets {
    list-style: disc inside;
    color: #374151;
    margin-bottom: 1.25rem;
  }
  .promo-ctas {
    display: flex;
    gap: 0.75rem;
  }
  .promo-media img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
  }

  @media (max-width: 1024px) {
    .promo-inner {
      grid-template-columns: 1fr;
      text-align: left;
    }
    .promo-ctas {
      flex-direction: row;
      flex-wrap: wrap;
    }
  }

  /* Referenced bottom banner (css-kn171u css-7js8wp) */
  .ref-banner {
    padding: 4rem 1.5rem;
    background: #ffffff;
  }
  .ref-banner__inner {
    max-width: 1002px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
  }
  .ref-banner__eyebrow {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
  }
  .ref-banner__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
  .ref-banner__desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .ref-banner__ctas {
    display: flex;
    gap: 0.75rem;
  }
  .ref-banner__media img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
  }
  @media (max-width: 1024px) {
    .ref-banner__inner { grid-template-columns: 1fr; }
    .ref-banner__ctas { flex-wrap: wrap; }
  }



/* 라인업 */
  .product-spec {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 25.46px;
    position: relative;
  }

  .product-spec__head {
    display: flex;
    gap: 22.06px;
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
  }
    
  .product-spec__image {
    position: relative;
    width: 254.56px;
    height: 254.56px;
    aspect-ratio: 1;
  }
    
  .product-spec__meta {
    display: flex;
    gap: 9.33px;
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
  }
    
  .product-spec__size {
    position: relative;
    width: fit-content;
    margin-top: -0.85px;
    font-family: "Spoqa Han Sans Neo-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .product-spec__price {
    font-family: "Spoqa Han Sans Neo-Bold", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 20.2px;
    position: relative;
    width: fit-content;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }
    
  .product-spec__ctas {
    display: flex;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
  }
    
  .product-spec__buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #0066cc;
    border-radius: 9999px;
  }

  .product-spec__buy-label {
    margin-top: 0;
    font-family: "Spoqa Han Sans Neo-Bold", Helvetica;
    /* font-weight: 700; */
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
    width: fit-content;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .product-spec__deepdive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7.5px 15px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 75px;
  }
    
  .product-spec__deepdive-label {
    position: relative;
    width: fit-content;
    margin-top: 0;
    font-family: "Spoqa Han Sans Neo-Bold", Helvetica;
    color: #0066cc;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }
    
  .product-spec__divider {
    position: relative;
    width: 135.77px;
    height: 1px;
    background-color: #828282;
  }
    
  .product-spec__list {
    display: inline-flex;
    max-width: 230px;
    gap: 38.18px;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
  }
    
  .product-spec__item {
    display: inline-flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
  }
    
  .product-spec__icon {
    position: relative;
    width: 33.94px;
    height: 33.94px;
  }
    
  .dimension-box {
    position: absolute;
    top: 1px;
    left: 3px;
    width: 27px;
    height: 34px;
    border-radius: 5.09px;
    border: 2.55px solid;
    border-color: #000000;
  }
    
  .dimension-vertical {
    position: absolute;
    top: 3px;
    left: 14px;
    width: 6px;
    height: 28px;
  }
    
  .dimension-horizontal {
    position: absolute;
    top: 14px;
    left: 6px;
    width: 23px;
    height: 6px;
  }
    
  .product-spec__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-family: "Spoqa Han Sans Neo-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 20.2px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }
    
  .product-spec__line {
    font-family: "Spoqa Han Sans Neo-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 0px 0px 50px 0px;
  }
    
  .product-spec__unit {
    font-size: 13.5px;
  }
    
  .product-spec__emphasis {
    font-family: "Spoqa Han Sans Neo-Bold", Helvetica;
    font-weight: 400;
    font-size: 18px;
  }
    
  .capacity-outer {
    position: absolute;
    top: 1px;
    left: 3px;
    width: 29px;
    height: 34px;
    border-radius: 5.09px;
    border: 2.55px solid;
    border-color: #000000;
  }
    
  .capacity-inner {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 20px;
    height: 25px;
    border-radius: 2.55px;
    border: 1.7px solid;
    border-color: #000000;
  }
    
  .capacity-vertical {
    position: absolute;
    top: 6px;
    left: 14px;
    width: 6px;
    height: 21px;
  }
    
  .capacity-horizontal {
    position: absolute;
    top: 14px;
    left: 8px;
    width: 18px;
    height: 6px;
  }
    
  .icon-curve {
    position: relative;
    width: 27.15px;
    height: 30.8px;
  }
    
  .recycle-icon {
    position: relative;
    width: 33.94px;
    height: 33.94px;
    overflow: hidden;
  }
    
  .recycle-icon__inner {
    position: relative;
    top: calc(50.00% - 16px);
    left: calc(50.00% - 18px);
    width: 35px;
    height: 31px;
  }
    
  .recycle-path1 {
    position: absolute;
    width: 56.10%;
    height: 43.24%;
    top: 0;
    left: 6.10%;
  }
    
  .recycle-path2 {
    position: absolute;
    width: 53.66%;
    height: 27.03%;
    top: 63.51%;
    left: 3.64%;
  }
    
  .recycle-path3 {
    position: absolute;
    width: 26.83%;
    height: 64.86%;
    top: 25.67%;
    left: 64.63%;
  }
  
  .image-placeholder {
    position: absolute;
    width: 75.00%;
    height: 92.50%;
    top: 4.99%;
    left: 12.50%;
  }



/* 라인업 그리드 */
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  justify-items: center;
  margin: 4rem 0;
}

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

/* 추가 옵션 제목 및 라인업 제목 */
.additional-options-title,
.producut-spec-title {
  text-align: left;
  margin-top: 180px;
  margin-bottom: 40px;
  font-family: 'Spoqa Han Sans Neo', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
}

/* 옵션 */
.option-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
  padding: 32px;
  transition: all 0.3s ease;
}

.option-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  /*.option-card {
    padding: 48px;
  } */
}

.card-content {
  position: relative;
  z-index: 10;
}

.card-content h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

@media (min-width: 768px) {
  .card-content h3 {
    font-size: 24px;
  }
}

.card-content p {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

@media (min-width: 768px) {
  .card-content p {
    font-size: 18px;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background-color: #111827;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1f2937;
}

.arrow-icon {
  width: 16px;
  height: 16px;
}

.option-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .option-buttons {
    flex-direction: column;
    align-items: flex-end;
    }
  }
/* 배너 내 이미지들을 오른쪽 끝으로 이동 */
.card-content img {
  position: absolute;
  width: auto;
  height: 100%;
  right: 16px;
  top: 100%;
  transform: translateY(-70%);
  z-index: 5;
}

/* option_section_free.png 이미지 - 배너 높이에 맞게 크게 */
.option-image-free {
  width: auto !important;
  height: 150% !important;
}

/* option_section_sticker.png 이미지 - 1.5배 크게 */
.option-image-sticker {
  width: auto !important;
  height: 150% !important;
}

/* 500px 이하 화면 전용 스타일 */
@media (max-width: 500px) {
  /* 1. description 텍스트 사이즈 변경 */
  .description p {
    font-size: 2.1rem;
  }

  .description p:last-child {
    font-size: 2.1rem;
  }

  /* 2. product-image와 description 사이 여백 50% 축소 */
  .product-image {
    margin-bottom: 5.625rem; /* 11.25rem의 50% = 5.625rem */
  }

  /* 3. 버튼 넓이 50% 축소 */
  .btn {
    width: 50% !important;
    padding: 14px;
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 160px; /* 300px에서 160px로 변경 */
  }

  /* 4. 버튼을 제외한 배너의 border-radius 12px로 변경 */
  .image-container {
    border-radius: 12px;
  }

  .image-box {
    border-radius: 12px;
  }

  .property-card {
    border-radius: 12px;
  }

  .option-card {
    border-radius: 12px;
  }

  /* 5. property-grid two-col과 이미지 그리드 사이 여백 50px */
  .property-grid.two-col {
    margin-bottom: 50px;
  }

  .images-grid {
    margin-top: 50px;
    margin-bottom: 50px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  /* MINI 영역 레이아웃 */
  .image-box.Detail-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    max-height: 240px;
  }

  .image-box.Detail-2 {
    grid-column: 1;
    grid-row: 2;
    height: auto;
  }

  .image-box.Detail-3 {
    grid-column: 2;
    grid-row: 2;
    height: auto;
  }

  .image-box.Detail-4 {
    grid-column: 1 / span 2;
    grid-row: 3;
    height: 270px;
    max-height: 270px;
  }

  /* 80L 영역 레이아웃 */
  .images-grid--80l .image-box.Detail-80l-1a {
    grid-column: 1;
    grid-row: 1;
    height: 150px;
    max-height: 150px;
  }

  .images-grid--80l .image-box.Detail-80l-1b {
    grid-column: 2;
    grid-row: 1;
    height: 150px;
    max-height: 150px;
  }

  .images-grid--80l .image-box.Detail-80l-2 {
    grid-column: 1 / span 2;
    grid-row: 2;
    height: 150px;
    max-height: 150px;
  }

  .images-grid--80l .image-box.Detail-80l-4 {
    grid-column: 1 / span 2;
    grid-row: 3;
    height: 270px;
    max-height: 270px;
    max-width: 100%;
  }

  /* 110L 영역 레이아웃 */
  .images-grid--110l .image-box.Detail-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    height: 280px;
    max-height: 280px;
    max-width: 100%;
  }

  .images-grid--110l .image-box.Detail-4a {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    max-height: none;
    max-width: 100%;
  }

  .images-grid--110l .image-box.Detail-4b {
    grid-column: 2;
    grid-row: 2;
    height: auto;
    max-height: none;
    max-width: 100%;
  }

  /* 전체 라인업 및 스펙 영역 */
  .product-spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }

  .product-spec {
    gap: 12px;
    /* transform: scale(0.75); */
    transform-origin: top center;
  }

  .product-spec__image {
    width: 180px;
    height: 180px;
  }

  .product-spec__size {
    font-size: 22px;
  }

  .product-spec__price {
    font-size: 16px;
  }

  .product-spec__buy,
  .product-spec__deepdive {
    padding: 10px 18px;
  }

  .product-spec__buy-label,
  .product-spec__deepdive-label {
    font-size: 1.2rem;
  }

  .product-spec__divider {
    width: 100px;
  }

  .product-spec__list {
    gap: 24px;
    max-width: 180px;
  }

  .product-spec__copy {
    font-size: 16px;
  }

  .product-spec__line {
    font-size: 14px;
  }

  .product-spec__emphasis {
    font-size: 14px;
  }

  .product-spec__icon {
    width: 28px;
    height: 28px;
  }

  /* 특정 이미지 크기 조정 */
  /* 1. mini_1.png 높이 85% */
  .image-box.Detail-1 img[src="/image/mini_1.png"] {
    width: auto;
    height: 85%;
  }

  /* 2. image-box.Detail-4 내부 이미지 */
  .image-box.Detail-4 img {
    width: auto;
    height: 100%;
  }

  /* 3. 80_4.png 크기 조정 */
  .image-box.Detail-80l-4 img[src="/image/80_4.png"] {
    width: auto;
    height: 100%;
  }

  /* 4. 110_1.png 크기 조정 */
  .images-grid--110l .image-box.Detail-1 img[src="/image/110_1.png"] {
    width: auto;
    height: 110%;
  }

  /* section-tabs 모바일 레이아웃 */
  .section-tabs {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    max-width: 100%;
    height: 90px;
    border-radius: 0;
    justify-content: center;
    align-items: center;
  }

  .section-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: none;
    width: auto;
    min-width: 70px;
    padding: 4px 0px;
  }

  /* 옵션 섹션 이미지 조정 */
  .option-image-free,
  .option-image-sticker {
    width: auto !important;
    height: 80% !important;
    right: 0% !important;
    bottom: -50% !important;
    top: auto !important;
    transform: none !important;
  }
}