/* Shared category and gift-set commerce layout. */
.lc-shop-template,
.lc-shop-template *,
.lc-shop-template *::before,
.lc-shop-template *::after { box-sizing: border-box; }

.lc-shop-template {
    --lc-shop-ink: #171616;
    --lc-shop-muted: #6f6b68;
    --lc-shop-paper: #f3f1ee;
    --lc-shop-white: #fbfaf8;
    --lc-shop-line: rgba(23, 22, 22, .15);
    --lc-shop-accent: #8b2940;
    color: var(--lc-shop-ink);
    background: var(--lc-shop-paper);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    overflow: hidden;
}

.lc-shop-template a { color: inherit; text-decoration: none; }
.lc-shop-template h1, .lc-shop-template h2, .lc-shop-template h3, .lc-shop-template p { margin: 0; }
.lc-shop-template h1, .lc-shop-template h2, .lc-shop-template h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.lc-shop-template__eyebrow { color: var(--lc-shop-accent); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.lc-shop-template__hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); min-height: min(650px, calc(100svh - 76px)); background: var(--lc-shop-paper); }
.lc-shop-template__hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 72px max(28px, calc((100vw - 1380px) / 2)); }
.lc-shop-template__hero h1 { max-width: 700px; margin: 20px 0 24px; font-size: clamp(50px, 6vw, 82px); }
.lc-shop-template__lead { max-width: 500px; color: var(--lc-shop-muted); font-size: 17px; line-height: 1.65; }
.lc-shop-template__hero-media { min-height: 560px; background: #d1c3bc; }
.lc-shop-template__hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.lc-shop-template__button { display: inline-flex; min-height: 50px; align-items: center; gap: 10px; margin-top: 30px; padding: 14px 21px; color: #fff !important; background: var(--lc-shop-ink); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: background 180ms ease, transform 180ms ease; }
.lc-shop-template__button:hover, .lc-shop-template__button:focus-visible { background: var(--lc-shop-accent); }
.lc-shop-template__button:active { transform: translateY(1px); }
.lc-shop-template__custom { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); align-items: end; gap: 40px; padding: clamp(70px, 9vw, 125px) max(28px, calc((100vw - 1380px) / 2)); color: #fff; background: var(--lc-shop-ink); }
.lc-shop-template__custom h2, .lc-shop-template__supporting h2 { max-width: 700px; margin-top: 20px; color: inherit; font-size: clamp(46px, 6vw, 82px); }
.lc-shop-template__custom > div:last-child { max-width: 430px; }
.lc-shop-template__custom > div:last-child > p { color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.65; }
.lc-shop-template__text-link { display: inline-flex; gap: 9px; margin-top: 24px; border-bottom: 1px solid currentColor; padding-bottom: 3px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lc-shop-template__collection { padding: clamp(76px, 9vw, 132px) max(28px, calc((100vw - 1380px) / 2)); background: var(--lc-shop-white); }
.lc-shop-template__collection-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr); align-items: end; gap: 32px; }
.lc-shop-template__collection-head h2 { margin-top: 20px; font-size: clamp(46px, 6vw, 82px); }
.lc-shop-template__collection-head > p { max-width: 360px; color: var(--lc-shop-muted); line-height: 1.65; }
.lc-shop-template__filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 42px 0 25px; }
.lc-shop-template__filter { min-height: 34px; border: 1px solid var(--lc-shop-line); padding: 8px 12px; color: var(--lc-shop-muted); background: transparent; cursor: pointer; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lc-shop-template__filter:hover, .lc-shop-template__filter:focus-visible, .lc-shop-template__filter.is-active { border-color: var(--lc-shop-ink); color: var(--lc-shop-white); background: var(--lc-shop-ink); }
.lc-shop-template__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 18px; }
.lc-shop-template__product[hidden] { display: none; }
.lc-shop-template__product-image { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #e0d8d2; }
.lc-shop-template__product-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.lc-shop-template__product:hover .lc-shop-template__product-image img, .lc-shop-template__product:focus-within .lc-shop-template__product-image img { transform: scale(1.03); }
.lc-shop-template__product-meta { padding-top: 16px; }
.lc-shop-template__product h3 { min-height: 42px; font-size: 21px; line-height: 1.05; }
.lc-shop-template__product h3 a:hover, .lc-shop-template__product h3 a:focus-visible { color: var(--lc-shop-accent); }
.lc-shop-template__price { margin-top: 9px; color: var(--lc-shop-muted); font-size: 13px; }
.lc-shop-template__view { display: inline-flex; gap: 6px; margin-top: 12px; border-bottom: 1px solid currentColor; padding-bottom: 3px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lc-shop-template__view:hover, .lc-shop-template__view:focus-visible { color: var(--lc-shop-accent); }
.lc-shop-template__supporting { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); align-items: end; gap: 40px; padding: clamp(70px, 9vw, 125px) max(28px, calc((100vw - 1380px) / 2)); background: #ded7d1; }
.lc-shop-template__supporting h2 { color: var(--lc-shop-ink); }
.lc-shop-template__supporting > p { max-width: 430px; color: var(--lc-shop-muted); font-size: 16px; line-height: 1.65; }
.lc-shop-template__notice { color: var(--lc-shop-muted); }
.lc-shop-template__legacy { padding: 0; background: var(--lc-shop-paper); }
.lc-shop-template__legacy > *:first-child { margin-top: 0 !important; }

@media (max-width: 900px) {
    .lc-shop-template__hero { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); min-height: 600px; }
    .lc-shop-template__hero-copy { padding: 58px 30px; }
    .lc-shop-template__custom, .lc-shop-template__supporting { grid-template-columns: 1fr; }
    .lc-shop-template__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .lc-shop-template__hero { display: flex; min-height: auto; flex-direction: column; }
    .lc-shop-template__hero-copy { padding: 53px 18px 46px; }
    .lc-shop-template__hero h1 { margin-top: 16px; font-size: clamp(48px, 14vw, 74px); }
    .lc-shop-template__lead { font-size: 15px; }
    .lc-shop-template__hero-media { min-height: 410px; }
    .lc-shop-template__custom, .lc-shop-template__supporting, .lc-shop-template__collection { padding-right: 18px; padding-left: 18px; }
    .lc-shop-template__custom h2, .lc-shop-template__supporting h2, .lc-shop-template__collection-head h2 { font-size: clamp(45px, 13vw, 68px); }
    .lc-shop-template__custom > div:last-child { margin-top: 10px; }
    .lc-shop-template__collection-head { display: block; }
    .lc-shop-template__collection-head > p { margin-top: 17px; }
    .lc-shop-template__filters { margin-top: 30px; }
    .lc-shop-template__grid { gap: 28px 12px; }
    .lc-shop-template__product h3 { min-height: 0; font-size: 18px; }
    .lc-shop-template__price { font-size: 12px; }
}
