/* ============================
       기본 리셋 & 공통 스타일
    ============================ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 68px;
    }

    body {
      font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
      color: #222;
      background: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

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

    /* ============================
       상단 배너 (공지)
    ============================ */
    .top-banner {
      background: #111;
      color: #ccc;
      text-align: center;
      font-size: 12px;
      padding: 6px 0;
      letter-spacing: 0.5px;
    }

    /* ============================
       헤더
    ============================ */
    .header {
      background: #0d0d1a;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 0 0 0;
      display: flex;
      align-items: center;
      height: 68px;
    }

    /* 햄버거 버튼 */
    .hamburger-btn {
      width: 56px;
      height: 68px;
      background: rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
      border: none;
    }

    .hamburger-btn span {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .hamburger-btn span i {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
    }

    /* 로고 */
    .logo {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 32px;
      line-height: 1;
      gap: 3px;
    }

    .logo-premium {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* 중앙 네비게이션 */
    .header-nav {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1;
      justify-content: flex-end;
      padding-right: 32px;
    }

    .header-nav a {
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 0 20px;
      height: 68px;
      display: flex;
      align-items: center;
      transition: color 0.2s;
      white-space: nowrap;
      text-transform: uppercase;
    }

    .header-nav a:hover {
      color: #c084fc;
    }

    /* 검색창 — 타원형, 오른쪽 */
    .header-search {
      display: flex;
      align-items: center;
      border: 1.5px solid #bbb;
      border-radius: 30px;
      padding: 0 6px 0 16px;
      height: 40px;
      width: 260px;
      flex-shrink: 0;
    }

    .header-search input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 13px;
      font-family: inherit;
      color: #333;
      background: transparent;
    }

    .header-search input::placeholder { color: #bbb; }

    .header-search button {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 17px;
      color: #555;
      padding: 4px 6px;
      display: flex;
      align-items: center;
    }

    /* 헤더 우측 아이콘 */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 20px 0 16px;
      flex-shrink: 0;
    }

    .header-action-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      font-size: 11px;
      color: #444;
      cursor: pointer;
      transition: color 0.2s;
      padding: 6px 10px;
    }

    .header-action-btn:hover { color: #7c3aed; }

    .header-action-btn svg,
    .header-action-btn .icon {
      font-size: 22px;
      line-height: 1;
    }

    .cart-badge {
      position: relative;
      display: inline-block;
    }

    .cart-badge .badge {
      position: absolute;
      top: -4px;
      right: -8px;
      background: #ef4444;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    /* ============================
       히어로 슬라이더
    ============================ */
    .hero-slider {
      position: relative;
      overflow: hidden;
      background: #0f0f1a;
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease;
    }

    .slide {
      min-width: 100%;
      position: relative;
    }

    /* 슬라이드 이미지 역할 — 배경색으로 표현 */
    .slide-bg {
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .slide-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 슬라이더 컨트롤 */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.45);
      color: #fff;
      border: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      transition: background 0.2s;
    }

    .slider-btn:hover {
      background: #7c3aed;
    }

    .slider-btn.prev { left: 18px; }
    .slider-btn.next { right: 18px; }

    .slider-dots {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: background 0.2s;
    }

    .slider-dot.active {
      background: #7c3aed;
      width: 22px;
      border-radius: 4px;
    }

    /* ============================
       서비스 카드 (슬라이드 형태)
    ============================ */
    .section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 48px 20px;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    /* 제목 + 부제목 한 줄 배치 */
    .section-title-wrap {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .section-title {
      font-size: 22px;
      font-weight: 800;
      color: #111;
    }

    .section-title span {
      color: #7c3aed;
    }

    .section-subtitle {
      font-size: 13px;
      color: #aaa;
      font-weight: 400;
    }

    .view-all {
      font-size: 13px;
      color: #7c3aed;
      font-weight: 600;
      border: 1px solid #7c3aed;
      padding: 6px 16px;
      border-radius: 20px;
      transition: all 0.2s;
    }

    .view-all:hover {
      background: #7c3aed;
      color: #fff;
    }

    /* ============================
       세팅 사례 — 화살표 슬라이더 (4개씩)
    ============================ */
    .portfolio-slider-wrap {
      position: relative;
    }

    .portfolio-overflow {
      overflow: hidden;
    }

    .portfolio-track {
      display: flex;
      gap: 14px;
      transition: transform 0.4s ease;
    }

    .portfolio-item {
      flex-shrink: 0;
      width: calc(25% - 11px);
      aspect-ratio: 1 / 1;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .portfolio-item-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      transition: transform 0.35s;
      overflow: hidden;
      background: #e8e4f4;
    }

    /* 세팅 사례 이미지 — 정중앙 꽉 채움 */
    .portfolio-item-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      font-size: 0;
    }

    .portfolio-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.25s;
      pointer-events: none;
      z-index: 1;
    }

    .portfolio-item:hover::after {
      background: rgba(255,255,255,0.08);
    }

    .portfolio-item:hover .portfolio-item-inner {
      transform: scale(1.05);
    }

    /* 하단 텍스트 오버레이 */
    .portfolio-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.72));
      color: #fff;
      padding: 28px 14px 12px;
    }

    .portfolio-caption .name {
      font-size: 12px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 3px;
    }

    .portfolio-caption .desc {
      font-size: 13px;
      font-weight: 600;
    }

    /* 슬라이더 화살표 */
    .pf-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: rgba(0,0,0,0.45);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .pf-arrow:hover { background: #7c3aed; }
    .pf-arrow.left  { left: -18px; }
    .pf-arrow.right { right: -18px; }

    /* TOP 버튼 */
    .top-btn {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 44px;
      height: 44px;
      background: #333;
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      z-index: 200;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* ============================
       상품 카테고리 섹션 (컴퓨터, 비디오...)
    ============================ */
    .product-section {
      background: #fafafa;
      padding: 48px 0;
    }

    .product-section-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .product-category-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .product-category-label {
      font-size: 24px;
      font-weight: 900;
      color: #111;
    }

    .product-event-badge {
      background: linear-gradient(135deg, #7c3aed, #a855f7);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
    }

    .product-grid {
      display: grid;
      grid-template-columns: 280px repeat(4, 1fr);
      gap: 14px;
      align-items: start;
    }

    /* 이벤트 배너 카드 */
    .event-banner-card {
      background: linear-gradient(160deg, #1a1a2e 0%, #4c1d95 60%, #7c3aed 100%);
      border-radius: 14px;
      padding: 28px 20px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 340px;
      position: relative;
      overflow: hidden;
    }

    .event-banner-card::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }

    .event-banner-year {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      font-weight: 500;
    }

    .event-banner-title {
      font-size: 22px;
      font-weight: 900;
      line-height: 1.3;
      margin-top: 8px;
    }

    .event-banner-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      margin-top: 6px;
    }

    .event-banner-icon {
      font-size: 60px;
      text-align: right;
      margin-top: 16px;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    }

    /* 상품 카드 */
    .product-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #eeebf8;
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
    }

    .product-card-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      background: #f0ecff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      color: #c4b5fd;
    }

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

    .product-card-body {
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-card-name {
      font-size: 13px;
      color: #333;
      line-height: 1.4;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      margin-bottom: 8px;
      flex: 1;
    }

    .product-card-price {
      font-size: 16px;
      font-weight: 800;
      color: #7c3aed;
      text-align: right;
      margin-top: auto;
    }

    /* ============================
       파트너 섹션 (세로 카드형)
    ============================ */
    .partners-section {
      background: #0d0d18;
      padding: 60px 0;
    }

    .partners-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .partners-title {
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      color: #ddd;
      margin-bottom: 36px;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
    }

    /* 세로 카드 */
    .partner-card {
      position: relative;
      aspect-ratio: 3 / 4;       /* 세로 비율 유지 */
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      background: #1e1e2e;       /* 이미지 없을 때 배경 */
    }

    /* 이미지 — <img> 태그를 넣으면 꽉 채움 */
    .partner-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.4s ease;
    }

    /* 이미지 없을 때 빈 자리 표시 */
    .partner-card-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444;
      font-size: 13px;
      font-style: italic;
    }

    /* 하단 그라디언트 오버레이 */
    .partner-card-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 40px 14px 16px;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.4)  55%,
        transparent      100%
      );
      backdrop-filter: blur(0px); /* 블러: 원하면 blur(4px) */
      transition: backdrop-filter 0.3s;
    }

    .partner-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.25s;
      pointer-events: none;
      z-index: 1;
    }

    .partner-card:hover::after {
      background: rgba(255,255,255,0.07);
    }

    .partner-card:hover img {
      transform: scale(1.04);
    }

    .partner-card:hover .partner-card-overlay {
      backdrop-filter: blur(0px);
    }

    /* 이름 텍스트 */
    .partner-card-name-ko {
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.5px;
      margin-bottom: 3px;
    }

    .partner-card-name-en {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* 파트너 카드 태그 (타원형 뱃지) */
    .partner-card-tags {
      display: flex;
      flex-wrap: nowrap;
      gap: 3px;
      margin-top: 5px;
      overflow: hidden;
    }

    .partner-card-tag {
      color: #fff;
      padding: 2px 6px;
      border-radius: 20px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0px;
      white-space: nowrap;
      flex: 1;
      text-align: center;
      min-width: 0;
    }

    .partner-card-tag.tag-portrait {
      background: linear-gradient(135deg, #7c3aed, #a855f7); /* 보라 */
    }

    .partner-card-tag.tag-ingame {
      background: linear-gradient(135deg, #0ea5e9, #38bdf8); /* 파랑 */
    }

    .partner-card-tag.tag-wallpaper {
      background: linear-gradient(135deg, #f59e0b, #fbbf24); /* 주황 */
    }

    /* 모바일 */
    @media (max-width: 768px) {
      .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .partner-card-name-ko { font-size: 13px; }
      .partner-card-name-en { font-size: 10px; }
    }

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

    /* ============================
       푸터 (컴팩트 + 여유)
    ============================ */
    .footer {
      background: #1a1a24;
      color: #aaa;
      padding: 0;
    }

    /* 상단 3-블록 contact 바 */
    .footer-contact-bar {
      border-bottom: 1px solid #2a2a38;
      padding: 36px 0;
    }

    .footer-contact-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .footer-contact-block {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 40px;
      border-right: 1px solid #2a2a38;
    }

    .footer-contact-block:first-child { padding-left: 0; }
    .footer-contact-block:last-child  { border-right: none; }

    .footer-contact-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #2a2a38;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .footer-contact-text h4 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .footer-contact-text p {
      font-size: 12px;
      color: #888;
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .footer-contact-link {
      font-size: 12px;
      color: #a78bfa;
      font-weight: 600;
      transition: color 0.2s;
    }

    .footer-contact-link:hover { color: #c4b5fd; }

    /* 중단 링크+소셜 바 */
    .footer-mid-bar {
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid #222230;
    }

    .footer-nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-nav-links a {
      font-size: 12.5px;
      color: #bbb;
      font-weight: 500;
      transition: color 0.2s;
      padding: 0 14px;
      border-right: 1px solid #3a3a4a;
      line-height: 1;
    }

    .footer-nav-links a:first-child { padding-left: 0; }
    .footer-nav-links a:last-child  { border-right: none; }
    .footer-nav-links a:hover { color: #fff; }

    /* 소셜 아이콘 */
    .footer-social-icons {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .footer-social-icons a {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: #2a2a38;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: #888;
      transition: background 0.2s, color 0.2s;
    }

    .footer-social-icons a:hover {
      background: #7c3aed;
      color: #fff;
    }

    /* 하단 주소 + 저작권 */
    .footer-bottom-bar {
      max-width: 1280px;
      margin: 0 auto;
      padding: 18px 40px 22px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-address {
      font-size: 11.5px;
      color: #666;
      line-height: 1.85;
    }

    .footer-address .sep { margin: 0 6px; color: #3a3a3a; }
    .footer-address strong { color: #888; }

    .footer-copy {
      font-size: 11px;
      color: #555;
      flex-shrink: 0;
      white-space: nowrap;
      margin-top: 4px;
    }

    /* 모바일 */
    @media (max-width: 768px) {
      .footer-contact-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
      .footer-contact-block { padding: 0; border-right: none; border-bottom: 1px solid #2a2a38; padding-bottom: 20px; }
      .footer-contact-block:last-child { border-bottom: none; padding-bottom: 0; }
      .footer-contact-bar { padding: 28px 0; }
      .footer-mid-bar { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 12px; }
      .footer-nav-links a { font-size: 11px; padding: 0 8px; }
      .footer-bottom-bar { flex-direction: column; padding: 14px 20px 20px; gap: 6px; }
    }

    /* ============================
       플로팅 퀵 메뉴
    ============================ */
    .quick-menu {
      position: fixed;
      right: 20px;
      bottom: 80px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 200;
    }

    .quick-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #e0d7ff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0,0,0,0.12);
      transition: all 0.2s;
    }

    .quick-btn:hover {
      background: #7c3aed;
      border-color: #7c3aed;
      transform: scale(1.1);
    }

    .quick-btn:hover .quick-label {
      color: #fff;
    }

    .quick-label {
      font-size: 8px;
      color: #888;
      margin-top: 2px;
    }

    .quick-btn.kakao {
      background: #FEE500;
      border-color: #FEE500;
    }

    .quick-btn.top-btn {
      background: #111;
      border-color: #111;
      color: #fff;
      font-size: 14px;
    }

    /* ============================
       방송세팅 추천 섹션
    ============================ */
    .recommend-section {
      background: linear-gradient(180deg, #f8f4ff 0%, #fff 100%);
      padding: 48px 0;
    }

    .recommend-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

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

    .recommend-card {
      background: #fff;
      border-radius: 16px;
      border: 2px solid #ede9fe;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
    }

    .recommend-card:hover {
      border-color: #7c3aed;
      box-shadow: 0 8px 28px rgba(124, 58, 237, 0.15);
      transform: translateY(-3px);
    }

    .recommend-card-img {
      width: 90px;
      height: 90px;
      border-radius: 10px;
      background: #f3e8ff;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      overflow: hidden;
    }

    .recommend-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .recommend-card-info {
      flex: 1;
      min-width: 0;
    }

    .recommend-card-brand {
      font-size: 11px;
      color: #999;
      margin-bottom: 4px;
    }

    .recommend-card-name {
      font-size: 13px;
      font-weight: 600;
      color: #222;
      line-height: 1.4;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      margin-bottom: 8px;
    }

    .recommend-card-price {
      font-size: 17px;
      font-weight: 900;
      color: #7c3aed;
    }

    /* ============================
       모바일 드로어 메뉴
    ============================ */
    .mobile-drawer {
      position: fixed;
      top: 0; left: 0;
      width: 280px;
      height: 100%;
      background: #fff;
      z-index: 1000;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      box-shadow: 4px 0 20px rgba(0,0,0,0.15);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid #eee;
      background: #000;
    }

    .drawer-logo {
      font-size: 16px;
      font-weight: 900;
      color: #fff;
    }

    .drawer-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      line-height: 1;
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
    }

    .drawer-nav a {
      padding: 13px 24px;
      font-size: 15px;
      color: #222;
      font-weight: 500;
      border-bottom: 1px solid #f5f5f5;
      transition: background 0.15s, color 0.15s;
    }

    .drawer-nav a:hover {
      background: #f5f0ff;
      color: #7c3aed;
    }

    .drawer-category {
      padding: 16px 24px 8px;
      font-size: 11px;
      font-weight: 700;
      color: #aaa;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    

    /* ============================
       태블릿 (1024px 이하)
    ============================ */
    @media (max-width: 1024px) {
      /* 헤더 */
      .header-nav { display: none; }

      /* 상품 그리드 */
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .event-banner-card { display: none; }

      /* 파트너 */
      .partners-grid { grid-template-columns: repeat(3, 1fr); }

      /* 푸터 */
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ============================
       모바일 (768px 이하)
    ============================ */
    @media (max-width: 768px) {
      /* 헤더 */
      .header-inner { height: 56px; }
      .hamburger-btn { width: 48px; height: 56px; }
      .logo { padding: 0 16px; }
      .logo-premium { font-size: 14px; }
      .header-nav { display: none; }

      /* 슬라이더 */
      .slide-bg { height: 220px; }
      .slide-bg > div[style*="font-size: 38px"] { font-size: 22px !important; }
      .slider-btn { width: 32px; height: 32px; font-size: 16px; }
      .slider-btn.prev { left: 8px; }
      .slider-btn.next { right: 8px; }

      /* 섹션 패딩 */
      .section { padding: 32px 16px; }

      /* 섹션 제목 */
      .section-title { font-size: 18px; }
      .section-subtitle { display: none; }
      .view-all { font-size: 12px; padding: 5px 12px; }

      /* 세팅 사례 — 2개씩 */
      .portfolio-item { width: calc(50% - 7px); }
      .portfolio-caption .desc { font-size: 12px; }
      .pf-arrow.left  { left: -12px; }
      .pf-arrow.right { right: -12px; }

      /* 방송세팅 추천 */
      .recommend-section { padding: 32px 0; }
      .recommend-inner { padding: 0 16px; }
      .recommend-grid { grid-template-columns: 1fr; gap: 12px; }
      .recommend-card { padding: 14px; }
      .recommend-card-img { width: 72px; height: 72px; font-size: 28px; }
      .recommend-card-price { font-size: 15px; }

      /* 상품 섹션 */
      .product-section { padding: 32px 0; }
      .product-section-inner { padding: 0 16px; }
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .product-category-label { font-size: 18px; }
      .product-card-img { height: 130px !important; font-size: 36px !important; }
      .product-card-body { padding: 10px; }
      .product-card-name { font-size: 12px; }
      .product-card-price { font-size: 14px; }

      /* 파트너 */
      .partners-section { padding: 40px 0; }
      .partners-inner { padding: 0 16px; }
      .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .partner-logo { height: 48px; padding: 10px; }
      .partner-logo span { font-size: 10px; }
      .partners-title { font-size: 15px; margin-bottom: 24px; }

      /* 푸터 */
      .footer { padding: 36px 0 20px; }
      .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 16px 16px 0; }
    }

    /* ============================
       소형 모바일 (480px 이하)
    ============================ */
    @media (max-width: 480px) {
      .logo-premium { font-size: 12px; }
      .slide-bg { height: 180px; }
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .partners-grid { grid-template-columns: repeat(2, 1fr); }
      .recommend-card-img { width: 60px; height: 60px; font-size: 24px; }
    }

    /* ============================
       상품 카드 슬라이더 (세팅사례 방식)
    ============================ */
    .prod-layout {
      display: flex;
      gap: 14px;
      align-items: stretch;
    }

    /* 왼쪽 이벤트 배너 — 고정 */
    .prod-layout .event-banner-card {
      flex-shrink: 0;
      width: 220px;
      min-height: 300px;
    }

    /* 오른쪽 슬라이더 영역 */
    .prod-slider-wrap {
      flex: 1;
      position: relative;
      min-width: 0;
    }

    .prod-overflow {
      overflow: hidden;
    }

    .prod-track {
      display: flex;
      gap: 14px;
      transition: transform 0.4s ease;
    }

    /* 카드 너비: 4개 기준 */
    .prod-track .product-card {
      flex-shrink: 0;
      width: calc(25% - 11px);
    }

    /* 슬라이더 화살표 */
    .prod-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: rgba(0,0,0,0.45);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .prod-arrow:hover { background: #7c3aed; }
    .prod-arrow.hidden { display: none; }
    .prod-arrow.left  { left: -18px; }
    .prod-arrow.right { right: -18px; }

    @media (max-width: 1024px) {
      .prod-layout .event-banner-card { display: none; }
      .prod-track .product-card { width: calc(50% - 7px); }
    }

    @media (max-width: 768px) {
      /* 프로필 카드: 너비 줄이고 높이를 제품 카드에 맞게 */
      .prod-layout .event-banner-card {
        display: block !important;
        width: 150px !important;
        min-height: unset !important;
        align-self: stretch;
      }
      .prod-layout .event-banner-card .partner-card-placeholder {
        min-height: unset !important;
        height: 100% !important;
        min-height: 160px !important;
      }
      .prod-track .product-card { width: calc(50% - 7px); }
      .prod-arrow.left  { left: -12px; }
      .prod-arrow.right { right: -12px; }
    }

    @media (max-width: 480px) {
      /* 세로 스택 전환: 프로필 위, 슬라이더 아래 */
      .prod-layout {
        flex-direction: column;
        gap: 12px;
      }
      .prod-layout .event-banner-card {
        width: 100% !important;
        min-height: unset !important;
        height: 140px !important;
        border-radius: 12px;
      }
      .prod-layout .event-banner-card .partner-card-placeholder {
        min-height: 140px !important;
        height: 140px !important;
      }
      /* 제품 카드 1개씩 표시 */
      .prod-track .product-card { width: calc(100% - 0px); }
    }
/* ============================================================
   취업 & 프리랜서 섹션
============================================================ */
.career-section {
  background: #2a1a4e;
  padding: 80px 40px;
  text-align: center;
}
.career-inner {
  max-width: 900px;
  margin: 0 auto;
}
.career-label {
  color: #c4a8f0;
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.career-title {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.2;
}
.career-desc {
  color: #c9b8e8;
  font-size: 15px;
  line-height: 1.8;
}
.career-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.career-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  cursor: pointer;
}
.career-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   수강 후기 섹션
============================================================ */
.review-section {
  background: #fdf8f3;
  padding: 70px 0 60px;
  overflow: hidden;
}
.review-section-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 20px;
}
.review-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.review-title {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}
.review-title-accent {
  color: #f97316;
}
.review-subtitle {
  font-size: 13px;
  color: #aaa;
}

/* --- 이미지 갤러리 (상단, 오른쪽 슬라이드) --- */
.review-gallery-track-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
.review-gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.review-gallery-item {
  width: 220px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8ddd0;
  flex-shrink: 0;
  position: relative;
}
.review-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-gallery-img[src=""] {
  display: none;
}
.review-gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  font-style: italic;
  background: #e8ddd0;
}
.review-gallery-img[src]:not([src=""]) + .review-gallery-placeholder {
  display: none;
}

/* --- 후기 카드 (하단, 왼쪽 슬라이드) --- */
.review-cards-track-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
.review-cards-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.review-card {
  width: 300px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  font-size: 26px;
  width: 40px;
  height: 40px;
  background: #fff3e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 14px;
  color: #222;
}
.review-role {
  font-size: 12px;
  color: #999;
}
.review-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
  flex: 1;
}
.review-period {
  font-size: 13px;
  font-weight: 700;
  color: #f97316;
  border-top: 1px solid #f0e8e0;
  padding-top: 12px;
  margin-top: 4px;
}

/* --- 더보기 버튼 --- */
.review-more-btn-wrap {
  text-align: center;
}
.review-more-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #f97316;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.review-more-btn:hover {
  background: #ea6c0a;
}

/* --- 슬라이드 애니메이션 --- */
@keyframes slideRight {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideLeft {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.review-slide-right {
  animation: slideRight 30s linear infinite;
}
.review-slide-left {
  animation: slideLeft 25s linear infinite;
}
.review-gallery-track-wrap:hover .review-slide-right,
.review-cards-track-wrap:hover .review-slide-left {
  animation-play-state: paused;
}

/* 모바일 */
@media (max-width: 768px) {
  .career-title { font-size: 26px; }
  .career-btn { padding: 11px 22px; font-size: 13px; }
  .review-title { font-size: 22px; }
  .review-gallery-item { width: 160px; height: 220px; }
  .review-card { width: 250px; }
}
