  
    /* 
       [SYSTEM RULE] 
       1. All Layout Components use 'main-layout-' prefix.
       2. Hero Carousel uses 'mc-' prefix.
       3. Promo Section uses 'ps-' prefix.
       4. Quick Icons uses 'qi-' prefix.
       5. Best Items uses 'bi-' prefix.
       6. Notice & Community uses 'nc-' prefix.
       7. Group Banner uses 'gb-' prefix.
       8. Time Sale uses 'ts-' prefix.
       9. Division Banner uses 'dv-' prefix.
    */

    :root {
      --ml-bg: #ffffff;
      --ml-fg: #151515;
      --ml-muted: #888888;
      --ml-border: #eeeeee;
      --ml-accent: #b63535;
      --ml-kakao: #fee500;
      --ml-max-width: 1440px;
      --ml-content-width: 1115px;
      --ml-font: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    }

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

    body {
      font-family: var(--ml-font);
      background: #fff;
      color: var(--ml-fg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ul,
    ol {
      list-style: none;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: 0.2s;
    }

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

    button {
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .container {
      max-width: var(--ml-content-width);
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }

    /* --- [LAYOUT] 1. Header (Isolated) --- */
    #main-layout-header-root {
      width: 100%;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .main-layout-topbanner {
      background: #000;
      color: #fff;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .main-layout-header-main {
      border-bottom: 1px solid var(--ml-border);
      height: 110px;
      display: flex;
      align-items: center;
      background: #fff;
    }

    .main-layout-header-container {
      max-width: var(--ml-max-width);
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }

    .main-layout-header-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .main-layout-search-trigger {
      cursor: pointer;
      display: flex;
      align-items: center;
      color: var(--ml-fg);
    }

    .main-layout-search-trigger svg {
      width: 24px;
      height: 24px;
    }

    .main-layout-search-rolling {
      height: 20px;
      overflow: hidden;
      width: 150px;
      position: relative;
    }

    .main-layout-rolling-wrap {
      transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .main-layout-rolling-item {
      height: 20px;
      font-size: 13px;
      font-weight: 700;
      color: var(--ml-fg);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .main-layout-rolling-item em {
      font-style: normal;
      color: var(--ml-accent);
      font-size: 11px;
    }

    .main-layout-logo {
      text-align: center;
    }

    .main-layout-logo a {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ml-fg);
    }

    .main-layout-toolbar {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 24px;
    }

    .main-layout-toolbar-item {
      cursor: pointer;
      display: flex;
      align-items: center;
      position: relative;
      font-size: 12px;
      font-weight: 700;
      color: var(--ml-muted);
    }

    .main-layout-toolbar-item svg {
      width: 24px;
      height: 24px;
      stroke-width: 1.5px;
      color: var(--ml-fg);
    }

    .main-layout-cart-count {
      position: absolute;
      top: -6px;
      right: -10px;
      background: var(--ml-fg);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      min-width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .main-layout-header-bottom {
      height: 54px;
      border-bottom: 1px solid var(--ml-border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: #fff;
    }

    .main-layout-category-toggle {
      position: absolute;
      left: 24px;
      width: 22px;
      height: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
    }

    .main-layout-category-toggle span {
      display: block;
      width: 100%;
      height: 1.5px;
      background: var(--ml-fg);
      transition: 0.3s;
    }

    .main-layout-category-toggle.is-active span:nth-child(1) {
      transform: translateY(6.25px) rotate(45deg);
    }

    .main-layout-category-toggle.is-active span:nth-child(2) {
      opacity: 0;
    }

    .main-layout-category-toggle.is-active span:nth-child(3) {
      transform: translateY(-6.25px) rotate(-45deg);
    }

    .main-layout-gnb {
      display: flex;
      gap: 40px;
    }

    .main-layout-gnb li {
      font-size: 14px;
      font-weight: 700;
      color: var(--ml-fg);
      cursor: pointer;
    }

    .main-layout-gnb li:hover {
      color: var(--ml-accent);
    }

    /* --- [LAYOUT] Search Layer --- */
    #main-layout-search-root {
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.98);
      z-index: 2000;
      visibility: hidden;
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 80px;
      backdrop-filter: blur(20px);
    }

    #main-layout-search-root.is-active {
      visibility: visible;
      opacity: 1;
    }

    .main-layout-search-close {
      position: absolute;
      top: 40px;
      right: 40px;
      font-size: 40px;
      cursor: pointer;
      color: var(--ml-fg);
      background: none;
      border: none;
      font-weight: 200;
    }

    .main-layout-search-form {
      width: 100%;
      max-width: 800px;
      border-bottom: 2px solid var(--ml-fg);
      padding: 10px 0;
      margin-bottom: 60px;
      display: flex;
      align-items: center;
    }

    .main-layout-search-form input {
      flex: 1;
      border: none;
      font-size: 32px;
      font-weight: 700;
      outline: none;
      background: transparent;
      color: var(--ml-fg);
    }

    .main-layout-search-form input::placeholder {
      color: #ccc;
    }

    .main-layout-search-form svg {
      color: var(--ml-fg);
    }

    .main-layout-search-suggestions {
      width: 100%;
      max-width: 800px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .main-layout-search-suggestions h4 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 25px;
      color: var(--ml-fg);
      letter-spacing: 0.05em;
    }

    .main-layout-search-suggestions p {
      font-size: 14px;
      color: var(--ml-muted);
    }

    .main-layout-search-suggestions ol {
      font-weight: 700;
      line-height: 2.5;
      font-size: 15px;
      color: var(--ml-fg);
    }

    /* Mega Menu Layer */
    #main-layout-mega-root {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      border-bottom: 1px solid var(--ml-border);
      z-index: 999;
      visibility: hidden;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      padding: 60px 0;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    }

    #main-layout-mega-root.is-active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }

    .main-layout-mega-container {
      max-width: var(--ml-content-width);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1.5fr 1fr 1fr;
      gap: 60px;
    }

    .main-layout-mega-col h4 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 24px;
    }

    .main-layout-mega-list li {
      font-size: 14px;
      color: #666;
      margin-bottom: 14px;
      cursor: pointer;
      transition: 0.2s;
    }

    .main-layout-mega-list li:hover {
      color: #000;
      font-weight: 700;
      transform: translateX(5px);
    }

    .main-layout-mega-banner {
      background: var(--ml-accent);
      color: #fff;
      padding: 50px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .main-layout-mega-banner .badge {
      background: #fff;
      color: #000;
      padding: 4px 15px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .main-layout-mega-banner h2 {
      font-size: 32px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    /* --- [COMPONENT] 2. Hero Carousel (mc-) --- */
    #od-main-carousel {
      position: relative;
      width: 100%;
      height: 85vh;
      min-height: 700px;
      overflow: hidden;
      background: #f9f9f9;
    }

    .mc-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .mc-item {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .mc-media {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .mc-media img,
    .mc-media iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: none;
    }

    .mc-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.15);
      z-index: 2;
    }

    .mc-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .mc-text-box {
      max-width: 700px;
      color: #fff;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mc-item.is-active .mc-text-box {
      opacity: 1;
      transform: translateY(0);
    }

    .mc-title {
      font-size: clamp(48px, 7vw, 90px);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 24px;
      text-transform: uppercase;
    }

    .mc-btn {
      display: inline-block;
      padding: 18px 50px;
      border: 1px solid #fff;
      color: #fff;
      font-weight: 800;
      font-size: 14px;
    }

    .mc-btn:hover {
      background: #fff;
      color: #000;
    }

    .mc-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      opacity: 0;
      transition: 0.4s;
      border: none;
    }

    #od-main-carousel:hover .mc-arrow {
      opacity: 1;
    }

    .mc-arrow:hover {
      background: #fff;
      color: #000;
    }

    .mc-arrow--prev {
      left: 0;
    }

    #od-main-carousel:hover .mc-arrow--prev {
      left: 40px;
    }

    .mc-arrow--next {
      right: 0;
    }

    #od-main-carousel:hover .mc-arrow--next {
      right: 40px;
    }

    .mc-pagination {
      position: absolute;
      bottom: 60px;
      right: 50px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 30px;
      color: #fff;
      opacity: 0;
      transition: 0.4s;
    }

    #od-main-carousel:hover .mc-pagination {
      opacity: 1;
    }

    .mc-counter {
      font-size: 14px;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mc-counter .current {
      font-size: 28px;
    }

    .mc-progress {
      width: 150px;
      height: 2px;
      background: rgba(255, 255, 255, 0.2);
      position: relative;
    }

    .mc-progress-bar {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background: #fff;
      width: 0%;
    }

    .mc-play-toggle {
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    /* --- [COMPONENT] 3. Quick Icons (qi-) --- */
    #od-quick-icons {
      padding: 80px 0 60px;
      background: #fff;
    }

    .qi-list {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 15px;
      text-align: center;
    }

    .qi-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: 0.3s;
    }

    .qi-item:hover {
      transform: translateY(-5px);
    }

    .qi-icon {
      width: 85px;
      height: 85px;
      border-radius: 50%;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: 0.3s;
    }

    .qi-icon img {
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    .qi-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--ml-fg);
    }

    /* --- [COMPONENT] 4. Promo Section (ps-) --- */
    #od-promo-slider {
      padding: 40px 0 60px;
      background: #fff;
      overflow: hidden;
    }

    .ps-viewport-container {
      position: relative;
    }

    .ps-banner-area {
      position: relative;
    }

    .ps-viewport {
      overflow: hidden;
      margin: 0 -10px;
      padding: 0 10px;
    }

    .ps-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ps-slide {
      flex: 0 0 calc(50% - 20px);
      margin: 0 10px;
      box-sizing: border-box;
    }

    .ps-item {
      border-radius: 20px;
      padding: 45px 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: 0.3s;
      height: 100%;
    }

    .ps-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    }

    .ps-item.timer {
      background: #f0f4f4;
    }

    .ps-item.shipping {
      background: #fcf2f4;
    }

    .ps-item.vip {
      background: #f9f0f4;
    }

    .ps-item.weekend {
      background: #f0f4f8;
    }

    .ps-text {
      z-index: 2;
      max-width: 65%;
    }

    .ps-text h3 {
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 12px;
      color: #111;
      letter-spacing: -0.04em;
    }

    .ps-text p {
      font-size: 15px;
      color: #555;
      font-weight: 600;
    }

    .ps-icon {
      width: 140px;
      height: 140px;
      object-fit: contain;
      transition: transform 0.4s;
      z-index: 2;
    }

    .ps-item:hover .ps-icon {
      transform: scale(1.1);
    }

    .ps-item::before {
      content: '';
      position: absolute;
      right: -20px;
      top: -20px;
      width: 180px;
      height: 180px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      z-index: 1;
    }

    .ps-arrow-wrapper {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
      padding: 0 10px;
    }

    .ps-arrow {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      color: #111;
      transition: 0.3s;
      opacity: 0;
    }

    #od-promo-slider:hover .ps-arrow {
      opacity: 1;
    }

    .ps-arrow:hover {
      background: #fff;
      color: var(--ml-accent);
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .ps-arrow svg {
      width: 32px;
      height: 32px;
    }

    .ps-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 35px;
    }

    .ps-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e0e0e0;
      cursor: pointer;
      transition: 0.3s;
    }

    .ps-dot.is-active {
      width: 24px;
      background: var(--ml-accent);
      border-radius: 4px;
    }

    /* --- [COMPONENT] 5. Best Items (bi-) --- */
    #od-best-items {
      padding: 60px 0;
      background: #fff;
    }

    .bi-title-area {
      text-align: center;
      margin-bottom: 60px;
    }

    .bi-title-area h2 {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .bi-title-area p {
      font-size: 15px;
      color: var(--ml-muted);
    }

    .bi-viewport-container {
      position: relative;
    }

    .bi-viewport {
      overflow: hidden;
      margin: 0 -10px;
      padding: 0 10px;
    }

    .bi-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .bi-slide {
      flex: 0 0 calc(25% - 20px);
      margin: 0 10px;
      box-sizing: border-box;
    }

    .bi-item {
      cursor: pointer;
      position: relative;
      height: 100%;
      transition: 0.3s;
    }

    .bi-thumb {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #f8f8f8;
      aspect-ratio: 1 / 1.3;
      margin-bottom: 20px;
    }

    .bi-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .bi-item:hover .bi-thumb img {
      transform: scale(1.08);
    }

    .bi-rank {
      position: absolute;
      top: 15px;
      left: 15px;
      width: 34px;
      height: 34px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      z-index: 5;
    }

    .bi-rank.top {
      background: var(--ml-accent);
    }

    .bi-actions {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      display: flex;
      gap: 8px;
      transform: translateY(100%);
      transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      z-index: 10;
      opacity: 0;
    }

    .bi-item:hover .bi-actions {
      transform: translateY(0);
      opacity: 1;
    }

    .bi-action-btn {
      flex: 1;
      height: 44px;
      background: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .bi-action-btn:hover {
      background: var(--ml-fg);
      color: #fff;
    }

    .bi-action-btn svg {
      width: 18px;
      height: 18px;
      margin-right: 6px;
    }

    .bi-info {
      text-align: left;
    }

    .bi-info .brand {
      font-size: 12px;
      font-weight: 800;
      color: var(--ml-muted);
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .bi-info .name {
      font-size: 16px;
      font-weight: 600;
      color: #111;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      height: 2.4em;
      line-height: 1.2;
    }

    .bi-price {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .bi-price .sale {
      font-size: 18px;
      font-weight: 900;
      color: var(--ml-fg);
    }

    .bi-price .original {
      font-size: 14px;
      color: #bbb;
      text-decoration: line-through;
    }

    .bi-price .discount {
      font-size: 16px;
      font-weight: 900;
      color: var(--ml-accent);
    }

    .bi-badges {
      display: flex;
      gap: 4px;
      margin-top: 12px;
    }

    .bi-badge {
      font-size: 10px;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .bi-badge.new {
      background: #e8f5e9;
      color: #2e7d32;
    }

    .bi-badge.best {
      background: #fff3e0;
      color: #ef6c00;
    }

    /* Best Pagination (Dots) */
    .bi-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 45px;
    }

    .bi-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e0e0e0;
      cursor: pointer;
      transition: 0.3s;
    }

    .bi-dot.is-active {
      width: 24px;
      background: var(--ml-accent);
      border-radius: 4px;
    }

    /* Best Slider Controls */
    .bi-arrow-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0;
      padding-top: calc((100% / 4 - 20px) * 1.3 / 2 + 10px);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
      margin: 0 -10px;
    }

    .bi-arrow {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      color: #111;
      transition: 0.3s;
      opacity: 0;
      transform: translateY(-50%);
    }

    #od-best-items:hover .bi-arrow {
      opacity: 1;
    }

    .bi-arrow:hover {
      background: #fff;
      color: var(--ml-accent);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .bi-arrow svg {
      width: 32px;
      height: 32px;
    }

    /* --- [COMPONENT] 6. Notice & Community (nc-) REFINED --- */
    #od-notice-community {
      padding: 100px 0;
      background: #fff;
      border-top: 1px solid var(--ml-border);
    }

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

    .nc-col-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 2px solid #111;
      margin-bottom: 20px;
    }

    .nc-col-head h4 {
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #111;
    }

    .nc-col-head .plus-btn {
      width: 20px;
      height: 20px;
      position: relative;
      cursor: pointer;
    }

    .nc-col-head .plus-btn::before,
    .nc-col-head .plus-btn::after {
      content: '';
      position: absolute;
      background: #999;
      transition: 0.3s;
    }

    .nc-col-head .plus-btn::before {
      width: 100%;
      height: 1.5px;
      top: 50%;
      transform: translateY(-50%);
    }

    .nc-col-head .plus-btn::after {
      height: 100%;
      width: 1.5px;
      left: 50%;
      transform: translateX(-50%);
    }

    .nc-col:hover .nc-col-head .plus-btn::after {
      transform: translateX(-50%) rotate(90deg);
      opacity: 0;
    }

    /* Column 1: Notice List */
    .nc-notice-list li {
      border-bottom: 1px solid #f0f0f0;
    }

    .nc-notice-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      cursor: pointer;
      transition: 0.3s;
      position: relative;
    }

    .nc-notice-item .title-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      transition: 0.4s cubic-bezier(0.2, 0, 0, 1);
    }

    .nc-notice-item .title {
      font-size: 14px;
      font-weight: 600;
      color: #333;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 200px;
    }

    .nc-notice-item .date {
      font-size: 12px;
      color: #bbb;
      font-weight: 500;
    }

    .nc-notice-item .arrow {
      width: 0;
      height: 12px;
      opacity: 0;
      transition: 0.4s;
      overflow: hidden;
      display: flex;
      align-items: center;
      color: var(--ml-accent);
    }

    .nc-notice-item:hover .title-wrap {
      transform: translateX(15px);
    }

    .nc-notice-item:hover .title {
      color: var(--ml-accent);
    }

    .nc-notice-item:hover .arrow {
      width: 20px;
      opacity: 1;
      margin-right: 5px;
    }

    /* Column 2: Event Banner */
    .nc-event-banner {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 1 / 1.1;
      position: relative;
      cursor: pointer;
      background: #f0f0f0;
    }

    .nc-event-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nc-event-banner:hover img {
      transform: scale(1.08);
    }

    .nc-event-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      color: #fff;
    }

    .nc-event-overlay .cat {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
      opacity: 0.8;
    }

    .nc-event-overlay h5 {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .nc-event-overlay .more {
      font-size: 12px;
      font-weight: 700;
      border-bottom: 1.5px solid #fff;
      display: inline-block;
      padding-bottom: 2px;
      align-self: flex-start;
    }

    /* Column 3: SNS Grid */
    .nc-sns-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .nc-sns-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 1/1;
      cursor: pointer;
      background: #f5f5f5;
    }

    .nc-sns-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .nc-sns-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
      color: #fff;
    }

    .nc-sns-item:hover img {
      transform: scale(1.1);
    }

    .nc-sns-item:hover .nc-sns-overlay {
      opacity: 1;
    }

    .nc-sns-overlay svg {
      width: 24px;
      height: 24px;
    }

    /* --- [COMPONENT] Group Banner (gb-) Integrated from mpvzsvqf-m-3bn --- */
    .gb-section {
      padding: 100px 0;
      background: #fff;
      border-top: 1px solid var(--ml-border);
    }

    .gb-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      align-items: stretch;
    }

    .gb-slide-container {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
    }

    .gb-swiper {
      width: 100%;
      height: 100%;
    }

    .gb-swiper .swiper-slide {
      position: relative;
      height: 100%;
    }

    .gb-swiper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gb-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      height: 100%;
    }

    .gb-grid-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      background: #f9f9f9;
      height: 100%;
    }

    .gb-grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

    .gb-grid-item:hover img {
      transform: scale(1.08);
    }

    .gb-banner-desc {
      position: absolute;
      inset: 0;
      padding: 30px;
      display: flex;
      flex-direction: column;
      pointer-events: none;
      z-index: 2;
    }

    .gb-banner-desc.top-10 {
      justify-content: flex-start;
      padding-top: 40px;
    }

    .gb-banner-desc.bottom-20 {
      justify-content: flex-end;
      padding-bottom: 40px;
    }

    .gb-banner-desc.center {
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .gb-text-s3 {
      font-size: 13px;
      font-weight: 500;
      color: #888;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .gb-text-s6 {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.3;
      color: #111;
    }

    .gb-text-s8 {
      font-size: 28px;
      font-weight: 900;
      line-height: 1.2;
      color: #111;
    }

    .gb-text-s10 {
      font-size: 36px;
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
    }

    .gb-white {
      color: #fff !important;
    }

    .gb-gray {
      color: #888 !important;
    }

    .gb-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 25px;
      background: #049fd9;
      color: #fff;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 700;
      pointer-events: auto;
    }

    .gb-swiper .swiper-button-next,
    .gb-swiper .swiper-button-prev {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      color: #000;
      opacity: 0;
      transition: 0.3s;
    }

    .gb-swiper:hover .swiper-button-next,
    .gb-swiper:hover .swiper-button-prev {
      opacity: 1;
    }

    .gb-swiper .swiper-button-next::after,
    .gb-swiper .swiper-button-prev::after {
      font-size: 18px;
      font-weight: 900;
    }

    .gb-swiper .swiper-pagination-bullet {
      background: #fff;
      opacity: 0.5;
    }

    .gb-swiper .swiper-pagination-bullet-active {
      background: #fff;
      opacity: 1;
      width: 24px;
      border-radius: 4px;
    }

    /* --- [COMPONENT] 10. Product Review (pr-) --- */
    #od-product-review {
      padding: 100px 0;
      background: #f5f5f5;
      overflow: hidden;
    }

    .pr-title-area {
      margin-bottom: 50px;
      text-align: center;
    }

    .pr-title-area h2 {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .pr-viewport-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .pr-swiper {
      padding-bottom: 50px;
    }

    .pr-swiper .swiper-slide {
      width: calc(25% - 15px);
    }

    .pr-item {
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      transition: transform 0.3s;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .pr-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    }

    .pr-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1/1.2;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .pr-img-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.02);
      transition: 0.3s;
    }

    .pr-item:hover .pr-img-wrap::before {
      background: rgba(0, 0, 0, 0);
    }

    .pr-prd-thumb {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 64px;
      height: 64px;
      background: #fff;
      border-radius: 8px;
      padding: 4px;
      border: 1px solid var(--ml-border);
      z-index: 2;
      overflow: hidden;
    }

    .pr-prd-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .pr-info {
      padding: 25px 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .pr-title {
      font-size: 16px;
      font-weight: 800;
      color: #111;
      margin-bottom: 10px;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .pr-content {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
      margin-bottom: 20px;
      height: 42px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      flex-grow: 1;
    }

    .pr-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      border-top: 1px solid var(--ml-border);
      padding-top: 15px;
    }

    .pr-author {
      font-weight: 600;
      color: #333;
    }

    .pr-grade {
      color: var(--ml-accent);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 2px;
    }

    .pr-btn-wrap {
      text-align: center;
      margin-top: 20px;
    }

    .pr-btn-more {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 30px;
      border: 1px solid var(--ml-border);
      background: #fff;
      border-radius: 22px;
      font-size: 14px;
      font-weight: 700;
      color: #111;
      transition: 0.3s;
    }

    .pr-btn-more:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }

    .pr-scrollbar {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 4px;
      background: #e0e0e0;
      border-radius: 2px;
      z-index: 10;
    }

    .pr-swiper .swiper-scrollbar-drag {
      background: #111;
      border-radius: 2px;
    }

    .pr-arrow-wrapper {
      position: absolute;
      top: 50%;
      left: 20px;
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
    }

    .pr-arrow {
      width: 50px;
      height: 50px;
      background: #fff;
      border: 1px solid var(--ml-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: 0.3s;
      opacity: 0;
    }

    #od-product-review:hover .pr-arrow {
      opacity: 1;
    }

    .pr-arrow:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }

    @media (max-width: 1024px) {
      .pr-swiper .swiper-slide {
        width: calc(50% - 10px);
      }

      .pr-arrow-wrapper {
        display: flex;
      }
    }

    @media (max-width: 768px) {
      .pr-swiper .swiper-slide {
        width: calc(100% - 20px);
      }
    }

    /* --- [LAYOUT] Footer & Quick (Refined) --- */
    #main-layout-quick-root {
      position: fixed;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .main-layout-quick-item {
      width: 64px;
      height: 64px;
      background: #fff;
      border: 1px solid var(--ml-border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 10px;
      font-weight: 800;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
      transition: 0.2s;
      border-radius: 4px;
    }

    .main-layout-quick-item svg {
      width: 22px;
      height: 22px;
      margin-bottom: 4px;
    }

    .main-layout-quick-item.scroll-btn {
      background: #151515;
      color: #fff;
      border-color: #151515;
    }

    #main-layout-footer-root {
      border-top: 1px solid var(--ml-border);
      padding: 100px 0 60px;
      background: #fff;
      color: #151515;
    }

    .footer__top-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 80px;
      border-bottom: 1px solid var(--ml-border);
    }

    .footer__title {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 25px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .footer__cs-tel {
      font-size: 34px;
      font-weight: 900;
      color: #000;
      display: block;
      margin-bottom: 15px;
      letter-spacing: -0.02em;
    }

    .footer__cs-time {
      font-size: 14px;
      color: var(--ml-muted);
      line-height: 1.8;
      display: block;
    }

    .footer__cs-payment {
      display: inline-block;
      margin-top: 20px;
      font-size: 13px;
      color: var(--ml-muted);
      cursor: pointer;
      border: 1px solid var(--ml-border);
      padding: 8px 16px;
      border-radius: 20px;
      transition: 0.3s;
    }

    .footer__cs-payment:hover {
      background: #f9f9f9;
      color: #000;
    }

    .footer__legal {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer__legal-link {
      font-size: 14px;
      color: #666;
      transition: 0.3s;
    }

    .footer__legal-link:hover {
      color: #000;
      transform: translateX(5px);
    }

    .footer__legal-link--privacy {
      font-weight: 800;
      color: #000;
    }

    .footer__company {
      text-align: right;
    }

    .footer__logo {
      margin-bottom: 35px;
    }

    .footer__logo-item {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: 0.3em;
      color: #000;
    }

    .footer__info-wrap {
      font-size: 13px;
      color: var(--ml-muted);
      line-height: 2;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer__info {
      display: flex;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 15px;
    }

    .footer__info a {
      color: inherit;
    }

    .footer__info a:hover {
      color: #000;
      text-decoration: underline;
    }

    .footer__bottom-inner {
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer__copyright {
      font-size: 13px;
      color: #999;
    }

    .footer__copyright-name {
      color: #666;
      font-weight: 700;
    }

    .footer__support {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .footer__support-hosting {
      font-size: 12px;
      font-weight: 800;
      color: #ccc;
      letter-spacing: 0.2em;
    }

    .df-escrow {
      width: 44px;
      height: 44px;
      background: #f8f8f8;
      border-radius: 12px;
      cursor: pointer;
      border: 1px solid var(--ml-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 900;
      color: #bbb;
    }

    .df-escrow:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }

    .df-sns-icon {
      display: flex;
      gap: 12px;
      margin-top: 25px;
    }

    .df-sns-icon__item {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .df-sns-icon__item:hover {
      background: #000;
      color: #fff;
    }

    .df-sns-icon__item svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    @media (max-width: 1024px) {
      .footer__top-inner {
        grid-template-columns: 1fr 1fr;
      }

      .footer__company {
        grid-column: span 2;
        text-align: left;
      }

      .footer__info {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .footer__top-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer__company {
        grid-column: span 1;
      }

      .footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }


    /* --- [COMPONENT] 8. Time Sale (ts-) --- */
    #od-time-sale {
      padding: 100px 0;
      background: transparent;
      border-top: 1px solid var(--ml-border);
    }

    .ts-title-area {
      text-align: center;
      margin-bottom: 50px;
    }

    .ts-title-area h2 {
      font-size: 32px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    /* Animated Clock Icon */
    .ts-clock {
      position: relative;
      width: 44px;
      height: 44px;
      background: var(--ml-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ts-clock svg {
      width: 24px;
      height: 24px;
    }

    .ts-clock .hand {
      transform-origin: 12px 12px;
      animation: clock-rotate linear infinite;
    }

    .ts-clock .hour {
      animation-duration: 12s;
    }

    .ts-clock .minute {
      animation-duration: 2s;
    }

    @keyframes clock-rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .ts-title-area p {
      font-size: 15px;
      color: var(--ml-muted);
      margin-top: 10px;
    }

    .ts-viewport-container {
      position: relative;
    }

    .ts-swiper {
      padding-bottom: 60px;
      overflow: hidden;
    }

    .ts-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .ts-slide {
      flex: 0 0 calc(33.333% - 20px);
      margin: 0 10px;
      box-sizing: border-box;
    }

    .ts-item {
      position: relative;
      cursor: pointer;
      transition: 0.3s;
    }

    .ts-thumb {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #f8f8f8;
      aspect-ratio: 1 / 1.1;
      margin-bottom: 20px;
    }

    .ts-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s;
    }

    .ts-item:hover .ts-thumb img {
      transform: scale(1.05);
    }

    .ts-thumb .img-hover {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: 0.4s;
    }

    .ts-item:hover .ts-thumb .img-hover {
      opacity: 1;
    }

    /* Timer Style */
    .ts-timer-box {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      color: #fff;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--ml-font);
      z-index: 10;
      font-size: 14px;
      font-weight: 700;
    }

    .ts-timer-box .icon {
      width: 16px;
      height: 16px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    .ts-timer-box.ended {
      background: rgba(0, 0, 0, 0.4);
    }

    .ts-timer-box.upcoming {
      background: rgba(0, 88, 255, 0.7);
    }

    .ts-actions {
      position: absolute;
      top: 15px;
      right: 15px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transform: translateX(50px);
      opacity: 0;
      transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      z-index: 15;
    }

    .ts-item:hover .ts-actions {
      transform: translateX(0);
      opacity: 1;
    }

    .ts-action-btn {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: 0.2s;
      border: none;
      cursor: pointer;
    }

    .ts-action-btn:hover {
      background: var(--ml-accent);
      color: #fff;
    }

    .ts-action-btn svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .ts-info {
      text-align: left;
    }

    .ts-colorchips {
      display: flex;
      gap: 4px;
      margin-bottom: 12px;
    }

    .ts-colorchip {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .ts-name {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
      display: block;
    }

    .ts-summary {
      font-size: 13px;
      color: var(--ml-muted);
      margin-bottom: 12px;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .ts-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .ts-price-sale {
      font-size: 18px;
      font-weight: 800;
      color: #111;
    }

    .ts-price-original {
      font-size: 14px;
      color: #bbb;
      text-decoration: line-through;
    }

    .ts-discount {
      font-size: 18px;
      font-weight: 900;
      color: var(--ml-accent);
      margin-right: 4px;
    }

    .ts-review {
      margin-top: 10px;
      font-size: 12px;
      color: #999;
      font-weight: 600;
    }

    .ts-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .ts-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      transition: 0.3s;
      cursor: pointer;
    }

    .ts-dot.is-active {
      width: 24px;
      background: var(--ml-accent);
      border-radius: 4px;
    }

    .ts-arrow-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0;
      padding-top: calc((var(--ml-content-width) / 3 - 20px) * 1.1 / 2 + 10px);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 20;
      margin: 0 -25px;
    }

    .ts-arrow {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      opacity: 0;
      transition: 0.3s;
      transform: translateY(-50%);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    #od-time-sale:hover .ts-arrow {
      opacity: 1;
    }

    .ts-arrow:hover {
      background: #fff;
      color: var(--ml-accent);
      transform: translateY(-50%) scale(1.1);
    }

    .ts-arrow svg {
      width: 28px;
      height: 28px;
    }

    /* --- [COMPONENT] 9. Division Banner (dv-) --- */
    #od-div-banner {
      position: relative;
      width: 100%;
      height: 350px;
      background-image: url('/images/2ee864ca5bc7cca6102abddeaad8690d.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .dv-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .dv-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .dv-gap {
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }

    .dv-text-main {
      font-size: 56px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .dv-text-sub {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.6;
      opacity: 0.9;
    }

    .dv-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 20px 60px;
      border: 1px solid #fff;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      transition: 0.3s;
      margin-top: 15px;
    }

    .dv-btn:hover {
      background: #fff;
      color: #000;
    }

    /* --- [COMPONENT] 10. Additional Category (ac-) --- */
    #od-add-category {
      padding: 100px 0;
      background: #fff;
      border-top: 1px solid var(--ml-border);
    }

    .ac-title-area {
      text-align: center;
      margin-bottom: 60px;
    }

    .ac-title-area h2 {
      font-size: 32px;
      font-weight: 900;
      color: #111;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .ac-title-area p {
      font-size: 15px;
      color: var(--ml-muted);
      font-weight: normal;
      margin-top: 5px;
    }

    .ac-viewport-container {
      position: relative;
    }

    .ac-swiper {
      padding-bottom: 60px;
      overflow: hidden;
    }

    .ac-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ac-slide {
      flex: 0 0 calc(25% - 20px);
      margin: 0 10px;
      box-sizing: border-box;
    }

    .ac-item {
      position: relative;
      cursor: pointer;
      transition: 0.3s;
    }

    .ac-thumb {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #f8f8f8;
      aspect-ratio: 1 / 1.2;
      margin-bottom: 20px;
    }

    .ac-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s;
    }

    .ac-item:hover .ac-thumb img {
      transform: scale(1.05);
    }

    .ac-thumb .img-hover {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: 0.4s;
    }

    .ac-item:hover .ac-thumb .img-hover {
      opacity: 1;
    }

    .ac-actions {
      position: absolute;
      bottom: -85px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
      z-index: 10;
      transition: bottom 0.3s;
    }

    .ac-item:hover .ac-actions {
      bottom: 0;
    }

    .ac-action-btn {
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border: none;
    }

    .ac-action-btn:hover {
      background: #111;
      color: #fff;
      transform: translateY(-3px);
    }

    .ac-action-btn svg {
      width: 22px;
      height: 22px;
      stroke: #111;
      stroke-width: 1.5;
      fill: none;
      transition: 0.2s;
    }

    .ac-action-btn:hover svg {
      stroke: #fff;
    }

    .ac-info {
      text-align: left;
    }

    .ac-colorchips {
      display: flex;
      gap: 4px;
      margin-bottom: 12px;
    }

    .ac-colorchip {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .ac-name {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #111;
      display: block;
    }

    .ac-summary {
      font-size: 13px;
      color: var(--ml-muted);
      margin-bottom: 12px;
    }

    .ac-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 6px;
    }

    .ac-price-sale {
      font-size: 18px;
      font-weight: 800;
      color: #111;
    }

    .ac-price-original {
      font-size: 13px;
      color: #aaa;
      text-decoration: line-through;
    }

    .ac-discount {
      font-size: 18px;
      font-weight: 800;
      color: var(--ml-accent);
    }

    .ac-review {
      font-size: 12px;
      color: #999;
      font-weight: 500;
    }

    .ac-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .ac-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      transition: 0.3s;
      cursor: pointer;
    }

    .ac-dot.is-active {
      width: 24px;
      background: var(--ml-accent);
      border-radius: 4px;
    }

    /* --- [COMPONENT] 11. Monthly Benefits (mb-) --- */
    #od-monthly-benefits {
      padding: 100px 0;
      background: #fff;
      border-top: 1px solid var(--ml-border);
      overflow: hidden;
    }

    .mb-title-area {
      text-align: center;
      margin-bottom: 60px;
    }

    .mb-title-area h3 {
      font-size: 32px;
      font-weight: 900;
      color: #111;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .mb-title-area p {
      font-size: 15px;
      color: var(--ml-muted);
    }

    .mb-viewport-container {
      position: relative;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
    }

    .mb-swiper {
      overflow: visible !important;
    }

    .mb-slide {
      width: 55%;
      /* 너비를 55%로 조정하여 양옆 배너가 더 많이 보이도록 설정 (3열 강조) */
      margin: 0 10px;
      box-sizing: border-box;
      opacity: 0.2;
      /* 비활성 배너 투명도 강화 */
      transform: scale(0.85);
      /* 비활성 배너 크기 축소 강화 */
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      filter: blur(5px);
      will-change: transform, opacity, filter;
    }

    .mb-slide.swiper-slide-active {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
      z-index: 10;
    }

    .mb-item {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      aspect-ratio: 16 / 8;
      cursor: pointer;
      background: #f9f9f9;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .mb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .mb-item:hover img {
      transform: scale(1.05);
    }

    .mb-info {
      position: absolute;
      inset: 0;
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      color: #fff;
      transition: 0.4s;
      opacity: 0;
      transform: translateY(20px);
    }

    .mb-slide.swiper-slide-active .mb-info {
      opacity: 1;
      transform: translateY(0);
    }

    .mb-info h4 {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 12px;
      letter-spacing: -0.04em;
    }

    .mb-info em {
      font-style: normal;
      font-size: 16px;
      font-weight: 500;
      opacity: 0.9;
    }

    .mb-arrow-wrapper {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 100;
      margin: 0 5%;
    }

    .mb-arrow {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      opacity: 0;
      transition: 0.3s;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    #od-monthly-benefits:hover .mb-arrow {
      opacity: 1;
    }

    .mb-arrow:hover {
      background: #fff;
      color: var(--ml-accent);
      transform: scale(1.1);
    }

    .mb-arrow svg {
      width: 32px;
      height: 32px;
    }

    .mb-pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 50px;
    }

    .mb-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ddd;
      transition: 0.4s;
      cursor: pointer;
      border: none;
      display: inline-block;
    }

    .swiper-pagination-bullet-active.mb-dot {
      width: 32px;
      background: var(--ml-accent);
      border-radius: 5px;
    }

    @media (max-width: 1024px) {
      .main-layout-header-main {
        height: 70px;
      }

      .main-layout-header-container {
        grid-template-columns: 1fr auto 1fr;
        padding: 0 15px;
      }

      .main-layout-logo a {
        font-size: 24px;
        letter-spacing: 0.15em;
      }

      .main-layout-header-left {
        display: contents !important;
      }

      .main-layout-logo {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: center;
      }

      .main-layout-toolbar {
        display: none !important;
      }

      .main-layout-header-bottom,
      .mc-arrow,
      .main-layout-search-rolling {
        display: none;
      }

      .main-layout-hamburger {
        grid-column: 1;
        grid-row: 1;
        display: flex !important;
        justify-self: start;
        align-self: center;
      }

      .main-layout-search-trigger {
        grid-column: 3;
        grid-row: 1;
        display: flex !important;
        justify-self: end;
        align-self: center;
      }

      .qi-list {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 20px;
        margin: 0 -20px;
        padding: 0 20px 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .qi-list::-webkit-scrollbar {
        display: none;
      }

      .qi-item {
        flex: 0 0 auto;
        width: 75px;
        scroll-snap-align: start;
      }

      .ps-slide {
        flex: 0 0 calc(100% - 20px);
      }

      .bi-slide {
        flex: 0 0 calc(50% - 20px);
      }

      .nc-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .gb-wrapper {
        grid-template-columns: 1fr;
      }

      .gb-swiper {
        height: 400px;
      }

      /* Monthly Benefits Mobile Optimization */
      .mb-swiper {
        overflow: hidden !important;
      }

      .mb-slide {
        width: 100% !important;
        margin: 0 !important;
        opacity: 0 !important;
        transform: scale(1) !important;
        filter: blur(0) !important;
      }

      .mb-slide.swiper-slide-active {
        opacity: 1 !important;
      }

      .mb-item {
        border-radius: 15px !important;
        aspect-ratio: 16 / 10 !important;
      }

      .mb-info {
        padding: 25px !important;
      }

      .mb-info h4 {
        font-size: 24px !important;
      }

      .mb-info em {
        font-size: 14px !important;
      }

      #od-quick-icons,
      #od-promo-slider,
      #od-best-items,
      #od-notice-community,
      #od-new-items,
      #od-time-sale,
      #od-div-banner,
      #od-add-category,
      #od-monthly-benefits,
      #od-product-review,
      #od-instagram-section,
      .gb-section,
      #main-layout-footer-root {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
      }
    }

    /* [LAYOUT] Mobile Drawer Isolation - Refined */
    #main-layout-drawer-root {
      position: fixed;
      inset: 0;
      z-index: 5000;
      visibility: hidden;
      pointer-events: none;
      transition: 0.4s;
    }

    #main-layout-drawer-root.is-active {
      visibility: visible;
      pointer-events: auto;
    }

    #main-layout-drawer-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      opacity: 0;
      transition: 0.4s;
    }

    #main-layout-drawer-root.is-active #main-layout-drawer-overlay {
      opacity: 1;
    }

    #main-layout-drawer-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 85%;
      max-width: 340px;
      height: 100%;
      background: #fff;
      transform: translateX(-100%);
      transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      box-shadow: 20px 0 60px rgba(0, 0, 0, 0.15);
    }

    #main-layout-drawer-root.is-active #main-layout-drawer-content {
      transform: translateX(0);
    }

    .main-layout-drawer-user {
      padding: 40px 24px 30px;
      background: #fcfcfc;
      border-bottom: 1px solid var(--ml-border);
    }

    .main-layout-drawer-user-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--ml-fg);
    }

    .main-layout-drawer-user-btns {
      display: flex;
      gap: 8px;
    }

    .main-layout-drawer-user-btn {
      flex: 1;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      border: 1px solid var(--ml-border);
      border-radius: 4px;
      background: #fff;
    }

    .main-layout-drawer-user-btn.primary {
      background: var(--ml-fg);
      color: #fff;
      border-color: var(--ml-fg);
    }

    .main-layout-drawer-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 200;
      cursor: pointer;
      color: var(--ml-fg);
    }

    .main-layout-drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 30px 0;
    }

    .main-layout-drawer-list {
      display: flex;
      flex-direction: column;
    }

    .main-layout-drawer-list li {
      padding: 0 24px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s;
      color: var(--ml-fg);
      border-bottom: 1px solid #f9f9f9;
    }

    .main-layout-drawer-list li::after {
      content: '›';
      font-size: 20px;
      color: #ccc;
      font-weight: 400;
    }

    .main-layout-drawer-list li:hover {
      background: #f9f9f9;
      color: var(--ml-accent);
    }

    .main-layout-drawer-footer {
      padding: 24px;
      border-top: 1px solid var(--ml-border);
      background: #fff;
    }

    .main-layout-drawer-quick {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 20px;
    }

    .main-layout-drawer-quick-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      color: #666;
    }

    .main-layout-drawer-quick-item svg {
      width: 24px;
      height: 24px;
      color: var(--ml-fg);
    }

    .main-layout-drawer-info {
      display: flex;
      justify-content: center;
      gap: 15px;
      font-size: 12px;
      color: #999;
      font-weight: 500;
    }

    .main-layout-hamburger {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      color: var(--ml-fg);
      cursor: pointer;
      padding: 10px;
      margin-left: -10px;
    }

    .main-layout-hamburger svg {
      width: 24px;
      height: 24px;
    }
  
    
      /* --- [COMPONENT] 1. Group Banner (Based on ecudemo119600) --- */
      .gb-section {
        padding: 100px 0;
        background: #fff;
        border-top: 1px solid var(--ml-border);
      }

      .gb-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: stretch;
      }

      .gb-slide-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
      }

      .gb-swiper {
        width: 100%;
        height: 100%;
      }

      .gb-swiper .swiper-slide {
        position: relative;
        height: 100%;
      }

      .gb-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .gb-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: 100%;
      }

      .gb-grid-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        background: #f9f9f9;
        height: 100%;
      }

      .gb-grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
      }

      .gb-grid-item:hover img {
        transform: scale(1.08);
      }

      .gb-banner-desc {
        position: absolute;
        inset: 0;
        padding: 30px;
        display: flex;
        flex-direction: column;
        pointer-events: none;
        z-index: 2;
      }

      .gb-banner-desc.top-10 {
        justify-content: flex-start;
        padding-top: 40px;
      }

      .gb-banner-desc.bottom-20 {
        justify-content: flex-end;
        padding-bottom: 40px;
      }

      .gb-banner-desc.center {
        justify-content: center;
        align-items: center;
        text-align: center;
      }

      .gb-text-s3 {
        font-size: 13px;
        font-weight: 500;
        color: #888;
        text-transform: uppercase;
        margin-bottom: 8px;
      }

      .gb-text-s6 {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.3;
        color: #111;
      }

      .gb-text-s8 {
        font-size: 28px;
        font-weight: 900;
        line-height: 1.2;
        color: #111;
      }

      .gb-text-s10 {
        font-size: 36px;
        font-weight: 900;
        line-height: 1.1;
        color: #fff;
      }

      .gb-white {
        color: #fff !important;
      }

      .gb-gray {
        color: #888 !important;
      }

      .gb-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 25px;
        background: #049fd9;
        color: #fff;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        pointer-events: auto;
      }

      .gb-swiper .swiper-button-next,
      .gb-swiper .swiper-button-prev {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(4px);
        border-radius: 50%;
        color: #000;
        opacity: 0;
        transition: 0.3s;
      }

      .gb-swiper:hover .swiper-button-next,
      .gb-swiper:hover .swiper-button-prev {
        opacity: 1;
      }

      .gb-swiper .swiper-button-next::after,
      .gb-swiper .swiper-button-prev::after {
        font-size: 18px;
        font-weight: 900;
      }

      .gb-swiper .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
      }

      .gb-swiper .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1;
        width: 24px;
        border-radius: 4px;
      }
    
    
      /* --- [COMPONENT] New Items (ni-) --- */
      #od-new-items {
        padding: 100px 0;
        background: #fff;
        border-top: 1px solid var(--ml-border);
      }

      .ni-title-area {
        margin-bottom: 50px;
        text-align: center;
      }

      .ni-title-area h2 {
        font-size: 32px;
        font-weight: 900;
        color: #111;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
      }

      .ni-title-area p {
        font-size: 15px;
        color: var(--ml-muted);
        font-weight: normal;
        margin-top: 5px;
      }

      .ni-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }

      .ni-item {
        position: relative;
        cursor: pointer;
      }

      .ni-thumb {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 1/1.2;
        background: #f4f4f4;
        margin-bottom: 20px;
      }

      .ni-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
      }

      .ni-thumb .img-hover {
        position: absolute;
        inset: 0;
        opacity: 0;
      }

      .ni-item:hover .ni-thumb img {
        transform: scale(1.05);
      }

      .ni-item:hover .ni-thumb .img-hover {
        opacity: 1;
      }

      .ni-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #B9C69B;
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        padding: 4px 10px;
        border-radius: 4px;
        z-index: 5;
        text-transform: uppercase;
      }

      .ni-actions {
        position: absolute;
        bottom: -85px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        z-index: 10;
        transition: bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .ni-item:hover .ni-actions {
        bottom: 0;
      }

      .ni-action-btn {
        width: 44px;
        height: 44px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.2s;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .ni-action-btn:hover {
        background: #111;
        color: #fff;
        transform: translateY(-3px);
      }

      .ni-action-btn svg {
        width: 22px;
        height: 22px;
        stroke: #111;
        stroke-width: 1.5;
        fill: none;
        transition: 0.2s;
      }

      .ni-action-btn:hover svg {
        stroke: #fff;
      }

      .ni-info {
        text-align: left;
        padding: 0 5px;
      }

      .ni-colorchips {
        display: flex;
        gap: 4px;
        margin-bottom: 12px;
      }

      .ni-colorchip {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }

      .ni-name {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #111;
        display: block;
      }

      .ni-summary {
        font-size: 13px;
        color: var(--ml-muted);
        margin-bottom: 12px;
      }

      .ni-price-wrap {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 6px;
      }

      .ni-price-sale {
        font-size: 18px;
        font-weight: 800;
        color: #111;
      }

      .ni-price-original {
        font-size: 13px;
        color: #aaa;
        text-decoration: line-through;
      }

      .ni-discount {
        font-size: 18px;
        font-weight: 800;
        color: var(--ml-accent);
      }

      .ni-review {
        font-size: 12px;
        color: #999;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .ni-review svg {
        width: 12px;
        height: 12px;
        fill: #ccc;
      }

      .ni-bottom-banner {
        position: relative;
        margin-top: 60px;
        height: 160px;
        background: #f8f9fa;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 60px;
        cursor: pointer;
        transition: transform 0.4s;
      }

      .ni-bottom-banner:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
      }

      .ni-bottom-banner::before {
        content: '';
        position: absolute;
        right: -50px;
        top: -50px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        z-index: 1;
      }

      .ni-banner-rolling {
        position: relative;
        height: 70px;
        overflow: hidden;
        z-index: 2;
        flex: 1;
      }

      .ni-banner-track {
        transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
      }

      .ni-banner-item {
        height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .ni-banner-item .sub {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #888;
        margin-bottom: 6px;
        letter-spacing: -0.02em;
      }

      .ni-banner-item .title {
        display: block;
        font-size: 26px;
        font-weight: 800;
        color: #111;
        letter-spacing: -0.04em;
      }

      .ni-banner-dots {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
        z-index: 2;
        margin-left: 20px;
      }

      .ni-banner-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ddd;
        transition: 0.3s;
        cursor: pointer;
        position: relative;
      }

      .ni-banner-dot::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
      }

      .ni-banner-dot.is-active {
        height: 18px;
        background: var(--ml-accent);
        border-radius: 4px;
      }

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

        .ni-bottom-banner {
          padding: 0 30px;
          height: 140px;
          margin-top: 40px;
        }
      }
    
    
      #od-instagram-section {
        position: relative;
        padding: 100px 0;
        background: #fff;
        border-top: 1px solid var(--ml-border);
        overflow: hidden;
      }

      .in-wrap {
        position: relative;
        padding: 0 15% 0 45%;
        max-width: var(--ml-max-width);
        margin: 0 auto;
        box-sizing: border-box;
      }

      .in-title-area {
        position: absolute;
        top: 50%;
        left: 12%;
        transform: translateY(-50%);
        z-index: 10;
      }

      .in-title-area h2 {
        font-size: 64px;
        font-weight: 700;
        color: #000;
        letter-spacing: 0;
        line-height: 1.1;
        margin: 0;
      }

      .in-subtitle {
        padding-top: 10px;
        font-size: 28px;
        font-weight: 300;
        color: #222;
      }

      .in-subtitle a {
        transition: 0.3s;
      }

      .in-subtitle a:hover {
        color: var(--ml-accent);
      }

      .in-widget-inner {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
      }

      .in-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }

      .in-item {
        position: relative;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: 8px;
        background: #f8f8f8;
      }

      .in-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      }

      .in-item:hover img {
        transform: scale(1.1);
      }

      .in-dummy-link {
        position: absolute;
        inset: 0;
        z-index: 5;
        cursor: pointer;
      }

      @media (max-width: 1200px) {
        .in-wrap {
          padding: 0 5% 0 35%;
        }

        .in-title-area {
          left: 5%;
        }

        .in-title-area h2 {
          font-size: 48px;
        }

        .in-subtitle {
          font-size: 20px;
        }
      }

      @media (max-width: 768px) {
        #od-instagram-section {
          padding: 50px 0 !important;
        }

        .in-wrap {
          padding: 0 20px;
          display: flex;
          flex-direction: column;
        }

        .in-title-area {
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          text-align: center;
          margin-bottom: 40px;
        }

        .in-title-area h2 {
          font-size: 36px;
        }

        .in-subtitle {
          font-size: 16px;
          padding-top: 8px;
        }

        .in-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }
      }
    
