@media screen and (min-width: 701px) {
  .wb-home {
    --wb-ink: #11100d;
    --wb-paper: #ffffff;
    --wb-ivory: #f5f3ee;
    --wb-gold: #e8c46f;
    --wb-deep-gold: #b88a35;
    --wb-muted: #6f6b63;
    --wb-line: rgba(17, 16, 13, 0.14);
    overflow: hidden;
    color: var(--wb-ink);
    background: var(--wb-paper);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  }

  .wb-home *,
  .wb-home *::before,
  .wb-home *::after {
    box-sizing: border-box;
    letter-spacing: 0;
  }

  .wb-home h1,
  .wb-home h2,
  .wb-home h3,
  .wb-home p,
  .wb-home figure {
    margin: 0;
  }

  .wb-home h1,
  .wb-home h2,
  .wb-home h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
  }

  .wb-home img {
    display: block;
    width: 100%;
  }

  .wb-shell {
    width: calc(100% - 96px);
    max-width: 1480px;
    margin: 0 auto;
  }

  .wb-section {
    position: relative;
    padding: 112px 0;
  }

  .wb-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--wb-gold);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .wb-kicker::before {
    width: 42px;
    height: 1px;
    background: currentColor;
    content: '';
  }

  .wb-kicker--dark {
    color: var(--wb-deep-gold);
  }

  .wb-section-heading {
    margin-bottom: 48px;
  }

  .wb-section-heading h2 {
    max-width: 760px;
    margin-top: 14px;
    font-size: 50px;
    line-height: 1.08;
  }

  .wb-section-heading > p,
  .wb-section-heading--split > p {
    color: var(--wb-muted);
    font-size: 16px;
    line-height: 1.8;
  }

  .wb-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.65fr);
    align-items: end;
    gap: 80px;
  }

  .wb-section-heading--center {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .wb-section-heading--center .wb-kicker {
    justify-content: center;
  }

  .wb-section-heading--center > p:last-child {
    margin: 22px auto 0;
  }

  .wb-hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    color: var(--wb-paper);
    background: var(--wb-ink);
  }

  .wb-hero__swiper,
  .wb-hero__slide {
    width: 100%;
    height: 100%;
  }

  .wb-hero__slide {
    position: relative;
    overflow: hidden;
  }

  .wb-hero__image {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    transition: transform 7s ease;
  }

  .wb-hero__slide.swiper-slide-active .wb-hero__image {
    transform: scale(1.06);
  }

  .wb-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 4, 0.92) 0%, rgba(5, 5, 4, 0.76) 34%, rgba(5, 5, 4, 0.19) 67%, rgba(5, 5, 4, 0.18) 100%);
  }

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

  .wb-hero__content {
    width: 690px;
    max-width: 52%;
    padding-bottom: 34px;
  }

  .wb-hero h1 {
    margin-top: 24px;
    font-size: 68px;
    line-height: 1.03;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.3);
  }

  .wb-hero__copy {
    width: 620px;
    max-width: 90%;
    margin-top: 26px !important;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.75;
  }

  .wb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
  }

  .wb-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }

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

  .wb-button--gold {
    color: var(--wb-ink);
    background: var(--wb-gold);
  }

  .wb-button--gold:hover {
    color: var(--wb-paper);
    background: var(--wb-deep-gold);
  }

  .wb-button--ghost {
    color: var(--wb-paper);
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
  }

  .wb-button--ghost:hover {
    color: var(--wb-ink);
    border-color: var(--wb-paper);
    background: var(--wb-paper);
  }

  .wb-button--dark {
    color: var(--wb-paper);
    background: var(--wb-ink);
  }

  .wb-button--dark:hover {
    color: var(--wb-ink);
    background: var(--wb-gold);
  }

  .wb-hero__controls {
    position: absolute;
    right: 0;
    bottom: 44px;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .wb-hero__pagination,
  .wb-hero__nav {
    pointer-events: auto;
  }

  .wb-hero__pagination {
    display: flex;
    width: auto !important;
    gap: 8px;
  }

  .wb-hero__pagination .swiper-pagination-bullet {
    width: 38px;
    height: 2px;
    margin: 0 !important;
    border-radius: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.32);
  }

  .wb-hero__pagination .swiper-pagination-bullet-active {
    background: var(--wb-gold);
  }

  .wb-hero__nav {
    display: flex;
    gap: 8px;
  }

  .wb-icon-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--wb-paper);
    background: rgba(0, 0, 0, 0.22);
    font-size: 18px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .wb-icon-button:hover {
    color: var(--wb-ink);
    border-color: var(--wb-gold);
    background: var(--wb-gold);
  }

  .wb-hero__scroll {
    position: absolute;
    bottom: 42px;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  .wb-collections {
    background: var(--wb-ivory);
  }

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

  .wb-capability {
    display: flex;
    min-height: 102px;
    align-items: center;
    gap: 17px;
    padding: 22px 28px;
    border-right: 1px solid var(--wb-line);
  }

  .wb-capability:last-child {
    border-right: 0;
  }

  .wb-capability > i {
    color: var(--wb-deep-gold);
    font-size: 30px;
  }

  .wb-capability strong,
  .wb-capability span {
    display: block;
  }

  .wb-capability strong {
    font-size: 14px;
  }

  .wb-capability span {
    margin-top: 4px;
    color: var(--wb-muted);
    font-size: 12px;
  }

  .wb-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .wb-category-card {
    position: relative;
    min-width: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    color: var(--wb-paper);
    background: #27251f;
  }

  .wb-category-card > img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
  }

  .wb-category-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 7, 6, 0.88) 100%);
  }

  .wb-category-card__content {
    position: absolute;
    right: 22px;
    bottom: 19px;
    left: 22px;
  }

  .wb-category-card__content strong,
  .wb-category-card__content span {
    display: block;
  }

  .wb-category-card__content strong {
    padding-right: 34px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
  }

  .wb-category-card__content span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    text-transform: uppercase;
  }

  .wb-category-card > i {
    position: absolute;
    right: 19px;
    bottom: 28px;
    font-size: 19px;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .wb-category-card:hover > img {
    transform: scale(1.06);
  }

  .wb-category-card:hover > i {
    color: var(--wb-gold);
    transform: translate(2px, -2px);
  }

  .wb-factory {
    color: var(--wb-paper);
    background: var(--wb-ink);
  }

  .wb-section-heading--light > p,
  .wb-section-heading--light.wb-section-heading--split > p {
    color: rgba(255, 255, 255, 0.62);
  }

  .wb-factory-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 16px;
  }

  .wb-factory-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #2c2a25;
  }

  .wb-factory-card--1 {
    grid-column: span 7;
    grid-row: span 2;
  }

  .wb-factory-card--2 {
    grid-column: span 5;
    grid-row: span 2;
  }

  .wb-factory-card--3,
  .wb-factory-card--4,
  .wb-factory-card--5,
  .wb-factory-card--6 {
    grid-column: span 3;
  }

  .wb-factory-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
  }

  .wb-factory-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76) 100%);
    content: '';
    pointer-events: none;
  }

  .wb-factory-card figcaption {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }

  .wb-factory-card figcaption span {
    color: var(--wb-gold);
    font-size: 10px;
  }

  .wb-factory-card:hover img {
    filter: saturate(1.05);
    transform: scale(1.035);
  }

  .wb-products {
    background: var(--wb-paper);
  }

  .wb-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--wb-ink);
    font-size: 13px;
    font-weight: 700;
  }

  .wb-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 18px;
  }

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

  .wb-product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: var(--wb-ivory);
  }

  .wb-product-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .wb-product-card__image > span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    color: var(--wb-paper);
    background: var(--wb-ink);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .wb-product-card__body {
    position: relative;
    padding: 19px 4px 0;
  }

  .wb-product-card__body > p {
    color: var(--wb-deep-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .wb-product-card h3 {
    display: -webkit-box;
    height: 48px;
    margin-top: 9px;
    overflow: hidden;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .wb-product-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid var(--wb-line);
    color: var(--wb-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .wb-product-card:hover .wb-product-card__image img {
    transform: scale(1.04);
  }

  .wb-product-card:hover .wb-product-card__link {
    color: var(--wb-deep-gold);
  }

  .wb-lifestyle {
    padding-bottom: 0;
    background: var(--wb-ivory);
  }

  .wb-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wb-lifestyle-card {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: var(--wb-paper);
    background: var(--wb-ink);
  }

  .wb-lifestyle-card img {
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .wb-lifestyle-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
  }

  .wb-lifestyle-card__content {
    position: absolute;
    right: 42px;
    bottom: 42px;
    left: 42px;
  }

  .wb-lifestyle-card__content > p {
    color: var(--wb-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .wb-lifestyle-card h3 {
    margin-top: 10px;
    font-size: 30px;
    line-height: 1.2;
  }

  .wb-lifestyle-card__content > span {
    display: block;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.7;
    opacity: 0;
    transition: max-height 0.35s ease, margin 0.35s ease, opacity 0.35s ease;
  }

  .wb-lifestyle-card:hover img {
    transform: scale(1.035);
  }

  .wb-lifestyle-card:hover .wb-lifestyle-card__content > span {
    max-height: 90px;
    margin-top: 14px;
    opacity: 1;
  }

  .wb-process {
    background: var(--wb-paper);
  }

  .wb-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--wb-line);
    border-left: 1px solid var(--wb-line);
    list-style: none;
  }

  .wb-process-step {
    min-height: 270px;
    padding: 34px;
    border-right: 1px solid var(--wb-line);
    border-bottom: 1px solid var(--wb-line);
  }

  .wb-process-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .wb-process-step__top span {
    color: var(--wb-deep-gold);
    font-size: 11px;
    font-weight: 700;
  }

  .wb-process-step__top i {
    color: var(--wb-deep-gold);
    font-size: 30px;
  }

  .wb-process-step h3 {
    margin-top: 34px;
    font-size: 25px;
    line-height: 1.22;
  }

  .wb-process-step p {
    margin-top: 16px;
    color: var(--wb-muted);
    font-size: 13px;
    line-height: 1.75;
  }

  .wb-process__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 34px;
    padding: 34px 38px;
    color: var(--wb-ink);
    background: var(--wb-gold);
  }

  .wb-process__cta p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .wb-process__cta strong {
    display: block;
    margin-top: 4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 500;
  }

  #kf.container2 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 104px max(48px, calc((100% - 1480px) / 2)) 112px !important;
    color: #fff;
    background: #11100d;
  }

  #kf .online_cont {
    max-width: 1480px;
    margin: 0 auto !important;
  }

  #kf .online_cont .title {
    margin: 0 0 46px !important;
    text-align: left !important;
  }

  #kf .online_cont .title p:first-child {
    color: #fff !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 46px !important;
    font-weight: 500 !important;
    line-height: 1.12 !important;
    text-transform: none !important;
  }

  #kf .online_cont .title p:last-child {
    margin-top: 12px !important;
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 15px !important;
  }

  #kf .online_cont ul {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  #kf .online_cont ul li {
    min-width: 0;
    padding: 26px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.035);
  }

  #kf .online_cont ul li p:first-child {
    width: 118px !important;
    height: 118px !important;
    border: 2px solid #e8c46f;
    background: #f5f3ee !important;
    box-shadow: none !important;
  }

  #kf .online_cont ul li p:nth-child(2) {
    margin: 18px 0 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
  }

  #kf .online_cont ul li p:nth-child(3) {
    align-items: stretch !important;
    gap: 7px;
    flex-wrap: nowrap !important;
  }

  #kf .online_cont ul li p:nth-child(3) span {
    min-width: 0;
    padding: 8px 9px !important;
    border: 1px solid rgba(232, 196, 111, 0.48);
    border-radius: 2px !important;
    background: transparent !important;
    font-size: 10px !important;
  }

  #kf .online_cont ul li p:nth-child(3) span:nth-child(2) {
    margin-left: 0 !important;
  }

  #kf .online_cont ul li p:nth-child(3) span:hover {
    background: #b88a35 !important;
  }

  @media screen and (min-width: 1580px) {
    .wb-category-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }

  @media screen and (max-width: 1220px) {
    .wb-shell {
      width: calc(100% - 56px);
    }

    .wb-section {
      padding: 88px 0;
    }

    .wb-section-heading h2 {
      font-size: 42px;
    }

    .wb-hero h1 {
      font-size: 56px;
    }

    .wb-category-card__content strong {
      font-size: 19px;
    }

    .wb-factory-grid {
      grid-auto-rows: 190px;
    }

    .wb-lifestyle-card,
    .wb-lifestyle-card img {
      min-height: 520px;
    }

    .wb-lifestyle-card__content {
      right: 28px;
      bottom: 30px;
      left: 28px;
    }

    .wb-process-step {
      min-height: 250px;
      padding: 28px;
    }

    #kf.container2 {
      padding-right: 28px !important;
      padding-left: 28px !important;
    }

    #kf .online_cont ul li {
      padding: 22px 10px !important;
    }
  }

  @media screen and (max-width: 1000px) {
    .mobile_nav {
      display: none !important;
    }

    .garment-header-inner {
      grid-template-columns: 158px minmax(0, 1fr) auto !important;
      gap: 9px !important;
      padding: 0 16px;
    }

    .garment-logo {
      width: 145px !important;
      height: 58px !important;
    }

    .garment-nav {
      gap: 8px !important;
    }

    .garment-nav > a,
    .garment-nav .dropdown-trigger {
      font-size: 10px !important;
      white-space: nowrap;
    }

    .wb-section-heading--split {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .wb-category-grid,
    .wb-product-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wb-process-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 701px) {
  .wb-home *,
  .wb-home *::before,
  .wb-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
