:root {
  --paper: #f5f1e8;
  --paper2:#ece5d8;
  --ink: #1f1c18;
  --muted: #6e675f;
  --line: #d6cec0;
  --burgundy: #721d1b;
  --burgundy-dark: #4f1312;
  --gold: #b89a5a;
  --white: #fffdf8;
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

.wrap {
  max-width: var(--max);
  margin: auto;
  padding: 0 32px
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245,241,232,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line)
}

.header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max);
  margin: auto;
  padding: 0 32px
}

.brand {
  font-family: Georgia,'Times New Roman',serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 18px
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .17em
}

.nav a {
  padding: 30px 0 25px;
  border-bottom: 1px solid transparent
}

.nav a:hover,.nav a.active {
  border-color: var(--ink)
}

.mark {
  justify-self: end;
  width: 32px;
  height: 32px;
  position: relative;
  color: var(--burgundy)
}

.mark:before,.mark:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: currentColor
}

.mark:before {
  width: 2px;
  height: 28px
}

.mark:after {
  height: 2px;
  width: 28px
}

.mark span {
  position: absolute;
  inset: 7px;
  border: 1px solid currentColor;
  border-radius: 50%
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em
}

.display {
  margin: 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(56px,7.8vw,108px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.035em
}

.lede {
  max-width: 640px;
  margin: 28px 0 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(22px,2.4vw,30px);
  line-height: 1.45;
  color: #4c4740
}

.btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 15px 21px;
  border: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em
}

.btn.primary {
  background: var(--ink);
  color: var(--white)
}

.btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff
}

.btn.light {
  border-color: var(--line)
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: calc(100vh - 76px);
  border-bottom: 1px solid var(--line)
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(32px,6vw)
}

.hero-book {
  background: var(--paper2);
  display: grid;
  place-items: center;
  padding: 70px 52px
}

.hero-book img {
  width: min(390px,80%);
  box-shadow: 0 35px 65px rgba(40,30,24,.20)
}

.section {
  padding: 118px 0;
  border-bottom: 1px solid var(--line)
}

.grid2 {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: start
}

.title {
  margin: 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(42px,5vw,70px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em
}

.bigcopy {
  margin: 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(26px,3vw,40px);
  line-height: 1.3;
  color: #302d29
}

.bodycopy {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 20px;
  line-height: 1.72;
  color: #514c45
}

.bodycopy p:first-child {
  margin-top: 0
}

.band {
  background: var(--burgundy-dark);
  color: #f6eee6
}

.band .eyebrow {
  color: #d9bd7d
}

.band .bodycopy {
  color: #e8dcd1
}

.band .title {
  color: #fff8ef
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.band img {
  width: min(390px,85%);
  margin: auto;
  box-shadow: 0 32px 60px rgba(0,0,0,.25)
}

.meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22)
}

.meta div {
  padding: 20px 10px 18px 0
}

.meta b {
  display: block;
  font-family: Georgia,'Times New Roman',serif;
  font-size: 23px;
  font-weight: 400
}

.meta span {
  display: block;
  margin-top: 4px;
  color: #c8bbb0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em
}

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

.card {
  padding: 38px 38px 12px 0;
  border-right: 1px solid var(--line)
}

.card:not(:first-child) {
  padding-left: 38px
}

.card:last-child {
  border-right: 0
}

.num {
  color: var(--burgundy);
  font-size: 11px;
  letter-spacing: .15em
}

.card h3 {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 30px;
  font-weight: 400;
  margin: 28px 0 12px
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

.quote {
  padding: 110px 0;
  text-align: center
}

.quote blockquote {
  max-width: 880px;
  margin: auto;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(31px,4vw,52px);
  line-height: 1.25;
  font-weight: 400
}

.quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em
}

.page-hero {
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--line)
}

.page-hero .display {
  font-size: clamp(54px,7vw,92px)
}

.values {
  border-top: 1px solid var(--line);
  margin-top: 56px
}

.value {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line)
}

.value h3 {
  margin: 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: 28px;
  font-weight: 400
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

.shop-head {
  padding: 94px 0 40px
}

.product {
  padding: 40px 0 110px;
  border-bottom: 1px solid var(--line)
}

.product-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px
}

.stage {
  background: var(--paper2);
  padding: 56px;
  display: grid;
  place-items: center;
  min-height: 660px
}

.stage img {
  width: min(400px,90%);
  box-shadow: 0 32px 60px rgba(40,30,24,.2)
}

.product-info {
  padding-top: 18px
}

.product-title {
  margin: 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(52px,6vw,80px);
  font-weight: 400;
  line-height: .98
}

.product-sub {
  margin: 20px 0 0;
  font-family: Georgia,'Times New Roman',serif;
  font-size: 24px;
  line-height: 1.45;
  color: #5d5850
}

.price {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 34px;
  margin: 32px 0 6px
}

.smallmeta {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  line-height: 1.8
}

.product-desc {
  margin-top: 38px;
  max-width: 650px
}

.product-desc p {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 20px;
  line-height: 1.68;
  color: #504b44
}

.note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7
}

.footer {
  background: #171613;
  color: #ede8de;
  padding: 62px 0 38px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end
}

.footer-brand {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: .14em
}

.footer-copy {
  margin-top: 10px;
  color: #aaa49a;
  font-size: 12px;
  line-height: 1.6
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #d2ccc1
}

.copy {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #393732;
  color: #7e7971;
  font-size: 10px
}

@media(max-width:900px) {

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 22px
  }

  .mark {
    display: none
  }

  .nav {
    gap: 18px
  }

  .wrap {
    padding: 0 22px
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-copy {
    padding: 78px 22px 66px
  }

  .hero-book {
    padding: 60px 22px
  }

  .grid2,.band-grid,.product-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .cols3 {
    grid-template-columns: 1fr
  }

  .card,.card:not(:first-child) {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .value {
    grid-template-columns: 42px 1fr
  }

  .value p {
    grid-column: 2
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-nav {
    flex-wrap: wrap
  }

  .stage {
    min-height: 0;
    padding: 44px 24px
  }
}

@media(max-width:560px) {

  .header-inner {
    height: 68px
  }

  .brand {
    font-size: 14px
  }

  .nav {
    gap: 12px;
    font-size: 9px
  }

  .nav a {
    padding: 26px 0 22px
  }

  .display {
    font-size: 52px
  }

  .lede {
    font-size: 22px
  }

  .section,.quote {
    padding: 80px 0
  }

  .band {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .meta {
    grid-template-columns: 1fr
  }

  .meta div {
    border-bottom: 1px solid rgba(255,255,255,.18)
  }

  .page-hero {
    padding: 78px 0 64px
  }

  .footer-nav {
    gap: 14px
  }
}

/* =========================================================
   INDIVIDUAL BOOK PAGE
   ========================================================= */

.book-detail-hero {
  padding: 88px 0 100px;
  border-bottom: 1px solid var(--line);
}

.book-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  gap: 92px;
  align-items: center;
}

.book-detail-stage {
  min-height: 690px;
  padding: 64px;
  display: grid;
  place-items: center;
  background: var(--paper2);
}

.book-detail-stage img {
  width: min(410px, 92%);
  box-shadow: 0 34px 68px rgba(40, 30, 24, .22);
}

.book-detail-info {
  padding: 18px 0;
}

.book-detail-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}

.book-detail-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.45;
  color: #5b554d;
}

.book-detail-price {
  margin: 34px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.book-detail-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.book-detail-summary {
  max-width: 680px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.book-detail-summary p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.72;
  color: #4e4942;
}

.book-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 48px;
}

.book-fact {
  padding: 24px 26px 22px 0;
  border-right: 1px solid var(--line);
}

.book-fact:not(:first-child) {
  padding-left: 26px;
}

.book-fact:last-child {
  border-right: 0;
}

.book-fact strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.book-fact span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.book-contents {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.book-content-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.book-content-row .number {
  color: var(--burgundy);
  font-size: 11px;
  letter-spacing: .12em;
}

.book-content-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.book-content-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.book-reading-band {
  background: var(--burgundy-dark);
  color: #f6eee6;
}

.book-reading-band .eyebrow {
  color: #d9bd7d;
}

.book-reading-band .title {
  color: #fff8ef;
}

.book-reading-band .bodycopy {
  color: #e6d9cf;
}

.book-note {
  padding: 30px 0 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.book-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.book-back:hover {
  color: var(--burgundy);
}

.book-card-link {
  display: block;
}

@media(max-width:900px) {

  .book-detail-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .book-detail-stage {
    min-height: 0;
    padding: 52px 24px;
  }

  .book-facts {
    grid-template-columns: 1fr 1fr;
  }

  .book-fact:nth-child(2) {
    border-right: 0;
  }

  .book-fact:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media(max-width:560px) {

  .book-detail-hero {
    padding: 56px 0 72px;
  }

  .book-detail-title {
    font-size: 52px;
  }

  .book-detail-subtitle {
    font-size: 21px;
  }

  .book-facts {
    grid-template-columns: 1fr;
  }

  .book-fact,
  .book-fact:not(:first-child) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .book-fact:last-child {
    border-bottom: 0;
  }

  .book-content-row {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }
}

/* =========================================================
   SHOP / CATALOG PAGE
   ========================================================= */

.catalog-hero {
  padding: 92px 0 54px;
  border-bottom: 1px solid var(--line);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 70px;
  align-items: end;
}

.catalog-intro-copy {
  max-width: 560px;
  padding-bottom: 8px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.72;
}

.catalog-section {
  padding: 64px 0 110px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 34px;
}

.catalog-count {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 34px;
}

.catalog-card {
  min-width: 0;
}

.catalog-cover {
  position: relative;
  min-height: 430px;
  padding: 44px 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper2);
  border: 1px solid rgba(31, 28, 24, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-cover:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(45, 35, 29, .08);
}

.catalog-cover img {
  width: min(250px, 88%);
  max-height: 355px;
  object-fit: contain;
  box-shadow: 0 23px 45px rgba(40, 30, 24, .2);
}

.catalog-card-body {
  padding-top: 20px;
}

.catalog-kicker {
  margin-bottom: 9px;
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.catalog-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.14;
}

.catalog-title a:hover {
  color: var(--burgundy);
}

.catalog-subtitle {
  min-height: 46px;
  margin: 8px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.catalog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 15px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.catalog-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.catalog-format {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-align: right;
}

.catalog-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}

.catalog-card-actions .btn {
  width: 180px;
  padding: 12px 15px;
  font-size: 9px;
}

.catalog-card-actions .lulu-buy-slot {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-placeholder {
  min-height: 430px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(114, 29, 27, .025), rgba(114, 29, 27, .025)),
    var(--paper2);
  border: 1px dashed #cfc4b4;
}

.catalog-placeholder-mark {
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  position: relative;
}

.catalog-placeholder-mark::before,
.catalog-placeholder-mark::after {
  content: "";
  position: absolute;
  background: var(--burgundy);
  opacity: .45;
}

.catalog-placeholder-mark::before {
  width: 1px;
  height: 34px;
  left: 16px;
  top: 0;
}

.catalog-placeholder-mark::after {
  width: 34px;
  height: 1px;
  left: 0;
  top: 16px;
}

.catalog-placeholder h3 {
  margin: 0;
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
}

.catalog-placeholder p {
  margin: 12px 0 0;
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.catalog-note {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
}

.catalog-note p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media(max-width:900px) {
  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

@media(max-width:620px) {
  .catalog-hero {
    padding: 62px 0 38px;
  }

  .catalog-section {
    padding: 44px 0 80px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-cover,
  .catalog-placeholder {
    min-height: 390px;
  }

  .catalog-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================================
   COMMERCE HEADER
   ========================================================= */

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--burgundy);
  color: #fff;
  font-size: 9px;
  line-height: 1;
}

button.btn {
  font: inherit;
  cursor: pointer;
}

button.btn:disabled {
  opacity: .65;
  cursor: wait;
}

/* =========================================================
   CART
   ========================================================= */

.cart-page {
  padding: 76px 0 110px;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 72px;
  padding-top: 38px;
  align-items: start;
}

.cart-items {
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-item-cover {
  min-height: 150px;
  padding: 12px;
  display: grid;
  place-items: center;
  background: var(--paper2);
}

.cart-item-cover img {
  max-width: 86px;
  max-height: 126px;
  object-fit: contain;
  box-shadow: 0 12px 25px rgba(40, 30, 24, .17);
}

.cart-item-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.cart-item-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cart-item-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 17px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
}

.qty-control button,
.qty-control span {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.qty-control button {
  cursor: pointer;
  font-size: 17px;
}

.qty-control span {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 12px;
}

.cart-remove {
  border: 0;
  padding: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-remove:hover {
  color: var(--burgundy);
}

.cart-item-price {
  align-self: start;
  padding-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  white-space: nowrap;
}

.order-summary {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  position: sticky;
  top: 110px;
}

.order-summary h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: #5b554d;
  font-size: 13px;
}

.summary-row.total {
  margin-top: 14px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.order-summary .btn {
  width: 100%;
  margin-top: 22px;
  text-align: center;
}

.summary-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.empty-cart {
  padding: 80px 0;
  text-align: center;
}

.empty-cart h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.empty-cart p {
  margin: 12px auto 25px;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   CHECKOUT
   Intentionally quieter and more transactional than the
   editorial pages. This helps the page feel focused and safe.
   ========================================================= */

.checkout-body {
  min-height: 100vh;
  background: #f7f7f5;
  color: #222;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.checkout-topbar {
  background: #fff;
  border-bottom: 1px solid #dfdfdc;
}

.checkout-topbar-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.checkout-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: .01em;
}

.checkout-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c625f;
  font-size: 12px;
}

.lock-icon {
  width: 15px;
  height: 18px;
  position: relative;
  border: 1.5px solid #5c625f;
  border-radius: 2px;
}

.lock-icon::before {
  content: "";
  width: 8px;
  height: 7px;
  position: absolute;
  top: -7px;
  left: 2px;
  border: 1.5px solid #5c625f;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.checkout-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 80px;
}

.checkout-title {
  margin: 0 0 32px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: start;
}

.checkout-card {
  margin-bottom: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dfdfdc;
  border-radius: 6px;
}

.checkout-card h2 {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 650;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field {
  margin-bottom: 15px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #4b504e;
  font-size: 12px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #bfc2bf;
  border-radius: 4px;
  background: #fff;
  color: #202321;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: #721d1b;
  box-shadow: 0 0 0 3px rgba(114, 29, 27, .09);
}

.payment-placeholder {
  padding: 18px;
  border: 1px solid #c8cac8;
  border-radius: 4px;
  background: #fafaf9;
}

.payment-placeholder-title {
  margin: 0 0 7px;
  font-weight: 650;
  font-size: 14px;
}

.payment-placeholder p {
  margin: 0;
  color: #636865;
  font-size: 12px;
  line-height: 1.6;
}

.checkout-summary {
  padding: 28px;
  background: #fff;
  border: 1px solid #dfdfdc;
  border-radius: 6px;
  position: sticky;
  top: 24px;
}

.checkout-summary h2 {
  margin: 0 0 22px;
  font-size: 17px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ececea;
}

.checkout-product-thumb {
  width: 58px;
  height: 72px;
  padding: 5px;
  display: grid;
  place-items: center;
  background: #f1efe9;
}

.checkout-product-thumb img {
  max-width: 44px;
  max-height: 62px;
  object-fit: contain;
}

.checkout-product-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.checkout-product-qty {
  margin-top: 3px;
  color: #6a6e6c;
  font-size: 11px;
}

.checkout-price {
  font-size: 13px;
  white-space: nowrap;
}

.checkout-total-rows {
  padding-top: 15px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  color: #555a57;
  font-size: 13px;
}

.checkout-total-row.grand {
  margin-top: 10px;
  padding-top: 17px;
  border-top: 1px solid #dcdedb;
  color: #202321;
  font-size: 18px;
  font-weight: 650;
}

.place-order {
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
  border: 0;
  border-radius: 4px;
  background: #5a1716;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.place-order:hover {
  background: #471110;
}

.place-order:disabled {
  opacity: .6;
  cursor: wait;
}

.checkout-trust {
  margin: 18px 0 0;
  color: #6a6e6c;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.checkout-back {
  display: inline-block;
  margin-top: 24px;
  color: #616562;
  font-size: 12px;
}

.checkout-back:hover {
  color: #721d1b;
}

/* =========================================================
   ORDER CONFIRMATION
   ========================================================= */

.confirmation-page {
  min-height: 75vh;
  padding: 90px 0 120px;
}

.confirmation-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-check {
  width: 58px;
  height: 58px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-size: 25px;
}

.confirmation-box h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 7vw, 68px);
  font-weight: 400;
  letter-spacing: -.03em;
}

.confirmation-lead {
  max-width: 580px;
  margin: 18px auto 36px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.65;
}

.confirmation-details {
  margin: 0 auto 34px;
  padding: 25px 28px;
  max-width: 540px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: left;
}

.confirmation-details .summary-row {
  padding: 8px 0;
}

@media(max-width:900px) {
  .cart-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .order-summary,
  .checkout-summary {
    position: static;
  }
}

@media(max-width:620px) {
  .cart-page {
    padding: 52px 0 80px;
  }

  .cart-head {
    display: block;
  }

  .cart-item {
    grid-template-columns: 84px 1fr;
  }

  .cart-item-cover {
    min-height: 116px;
  }

  .cart-item-cover img {
    max-width: 66px;
    max-height: 96px;
  }

  .cart-item-price {
    grid-column: 2;
    padding: 0;
  }

  .checkout-topbar-inner,
  .checkout-shell {
    width: min(100% - 28px, 1120px);
  }

  .checkout-shell {
    padding-top: 30px;
  }

  .checkout-secure span:last-child {
    display: none;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .checkout-card,
  .checkout-summary {
    padding: 21px;
  }
}



/* =========================================================
   LULU DIRECT BUY BUTTON
   ========================================================= */

.lulu-buy-slot {
  display: inline-block;
}

.lulu-buy-slot lulu-buy-button {
  display: block;
}

.lulu-not-connected {
  min-width: 132px;
}
