@media (min-width: 701px) {
  .chinee-home-pc {
    --ch-blue-dark: #0b3f91;
    --ch-blue: #176edb;
    --ch-blue-light: #69b3e5;
    --ch-ink: #101828;
    --ch-soft: #f4f8fc;
    --ch-line: #dce6f1;
    overflow: hidden;
    background: #fff;
    color: var(--ch-ink);
    font-family: Poppins, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .chinee-home-pc,
  .chinee-home-pc *,
  .chinee-home-pc *::before,
  .chinee-home-pc *::after {
    box-sizing: border-box;
  }

  .chinee-home-pc a {
    text-decoration: none;
  }

  .chinee-home-pc figure,
  .chinee-home-pc h1,
  .chinee-home-pc h2,
  .chinee-home-pc h3,
  .chinee-home-pc p {
    margin-top: 0;
  }

  .ch-home-shell {
    width: min(calc(100% - 60px), 1500px);
    margin-right: auto;
    margin-left: auto;
  }

  .ch-section {
    padding: 82px 0 88px;
  }

  .ch-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--ch-blue);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .ch-eyebrow i {
    font-size: 19px;
  }

  .ch-eyebrow--light {
    color: #a9d7ff;
  }

  .ch-section-heading {
    margin-bottom: 36px;
  }

  .ch-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    align-items: end;
    gap: 56px;
  }

  .ch-section-heading h2,
  .ch-use__content h2 {
    margin-bottom: 0;
    color: var(--ch-ink);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .ch-section-heading > p,
  .ch-section-heading--split > p {
    margin-bottom: 2px;
    color: #5e6b7c;
    font-size: 16px;
    line-height: 1.75;
  }

  .ch-section-heading--light h2 {
    color: #fff;
  }

  .ch-section-heading--light > p {
    color: #b6c8dc;
  }

  .ch-section-heading--center {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 54px;
    margin-left: auto;
    text-align: center;
  }

  .ch-section-heading--center .ch-eyebrow {
    justify-content: center;
  }

  .ch-section-heading--center > p:last-child {
    max-width: 650px;
    margin: 18px auto 0;
  }

  .ch-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }

  .ch-button i {
    font-size: 18px;
  }

  .ch-button:hover {
    transform: translateY(-2px);
  }

  .ch-button--primary {
    background: var(--ch-blue);
    color: #fff;
  }

  .ch-button--primary:hover {
    background: #0f5fc5;
    color: #fff;
  }

  .ch-button--ghost {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(12, 28, 51, 0.2);
    color: #fff;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .ch-button--ghost:hover {
    border-color: #fff;
    background: #fff;
    color: var(--ch-blue-dark);
  }

  .ch-button--light {
    background: #fff;
    color: var(--ch-blue-dark);
  }

  .ch-button--light:hover {
    background: #eaf4ff;
    color: var(--ch-blue-dark);
  }

  .ch-hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    background: #07182e;
  }

  .ch-hero__image,
  .ch-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .ch-hero__image {
    object-fit: cover;
    object-position: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
    animation: ch-hero-image-in 1.8s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }

  .ch-hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 19, 41, 0.9) 0%, rgba(5, 28, 58, 0.78) 40%, rgba(6, 34, 69, 0.58) 72%, rgba(5, 24, 49, 0.48) 100%),
      linear-gradient(0deg, rgba(3, 17, 36, 0.52) 0%, rgba(3, 17, 36, 0.08) 46%, rgba(3, 17, 36, 0.26) 100%);
  }

  @keyframes ch-hero-image-in {
    from {
      opacity: 0.72;
      transform: scale(1.045);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes ch-hero-copy-in {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes ch-hero-scroll-in {
    from {
      opacity: 0;
      transform: translate(-50%, 18px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }

  .ch-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    padding-top: 74px;
  }

  .ch-hero__copy {
    width: 48%;
    max-width: 690px;
  }

  .ch-hero__copy > .ch-eyebrow,
  .ch-hero__copy > h1,
  .ch-hero__copy > .ch-hero__summary,
  .ch-hero__copy > .ch-hero__actions,
  .ch-hero__scroll {
    opacity: 0;
    animation: ch-hero-copy-in 0.78s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }

  .ch-hero__copy > .ch-eyebrow {
    animation-delay: 0.12s;
  }

  .ch-hero__copy > h1 {
    animation-delay: 0.24s;
  }

  .ch-hero__copy > .ch-hero__summary {
    animation-delay: 0.38s;
  }

  .ch-hero__copy > .ch-hero__actions {
    animation-delay: 0.52s;
  }

  .ch-hero__scroll {
    animation-name: ch-hero-scroll-in;
    animation-delay: 0.68s;
  }

  .ch-hero h1 {
    max-width: 680px;
    margin-bottom: 25px;
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .ch-hero__summary {
    max-width: 635px;
    margin-bottom: 34px;
    color: #dce9f8;
    font-size: 17px;
    line-height: 1.76;
  }

  .ch-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .ch-hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 27px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  .ch-hero__scroll span {
    position: relative;
    display: block;
    width: 18px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px;
  }

  .ch-hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 2px;
    height: 6px;
    border-radius: 2px;
    background: #fff;
    transform: translateX(-50%);
  }

  .ch-categories {
    padding-top: 42px;
    background: var(--ch-soft);
    scroll-margin-top: 82px;
  }

  .ch-capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
    border-top: 1px solid var(--ch-line);
    border-bottom: 1px solid var(--ch-line);
  }

  .ch-capabilities div {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #314157;
    font-size: 14px;
    font-weight: 700;
  }

  .ch-capabilities div + div {
    border-left: 1px solid var(--ch-line);
  }

  .ch-capabilities i {
    color: var(--ch-blue);
    font-size: 23px;
    font-weight: 400;
  }

  .ch-category-grid {
    display: grid;
    gap: 16px;
  }

  .ch-category-grid.is-three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ch-category-grid.is-four-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ch-category-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: #15263e;
  }

  .ch-category-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .ch-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 24, 48, 0.7) 100%);
    transition: background 0.3s ease;
  }

  .ch-category-card__content {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 25px;
    color: #fff;
  }

  .ch-category-card__count,
  .ch-category-card__name,
  .ch-category-card__description,
  .ch-category-card__link {
    display: block;
  }

  .ch-category-card__count {
    margin-bottom: 7px;
    color: #b9d9f6;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .ch-category-card__name {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .ch-category-card__description {
    max-width: 410px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.35s ease, margin 0.35s ease, opacity 0.3s ease, transform 0.35s ease;
  }

  .ch-category-card__link {
    max-height: 0;
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .ch-category-card:hover .ch-category-card__image {
    transform: scale(1.045);
  }

  .ch-category-card:hover .ch-category-card__overlay {
    background: linear-gradient(180deg, rgba(7, 24, 48, 0.02) 20%, rgba(7, 41, 87, 0.79) 100%);
  }

  .ch-category-card:hover .ch-category-card__description {
    max-height: 62px;
    margin-top: 9px;
    opacity: 1;
    transform: translateY(0);
  }

  .ch-category-card:hover .ch-category-card__link {
    max-height: 28px;
    margin-top: 10px;
    opacity: 1;
    transform: translateY(0);
  }

  .ch-factory {
    position: relative;
    background: #081c35;
  }

  .ch-factory::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(23, 110, 219, 0.12), transparent 38%);
  }

  .ch-factory .ch-home-shell {
    position: relative;
  }

  .ch-factory-grid {
    display: grid;
    height: 620px;
    grid-template-columns: minmax(0, 1.36fr) minmax(0, 1fr);
    gap: 12px;
  }

  .ch-factory-grid__secondary {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ch-factory-card {
    position: relative;
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: #142b45;
  }

  .ch-factory-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
  }

  .ch-factory-card::after {
    content: '';
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(3, 15, 31, 0.9));
    pointer-events: none;
  }

  .ch-factory-card figcaption {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 17px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .ch-factory-card--main figcaption {
    right: 25px;
    bottom: 24px;
    left: 25px;
    font-size: 20px;
  }

  .ch-factory-card figcaption i {
    color: #8dcbff;
    font-size: 20px;
  }

  .ch-factory-card:hover img {
    transform: scale(1.025);
  }

  .ch-products {
    background: #fff;
  }

  .ch-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: var(--ch-blue-dark);
    font-size: 14px;
    font-weight: 700;
  }

  .ch-text-link i {
    font-size: 19px;
    transition: transform 0.2s ease;
  }

  .ch-text-link:hover i {
    transform: translateX(4px);
  }

  .ch-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .ch-product-card {
    min-width: 0;
  }

  .ch-product-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: var(--ch-soft);
  }

  .ch-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .ch-product-card__action {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--ch-blue-dark);
    font-size: 19px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  }

  .ch-product-card:hover .ch-product-card__media img {
    transform: scale(1.035);
  }

  .ch-product-card:hover .ch-product-card__action {
    opacity: 1;
    transform: translateY(0);
  }

  .ch-product-card__action:hover {
    background: var(--ch-blue);
    color: #fff;
  }

  .ch-product-card__body {
    padding: 17px 3px 0;
  }

  .ch-product-card__body p {
    margin-bottom: 7px;
    color: var(--ch-blue);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .ch-product-card__body h3 {
    display: -webkit-box;
    min-height: 48px;
    margin-bottom: 0;
    overflow: hidden;
    color: var(--ch-ink);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.42;
    letter-spacing: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ch-product-card__body h3 a {
    color: inherit;
  }

  .ch-product-card__body h3 a:hover {
    color: var(--ch-blue);
  }

  .ch-use {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(430px, 0.86fr);
    min-height: 650px;
    background: var(--ch-blue-dark);
  }

  .ch-use__media {
    min-width: 0;
    overflow: hidden;
  }

  .ch-use__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .ch-use__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px max(38px, calc((100vw - 1500px) / 2 + 30px)) 70px 64px;
    color: #fff;
    background: linear-gradient(145deg, #0b3f91 0%, #082d67 100%);
  }

  .ch-use__content h2 {
    max-width: 570px;
    margin-bottom: 22px;
    color: #fff;
  }

  .ch-use__content > p:not(.ch-eyebrow) {
    max-width: 580px;
    margin-bottom: 28px;
    color: #ccddf0;
    font-size: 16px;
    line-height: 1.74;
  }

  .ch-use__points {
    display: grid;
    width: 100%;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .ch-use__points > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .ch-use__points i {
    color: #91d0ff;
    font-size: 25px;
  }

  .ch-use__points span {
    color: #c5d7e9;
    font-size: 13px;
    line-height: 1.55;
  }

  .ch-use__points strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  .ch-process {
    background: var(--ch-soft);
  }

  .ch-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
  }

  .ch-process-list::before {
    content: '';
    position: absolute;
    top: 31px;
    right: 9%;
    left: 9%;
    height: 1px;
    background: #b9cfe6;
  }

  .ch-process-item {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
  }

  .ch-process-item__icon {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid #a9c7e8;
    border-radius: 50%;
    background: #fff;
    color: var(--ch-blue);
    box-shadow: 0 9px 24px rgba(11, 63, 145, 0.09);
    font-size: 25px;
  }

  .ch-process-item h3 {
    min-height: 46px;
    margin-bottom: 9px;
    color: var(--ch-ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .ch-process-item p {
    margin-bottom: 0;
    color: #647184;
    font-size: 13px;
    line-height: 1.65;
  }

  .ch-process__action {
    margin-top: 42px;
    text-align: center;
  }

  .garment-header {
    background: linear-gradient(180deg, rgba(5, 17, 35, 0.62), transparent);
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .garment-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: #dce6f1;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.09);
  }

  .garment-header-inner {
    width: min(calc(100% - 60px), 1500px);
    height: 98px;
  }

  .garment-header.is-scrolled .garment-header-inner {
    height: 82px;
  }

  .garment-nav > a,
  .dropdown-trigger {
    font-size: 14px;
    letter-spacing: 0;
  }

  .garment-nav > a::after,
  .dropdown-trigger::after {
    background: #69b3e5;
  }

  .dibu .footer-l > p {
    display: none !important;
  }

  .dibu .footer-l::after {
    content: 'Chinee Student Bag Co., Ltd. develops and manufactures custom bag programs with considered materials, construction and brand application for global buyers.';
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 14px;
    line-height: 1.65;
  }

  @media (max-width: 1500px) {
    .ch-hero h1 {
      font-size: 64px;
    }

    .ch-factory-grid {
      height: 570px;
    }

    .ch-section-heading h2,
    .ch-use__content h2 {
      font-size: 42px;
    }

    .ch-use {
      min-height: 610px;
    }

    .ch-use__content {
      padding-left: 48px;
    }
  }

  @media (max-width: 1180px) {
    .ch-home-shell,
    .garment-header-inner {
      width: min(calc(100% - 40px), 1500px);
    }

    .ch-hero h1 {
      font-size: 54px;
    }

    .ch-hero__copy {
      width: 52%;
    }

    .ch-factory-grid {
      height: 520px;
    }

    .ch-category-card__name {
      font-size: 21px;
    }

    .ch-product-grid {
      column-gap: 12px;
    }

    .ch-product-card__body h3 {
      font-size: 15px;
    }

    .ch-use {
      grid-template-columns: minmax(0, 1.15fr) minmax(410px, 0.85fr);
    }

    .ch-use__content {
      padding: 54px 30px 54px 38px;
    }

    .ch-process-list {
      gap: 16px;
    }

    .ch-process-item h3 {
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ch-hero__image,
    .ch-hero__copy > .ch-eyebrow,
    .ch-hero__copy > h1,
    .ch-hero__copy > .ch-hero__summary,
    .ch-hero__copy > .ch-hero__actions,
    .ch-hero__scroll {
      animation: none;
      opacity: 1;
      transform: none;
    }

    .ch-hero__scroll {
      transform: translateX(-50%);
    }
  }

  @supports not (aspect-ratio: 4 / 3) {
    .ch-category-card,
    .ch-product-card__media {
      height: 0;
      padding-top: 75%;
    }

    .ch-category-card__image,
    .ch-product-card__media img {
      position: absolute;
      inset: 0;
    }
  }
}
