/** Shopify CDN: Minification failed

Line 8:125 Unexpected "/"

**/
* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:    #000000;
  --white:    #ffffff;
  --grey-200: #f0f0f0;
  --grey-500: #828282;

  /* Typography */
  --f-items:      'Items', 'Times New Roman', Georgia, serif;
  --f-surt:       'Surt Normal', 'Helvetica Neue', Helvetica, sans-serif;
  --f-pre:        'Surt Normal', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

/* ─────────────────────────────────────────
   HERO (no background / title only)
───────────────────────────────────────── */
.lm-hero {
  width: 100%;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
}

.lm-hero__title {
  font-family: var(--f-items);
  font-size: 32px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}

/* ─────────────────────────────────────────
   SUBTITLE
───────────────────────────────────────── */
.lm-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lm-subtitle p {
  font-family: var(--f-surt);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.3px;
  color: var(--black);
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   MATERIAL LIST WRAPPER
───────────────────────────────────────── */
.lm-list {
  margin: 0 auto;
  padding: 0 0 100px;
  max-width: 1728px;
}

/* ─────────────────────────────────────────
   CATEGORY BLOCK
───────────────────────────────────────── */
.lm-category {
  margin-bottom: 105px;
}

/* inner: fluid, centered, 560–851px */
.lm-cat__inner {
  min-width: 560px;
  max-width: 851px;
  margin: 0 auto;
}

/* ─── Category Header ─── */
.lm-cat__hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 10px;
  white-space: nowrap;
}

.lm-cat__hd-left {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.lm-cat__name-en {
  font-family: var(--f-items);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
}

.lm-cat__name-ko {
  font-family: var(--f-pre);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.39px;
  color: var(--grey-500);
}

.lm-cat__more {
  font-family: var(--f-pre);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.36px;
  color: var(--grey-500);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.lm-cat__more:hover { color: var(--black); }

/* ─── Divider ─── */
.lm-divider {
  display: block !important;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

/* ─── Material Item (desktop: image LEFT, text RIGHT) ─── */
.lm-item {
  display: flex;
  flex-direction: row;
  gap: 23px;
  align-items: center;
  padding: 10px 0;
}

.lm-item__img {
  flex-shrink: 0;
  width: 292px;
  height: 292px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-item__img img {
  width: 292px;
  height: 292px;
  object-fit: cover;
  
  transform-origin: center;
  display: block;
}

.lm-item__body {
  flex: 1;
  min-width: 0;
  height: 271px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lm-item__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lm-item__type {
  font-family: var(--f-surt);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  color: var(--black);
}

.lm-item__desc {
  font-family: var(--f-pre);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.39px;
  color: var(--black);
}

.lm-item__desc p + p { margin-top: 0; }

.lm-item__care {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lm-item__care-label {
  font-family: var(--f-pre);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.36px;
  color: var(--grey-500);
}

.lm-item__care-list {
  font-family: var(--f-pre);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.36px;
  color: var(--grey-500);
  padding-left: 18px;
  list-style: disc;
}

.lm-item__care-list li { margin-bottom: 0; list-style: disc; }

/* ─────────────────────────────────────────
   FULL-WIDTH IMAGE SECTION
───────────────────────────────────────── */
.lm-fullimg {
  width: 100%;
    height: 100vh;
    max-height: 1144px;
    overflow: hidden;
    overflow: hidden;
}

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

/* ─────────────────────────────────────────
   MOBILE — ≤ 768px
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* hero */
  .lm-hero { padding: 60px 0; }
  .lm-hero__title {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0.36px;
  }

  /* subtitle */
  .lm-subtitle {
    padding: 14px 20px;
  }
  .lm-subtitle p {
    font-family: var(--f-pre);
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.39px;
    white-space: normal;
  }

  /* category spacing */
  .lm-category { margin-bottom: 40px; }

  /* inner: release min-width, 11px side margins */
  .lm-cat__inner {
    min-width: unset;
    max-width: unset;
    margin: 0 11px;
    width: calc(100% - 22px);
  }

  /* category header title */
  .lm-cat__name-en {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0.36px;
  }

  /* item: stack vertically */
  .lm-item {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 10px;
  }

  /* image: Figma mobile 217×354 rotated → displays 354×217 */
  .lm-item__img {
    width: 100%;
    max-width: 354px;
    height: 217px;
  }

  .lm-item__img img {
    width: 217px;
    height: 354px;
    
  }

  /* body: full width, auto height */
  .lm-item__body {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 20px;
  }

  .lm-item__desc {
    line-height: 18px;
  }

  /* full-width image */
  .lm-fullimg { height: 300px; }
}
