:root {
  --ty-ink: #2b2925;
  --ty-muted: #6f6a61;
  --ty-paper: #f5f3f0;
  --ty-panel: #f1f0ed;
  --ty-line: #d9d5ce;
  --ty-gold: #9a7a3c;
  --ty-heading: clamp(25px, 2vw, 34px);
  --ty-body: .9375rem;
  --ty-small: .8125rem;
  --ty-shell: 1320px;
  --ty-font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --ty-serif: var(--ty-font-family);
  --ty-sans: var(--ty-font-family);
  --ty-ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ty-ink);
  background: var(--ty-paper);
  font-family: var(--ty-sans);
  font-size: var(--ty-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.ty-drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ty-shell { width: min(100% - 64px, var(--ty-shell)); margin-inline: auto; }
.ty-skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #111;
  background: #fff;
  border: 1px solid #111;
  transform: translateY(-180%);
  transition: transform .2s;
}
.ty-skip-link:focus { transform: translateY(0); }

/* Header */
.ty-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.ty-header-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 100px;
  gap: 28px;
}
.ty-brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: inherit;
  line-height: 1;
  letter-spacing: .11em;
  transition: color .25s ease;
}
.ty-brand span { font-size: 1.5rem; white-space: nowrap; }
.ty-brand small { margin-top: 9px; font-family: var(--ty-font-family); font-size: .65rem; letter-spacing: .32em; }
.ty-brand:hover, [data-brand]:hover { color: #d5b874; }
.ty-primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 52px); }
.ty-nav-link {
  position: relative;
  padding-block: 16px;
  font-family: var(--ty-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}
.ty-nav-link::after {
  position: absolute;
  right: 50%;
  bottom: 9px;
  left: 50%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: inset .25s ease;
}
.ty-nav-link:hover::after, .ty-nav-link:focus-visible::after { right: 0; left: 0; }
.ty-nav-category-wrap { position: relative; }
.ty-nav-category-trigger {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.ty-nav-category-trigger .material-icons { font-size: 17px; transition: transform .2s var(--ty-ease); }
.ty-nav-category-trigger[aria-expanded="true"] .material-icons { transform: rotate(180deg); }
.ty-nav-category-trigger[aria-expanded="true"]::after { right: 0; left: 0; }
.ty-nav-category-mega-menu {
  position: fixed;
  z-index: 70;
  top: var(--ty-mega-top, 108px);
  left: 50%;
  width: min(1040px, calc(100vw - 64px));
  max-height: calc(100vh - var(--ty-mega-top, 108px) - 24px);
  padding: 26px 32px 30px;
  overflow: auto;
  color: var(--ty-ink);
  background: rgba(248, 246, 242, .99);
  border: 1px solid var(--ty-line);
  box-shadow: 0 22px 48px rgba(21, 20, 18, .16);
  transform: translateX(-50%);
}
.ty-nav-category-mega-menu__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--ty-line);
}
.ty-nav-category-mega-menu__head h2 { margin: 0; font: 400 1.25rem/1.4 var(--ty-serif); letter-spacing: .09em; }
.ty-nav-category-mega-menu__head > a { color: var(--ty-muted); font-size: var(--ty-small); transition: color .2s var(--ty-ease); }
.ty-nav-category-mega-menu__head > a:hover,
.ty-nav-category-mega-menu__head > a:focus-visible { color: var(--ty-gold); outline: none; }
.ty-nav-category-mega-menu__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 28px; }
.ty-mega-category { min-width: 0; padding-block: 18px 16px; border-bottom: 1px solid var(--ty-line); }
.ty-mega-category h3 { margin: 0; font-size: .9rem; font-weight: 600; letter-spacing: .055em; }
.ty-mega-category h3 a,
.ty-mega-category-list a { transition: color .2s var(--ty-ease); }
.ty-mega-category h3 a:hover,
.ty-mega-category h3 a:focus-visible,
.ty-mega-category-list a:hover,
.ty-mega-category-list a:focus-visible { color: var(--ty-gold); outline: none; }
.ty-mega-category-list { padding: 9px 0 0; margin: 0; list-style: none; }
.ty-mega-category-list li { min-width: 0; }
.ty-mega-category-list a { display: inline-flex; min-height: 32px; align-items: center; color: var(--ty-muted); font-size: var(--ty-small); }
.ty-mega-category-list--level-3 { margin-top: 2px; padding: 2px 0 0 12px; border-left: 1px solid var(--ty-line); }
.ty-mega-category-list--level-3 a { min-height: 29px; font-size: .75rem; }
.ty-header-actions { display: flex; align-items: center; gap: 2px; }
.ty-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.ty-icon-button:hover, .ty-icon-button:focus-visible { color: inherit; background: rgba(255,255,255,.09); outline: none; }
.ty-icon-button .material-icons { font-size: 25px; }
.ty-header-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ty-icon-button b {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  place-items: center;
  color: #fff;
  background: var(--ty-gold);
  border-radius: 9px;
  font: 700 .65rem/1 sans-serif;
}
.ty-menu-trigger { display: none; }
.ty-cart { position: relative; }
.ty-cart-detail {
  position: absolute;
  z-index: 8;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  padding: 22px;
  color: var(--ty-ink);
  background: #fff;
  border: 1px solid var(--ty-line);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.ty-cart-detail[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translateY(0); }
.ty-cart-detail p { margin: 0 0 14px; font-size: var(--ty-small); }
.ty-cart-detail a { display: block; padding: 10px; color: #fff; text-align: center; background: var(--ty-ink); }
.ty-search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 22px 32px;
  color: var(--ty-ink);
  background: rgba(248,247,244,.98);
  border-top: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
}
.ty-search-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  width: min(100%, 840px);
  min-height: 56px;
  margin-inline: auto;
  padding-left: 16px;
  background: #fff;
  border: 1px solid var(--ty-line);
  transition: border-color .2s, box-shadow .2s;
}
.ty-search-form:focus-within { border-color: #7a6847; box-shadow: 0 0 0 3px rgba(154,122,60,.16); }
.ty-search-form input { min-width: 0; height: 54px; padding: 0 14px; background: transparent; border: 0; }
/* Tailwind Forms injects its focus ring after the theme styles load. Keep the
   visible focus treatment on the search-form wrapper rather than drawing a
   second blue ring around the mobile search input. */
.ty-search-form input:focus,
.ty-search-form input:focus-visible {
  border-color: transparent !important;
  outline: 0 !important;
  outline-offset: 0;
  box-shadow: none !important;
}
.ty-search-form > button[type="submit"] { align-self: stretch; min-width: 92px; color: #fff; background: var(--ty-ink); border: 0; }
.ty-search-close { width: 54px; height: 54px; padding: 0; background: transparent; border: 0; }
.ty-search-form [data-search-status] { grid-column: 2 / -1; margin: 0; color: #8a3126; font: .8rem/1.4 sans-serif; }

/* Hero */
.ty-hero { height: clamp(620px, 50vw, 760px); color: #fff; background: #282722; }
.ty-hero { position: relative; width: 100%; }
.ty-hero-swiper, .ty-hero-swiper .swiper-wrapper, .ty-hero-slide { position: relative; width: 100%; height: 100%; }
.ty-hero-slide { overflow: hidden; }
.ty-hero-slide > img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.ty-hero-slide-alt > img { object-position: 53% 42%; filter: sepia(.06) brightness(.9); }
.ty-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,18,15,.64) 0%, rgba(18,18,15,.36) 33%, rgba(18,18,15,.05) 58%, transparent 78%);
}
.ty-hero-copy {
  position: absolute;
  z-index: 2;
  top: 27%;
  left: max(32px, calc((100vw - var(--ty-shell)) / 2 + 32px));
  max-width: 520px;
}
.ty-hero-kicker {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0;
  color: #ead39b;
  background: transparent;
  font: 700 .875rem/1.2 var(--ty-sans);
  letter-spacing: .05em;
}
.ty-hero-copy h1, .ty-hero-copy h2 { margin: 0 0 20px; font-family: var(--ty-serif); font-size: clamp(2.15rem, 2.8vw, 2.6rem); font-weight: 400; line-height: 1.35; letter-spacing: .08em; }
.ty-hero-copy > p:not(.ty-hero-kicker) { margin: 0 0 30px; font-family: var(--ty-serif); font-size: 1rem; font-weight: 400; line-height: 1.9; }
.ty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 52px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.9);
  font-family: var(--ty-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: color .25s, background .25s;
}
.ty-cta:hover, .ty-cta:focus-visible { color: #222; background: #fff; outline: none; }
.ty-swiper-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ty-ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(43,41,37,.42);
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: opacity .2s, color .2s, background .2s, transform .2s;
}
.ty-swiper-arrow:hover, .ty-swiper-arrow:focus-visible { color: #fff; background: var(--ty-ink); outline: none; transform: scale(1.04); }
.ty-swiper-arrow .material-icons { font-size: 24px; line-height: 1; }
.ty-hero > .swiper, .ty-section { position: relative; }
.ty-hero-prev, .ty-hero-next { position: absolute; z-index: 5; top: 50%; color: #fff; background: transparent; border: 0; border-radius: 0; transform: translateY(-50%); }
.ty-hero-prev { left: 26px; opacity: 0; pointer-events: none; }
.ty-hero-next { display: none; opacity: 0; pointer-events: none; }
.ty-hero:hover .ty-hero-prev, .ty-hero:hover .ty-hero-next,
.ty-hero:focus-within .ty-hero-prev, .ty-hero:focus-within .ty-hero-next { opacity: 1; pointer-events: auto; }
.ty-hero-prev:hover, .ty-hero-prev:focus-visible { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1.04); background: transparent; }
.ty-hero-next:hover, .ty-hero-next:focus-visible { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1.04); background: transparent; }
.ty-hero-status {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  font: 700 .8rem/1 sans-serif;
  letter-spacing: .1em;
}
.ty-hero-pagination { position: static !important; display: flex; align-items: center; width: auto !important; gap: 8px; }
.ty-hero-pagination .swiper-pagination-bullet { width: 34px; height: 2px; margin: 0 !important; background: rgba(255,255,255,.72); border: 0; border-radius: 0; opacity: 1; }
.ty-hero-pagination .swiper-pagination-bullet-active { background: #c49d53; }

/* Shared sections */
.ty-section { padding-block: clamp(68px, 6vw, 98px); }
.ty-section-head { display: flex; align-items: center; justify-content: space-between; min-height: 52px; margin-bottom: 28px; }
.ty-section-head h2 { margin: 0; font-size: var(--ty-heading); font-weight: 400; line-height: 1.5; letter-spacing: .08em; }
.ty-section-arrows { display: flex; gap: 10px; }
.ty-section-arrows .ty-swiper-arrow { opacity: 0; pointer-events: none; }
.ty-section:hover .ty-section-arrows .ty-swiper-arrow, .ty-section:focus-within .ty-section-arrows .ty-swiper-arrow { opacity: 1; pointer-events: auto; }
.ty-products { overflow: hidden; }
.ty-product-swiper, .ty-collections-swiper { overflow: hidden; }
.ty-product-swiper:not(.swiper-initialized) .swiper-wrapper,
.ty-collections-swiper:not(.swiper-initialized) .swiper-wrapper { gap: 18px; }
.ty-product-swiper:not(.swiper-initialized) .swiper-slide {
  width: calc((100% - 90px) / 6);
  flex-basis: calc((100% - 90px) / 6);
}
.ty-collections-swiper:not(.swiper-initialized) .swiper-slide {
  width: calc((100% - 72px) / 5);
  flex-basis: calc((100% - 72px) / 5);
}
.ty-product-card { min-width: 0; }
.ty-product-media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #f1f0ed; }
/* Packshots are true-alpha PNGs; the card colour, not the image file, supplies their uniform backdrop. */
#featured .ty-product-media { background-color: #f1f0ed; background-image: none; }
.ty-product-media img { width: 100%; height: 100%; background-color: transparent; object-fit: contain; transform: scale(1.18); transition: transform .45s var(--ty-ease); }
.ty-product-media [data-product-badge] {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  color: #fff;
  background: var(--ty-gold);
  font: 700 .72rem/1 sans-serif;
  letter-spacing: .05em;
}
.ty-product-card h3 { margin: 18px 0 8px; color: #5e5a53; font-family: var(--ty-sans); font-size: .8125rem; font-weight: 500; line-height: 1.55; }
.ty-product-card h3 a { transition: color .2s; }
.ty-product-card:hover h3 a, .ty-product-card h3 a:focus-visible { color: var(--ty-gold); outline: none; }
.ty-product-card:hover .ty-product-media img { transform: scale(1.21); }
.ty-price { margin: 0; font-family: var(--ty-font-family); font-size: .875rem; font-weight: 400; letter-spacing: .05em; }
.ty-collections { padding-top: 28px; }
.ty-collection-card { position: relative; display: block; aspect-ratio: .75; overflow: hidden; color: #fff; background: #24231f; }
.ty-collection-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 58%); }
.ty-collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ty-ease), filter .55s; }
.ty-collection-card > span { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: flex; flex-direction: column; }
.ty-collection-card strong { font-family: var(--ty-serif); font-size: 1.0625rem; font-weight: 400; letter-spacing: .12em; white-space: nowrap; }
.ty-collection-card small { margin-top: 5px; font: .7rem/1 var(--ty-sans); letter-spacing: .12em; }
.ty-collection-card:hover img, .ty-collection-card:focus-visible img { transform: scale(1.045); filter: brightness(1.06); }
.ty-collection-card:focus-visible { outline: 2px solid var(--ty-gold); outline-offset: -2px; }

/* Craft */
.ty-craft { display: grid; grid-template-columns: 54% 46%; min-height: 420px; background: #f2f0eb; }
.ty-craft-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: min(100%, 780px); padding: 64px clamp(44px, 5vw, 96px); margin-left: auto; }
.ty-overline { position: relative; margin: 0 0 20px; padding-right: 88px; font-family: var(--ty-font-family); font-size: .6875rem; font-weight: 400; letter-spacing: .12em; }
.ty-overline::after { position: absolute; top: 50%; right: 0; width: 72px; height: 1px; content: ""; background: #b89b60; }
.ty-craft h2 { margin: 0 0 20px; font-family: var(--ty-serif); font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 400; line-height: 1.6; letter-spacing: .12em; }
.ty-craft-copy > p:not(.ty-overline) { margin: 0 0 28px; color: #55514a; font-family: var(--ty-serif); font-size: .9375rem; line-height: 2.05; }
.ty-outline-link { display: inline-flex; align-items: center; justify-content: center; min-width: 160px; min-height: 48px; padding: 8px 20px; border: 1px solid #777169; font: .85rem/1 sans-serif; transition: color .2s, background .2s; }
.ty-outline-link:hover, .ty-outline-link:focus-visible { color: #fff; background: var(--ty-ink); outline: none; }
.ty-craft-media { min-width: 0; overflow: hidden; }
.ty-craft-media img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }

/* Journal — the same media, metadata and popup contract as Fashion01. */
.ty-journal { padding: 64px 0 80px; background: rgba(251, 249, 244, .8); }
.ty-journal-rail { --ty-journal-visible: 3; --ty-journal-gap: 18px; width: 100%; overflow: hidden; }
.ty-journal-grid { display: flex; }
.ty-journal-rail:not(.swiper-initialized) .ty-journal-grid { gap: var(--ty-journal-gap); }
.ty-journal-rail:not(.swiper-initialized) .ty-journal-card { flex: 0 0 calc((100% - (var(--ty-journal-visible) - 1) * var(--ty-journal-gap)) / var(--ty-journal-visible)); }
.ty-journal-card { min-width: 0; height: auto; background: transparent; }
.ty-journal-button { display: block; width: 100%; padding: 0; color: inherit; text-align: left; background: transparent; border: 0; cursor: pointer; }
.ty-journal-media { display: block; overflow: hidden; background: #e9e6df; }
.ty-journal-card img { width: 100%; aspect-ratio: 2.05; object-fit: cover; transition: filter .45s ease, transform .55s cubic-bezier(.2, .7, .2, 1); }
.ty-journal-meta { display: flex; align-items: center; gap: 10px; margin: 12px 0 6px; color: #77756d; font: .6875rem/1.5 var(--ty-font-family); letter-spacing: .04em; }
.ty-journal-tag { padding: 2px 7px; color: var(--ty-ink); background: #efede8; font-family: var(--ty-sans); }
.ty-journal-title { display: block; width: fit-content; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; font-family: var(--ty-serif); font-size: .9375rem; font-weight: 400; line-height: 1.7; transition: color .2s, background-size .35s ease; }
.ty-journal-button:hover img, .ty-journal-button:focus-visible img { filter: contrast(1.035); transform: scale(1.04); }
.ty-journal-button:hover .ty-journal-title, .ty-journal-button:focus-visible .ty-journal-title { color: var(--ty-gold); background-size: 100% 1px; }
.ty-journal-button:focus-visible { outline: 2px solid var(--ty-gold); outline-offset: 4px; }

/* Footer */
.ty-footer { padding-top: 58px; background: #efede8; border-top: 1px solid #e3dfd8; }
.ty-footer-inner { display: grid; grid-template-columns: 1fr 1fr 1.2fr 1.7fr; gap: clamp(34px, 5vw, 84px); padding-bottom: 48px; }
.ty-footer h2 { margin: 0 0 16px; font-family: var(--ty-sans); font-size: .875rem; font-weight: 600; }
.ty-footer nav { display: flex; flex-direction: column; align-items: flex-start; }
.ty-footer nav a { padding-block: 3px; color: #514e48; font-family: var(--ty-sans); font-size: .8125rem; line-height: 1.8; transition: color .2s; }
.ty-footer nav a:hover, .ty-footer nav a:focus-visible { color: var(--ty-gold); outline: none; }
.ty-social { display: flex; gap: 8px; margin-bottom: 20px; }
.ty-social a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #777169; border-radius: 50%; }
.ty-social .material-icons { font-size: 20px; }
.ty-payments { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; }
.ty-payment-brand { display: inline-flex; min-height: 19px; align-items: center; color: #213d85; font: 800 .75rem/1 var(--ty-font-family); letter-spacing: .01em; white-space: nowrap; }
.ty-pay-jcb { padding: 3px 4px; color: #fff; background: linear-gradient(90deg, #1373b9 0 33%, #d92432 33% 66%, #208b4e 66%); border-radius: 2px; letter-spacing: .02em; }
.ty-pay-amex { padding: 3px 4px; color: #fff; background: #1976b8; }
.ty-pay-diners { color: #2d65a1; font-size: .61rem; }
.ty-copyright { padding-block: 18px; border-top: 1px solid #dcd8cf; }
.ty-copyright p { margin: 0; color: var(--ty-muted); font: .72rem/1.5 sans-serif; }

@media (min-width: 1024px) {
  .ty-hero { height: clamp(620px, 50.9vw, 760px); }
  .ty-hero-copy h1, .ty-hero-copy h2 { font-size: clamp(2.15rem, 2.8vw, 2.6rem); }

  #featured { padding: 42px 0 73px; }
  #featured .ty-section-head { margin-bottom: 18px; }
  #featured .ty-product-media { aspect-ratio: .77; }

  #collections { padding: 20px 0 58px; }
  #collections .ty-section-head { margin-bottom: 15px; }
  #collections .ty-collection-card { aspect-ratio: .735; }

  .ty-craft { min-height: 409px; }
  .ty-craft-copy { padding: 50px 44px; }
  .ty-craft h2 br { display: none; }

  #popular { padding: 31px 0 62px; }
  #popular .ty-section-head { margin-bottom: 14px; }
  #popular .ty-product-media { aspect-ratio: .85; }

  #journal { padding: 26px 0 58px; }

  .ty-footer { padding-top: 39px; }
  .ty-footer-inner { padding-bottom: 30px; }
  .ty-footer nav a { min-height: 0; padding-block: 1px; line-height: 1.6; }
  .ty-copyright { padding-block: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* EC-CUBE integration ---------------------------------------------------- */
body.fashion02-theme {
  --paper: var(--ty-paper);
  --paper-strong: var(--ty-panel);
  --ink: var(--ty-ink);
  --muted: var(--ty-muted);
  --line: var(--ty-line);
  --charcoal: var(--ty-ink);
  --shell: var(--ty-shell);
  --serif: var(--ty-serif);
  --sans: var(--ty-sans);
  --bs-font-sans-serif: var(--ty-font-family);
  --bs-body-font-family: var(--ty-font-family);
  min-width: 320px;
  color: var(--ty-ink);
  background: var(--ty-paper);
  font-family: var(--ty-font-family);
}
/* One typeface for all Fashion02 text. Icon glyphs remain on their dedicated font. */
body.fashion02-theme *:not(.material-icons):not(.material-symbols-outlined) {
  font-family: var(--ty-font-family);
}
.fashion02-theme .ec-layoutRole,
.fashion02-theme .ec-layoutRole__legacy-wrapper,
.fashion02-theme .ec-layoutRole__adaptive,
.fashion02-theme .ec-layoutRole__contents,
.fashion02-theme .ec-layoutRole__main { width: 100%; max-width: none; margin: 0; padding: 0; }
.fashion02-theme .ec-layoutRole__adaptive { display: block; }
.fashion02-theme .ec-layoutRole__header,
.fashion02-theme .ec-layoutRole__footer { position: relative; z-index: 18; width: 100%; margin: 0; padding: 0; }
.fashion02-home-page .ec-layoutRole__header { position: absolute; top: 0; left: 0; z-index: 30; }
.fashion02-theme:not(.fashion02-home-page) .ty-header { position: relative; color: var(--ty-ink); background: #f8f6f2; border-bottom: 1px solid var(--ty-line); }
.fashion02-theme:not(.fashion02-home-page) .ty-header-inner { min-height: 88px; }
.fashion02-theme .ty-primary-nav [aria-current="page"]::after { right: 0; left: 0; }
.fashion02-theme .ty-cart .cart-button { color: inherit; }
.fashion02-theme .ty-cart-detail {
  z-index: 50;
  width: 420px;
  max-height: min(720px, calc(100vh - 100px));
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
  font-size: 13px;
}
.fashion02-theme .ty-cart-detail:not([hidden]) { opacity: 1; visibility: visible; transform: translateY(0); }
.fashion02-theme .ty-cart-detail::before {
  position: absolute;
  top: -8px;
  right: 18px;
  width: 15px;
  height: 15px;
  content: "";
  background: #fff;
  border-top: 1px solid var(--ty-line);
  border-left: 1px solid var(--ty-line);
  transform: rotate(45deg);
}
.fashion02-theme .cart-popover-head,
.fashion02-theme .cart-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fashion02-theme .cart-popover-head { padding-bottom: 14px; border-bottom: 1px solid var(--ty-line); font-size: 14px; font-weight: 600; }
.fashion02-theme .cart-popover-head h2,
.fashion02-theme .cart-popover-head span { margin: 0; font-size: inherit; }
.fashion02-theme .cart-items {
  min-height: 0;
  max-height: min(420px, calc(100vh - 300px));
  flex: 1 1 auto;
  padding: 6px 0;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #aaa59b transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  list-style: none;
}
.fashion02-theme .cart-items:focus-visible { outline: 1px solid var(--ty-ink); outline-offset: 3px; }
.fashion02-theme .cart-item { display: grid; grid-template-columns: 86px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ty-line); }
.fashion02-theme .cart-item img { width: 86px; height: 104px; object-fit: contain; background: var(--ty-panel); }
.fashion02-theme .cart-item p { margin: 0; font-size: .875rem; line-height: 1.55; }
.fashion02-theme .cart-item-name { margin-bottom: 9px; font-weight: 600; }
.fashion02-theme .cart-item-option { color: var(--ty-muted); }
.fashion02-theme .cart-item-price { align-self: center; font-weight: 600; text-align: right; white-space: nowrap; }
.fashion02-theme .cart-total { padding: 18px 0 14px; font-size: .9375rem; font-weight: 600; }
.fashion02-theme .cart-total strong { font: 600 1.25rem/1 var(--ty-font-family); }
.fashion02-theme .cart-view { display: flex; min-height: 52px; align-items: center; justify-content: center; color: #fff; background: var(--ty-ink); font-weight: 600; transition: background-color .22s ease, transform .22s ease; }
.fashion02-theme .cart-view:hover,
.fashion02-theme .cart-view:focus-visible { color: #fff; background: #474840; outline: none; transform: translateY(-2px); }
.fashion02-theme .drawer-backdrop { position: fixed; z-index: 80; inset: 0; background: rgba(0,0,0,.56); }
.fashion02-theme .mobile-drawer { position: fixed; z-index: 90; inset: 0 0 0 auto; width: min(88vw, 390px); color: var(--ty-ink); background: var(--ty-paper); box-shadow: -12px 0 40px rgba(0,0,0,.22); }
.fashion02-theme .ty-drawer-panel { position: relative; width: 100%; height: 100%; padding: 28px 30px; overflow: auto; background: var(--ty-paper); box-shadow: none; }
.fashion02-theme .drawer-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.fashion02-theme .drawer-nav { display: flex; flex-direction: column; }
.fashion02-theme .drawer-nav > a,
.fashion02-theme .drawer-category-row { min-height: 52px; border-bottom: 1px solid var(--ty-line); }
.fashion02-theme .drawer-nav > a,
.fashion02-theme .drawer-category-row > a { display: flex; min-height: 52px; align-items: center; }
.fashion02-theme .drawer-category-row { display: grid; grid-template-columns: minmax(0,1fr) 44px; align-items: center; }
.fashion02-theme .drawer-category-toggle { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 0; background: transparent; }
.fashion02-theme .drawer-category-children { padding: 8px 0 12px 16px; margin: 0; list-style: none; }
.fashion02-theme .drawer-category-children a { display: flex; min-height: 42px; align-items: center; color: var(--ty-muted); }
.fashion02-theme .ty-hero-lines { display: flex; gap: 8px; }
.fashion02-theme .ty-hero-lines i { display: block; width: 34px; height: 2px; background: rgba(255,255,255,.72); }
.fashion02-theme .ty-hero-lines i:first-child { background: #c49d53; }
.fashion02-theme .ty-hero-next { right: 26px; display: inline-flex; }
.fashion02-theme .article-dialog-backdrop { position: fixed; z-index: 110; inset: 0; background: rgba(24, 24, 20, .48); }
.fashion02-theme .article-dialog { position: fixed; z-index: 111; top: 50%; left: 50%; width: min(920px, calc(100% - 64px)); max-height: min(680px, calc(100vh - 48px)); padding: 54px 58px 58px; overflow-y: auto; border: 1px solid var(--ty-line); background: var(--ty-paper); box-shadow: 0 26px 72px rgba(20, 20, 16, .25); transform: translate(-50%, -50%); }
.fashion02-theme .article-dialog-close { position: absolute; top: 14px; right: 14px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; background: transparent; font-size: 25px; line-height: 1; transition: background-color .2s ease, transform .2s ease; }
.fashion02-theme .article-dialog-close:hover, .fashion02-theme .article-dialog-close:focus-visible { background: rgba(34, 34, 29, .06); outline: none; transform: rotate(5deg); }
.fashion02-theme .article-dialog-date { display: block; margin-bottom: 16px; color: #77756d; font: .6875rem/1.5 var(--ty-font-family); letter-spacing: .08em; }
.fashion02-theme .article-dialog h2 { margin: 0 0 24px; font: 400 clamp(1.5rem, 3vw, 2.125rem)/1.55 var(--ty-serif); letter-spacing: .08em; }
.fashion02-theme .article-dialog-content { color: #4f4e48; font-family: var(--ty-serif); font-size: .9375rem; line-height: 2.1; white-space: pre-line; }
.fashion02-theme .article-dialog-content p { margin: 0; }
.fashion02-theme .ty-payment-title { margin-top: 22px; }
.fashion02-theme .to-top { color: #fff; background: var(--ty-ink); }

@media (max-width: 1023px) {
  .fashion02-theme .ty-header-actions .favorite-button { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fashion02-theme:not(.fashion02-home-page) .ty-header-inner { min-height: 82px; }
}
@media (max-width: 767px) {
  .fashion02-theme:not(.fashion02-home-page) .ty-header-inner { min-height: 74px; }
  .fashion02-theme .ty-cart-detail { position: fixed; top: 74px; right: 12px; left: auto; width: min(420px, calc(100vw - 24px)); max-height: calc(100dvh - 86px); }
  .fashion02-theme .ty-cart-detail::before { right: 56px; }
  .fashion02-theme .ty-journal-rail { --ty-journal-visible: 1; }
  .fashion02-theme .ty-journal-card img { aspect-ratio: 1.9; }
  .fashion02-theme .article-dialog { width: calc(100% - 28px); padding: 48px 24px 32px; }
  .fashion02-theme .ty-hero-next { right: 8px; }
}
