@font-face {
  font-family: "CU Cormorant";
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CU Cormorant";
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  font-family: "CU Cormorant", "Songti SC", STSong, "Noto Serif SC", Georgia, serif;
  color: #f4f2ee;
  background: #020304;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  --paper: #f4f2ee;
  --soft-paper: rgba(244, 242, 238, 0.72);
  --muted: rgba(244, 242, 238, 0.5);
  --line: rgba(244, 242, 238, 0.44);
  --gold: #bda16e;
  --black: #020304;
  --blue-black: #07101a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 5px;
}

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

.site-shell {
  --scene-x: 0px;
  --scene-y: 0px;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: max(800px, 100svh);
  isolation: isolate;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  z-index: -2;
  inset: -14px;
  background-image: url("../images/twin-suns-cosmos.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate(var(--scene-x), calc(var(--scene-y) - 42px)) scale(1.1);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  animation: celestial-breath 22s ease-in-out infinite alternate;
}

@keyframes celestial-breath {
  from { filter: brightness(0.9) contrast(1.04); }
  to { filter: brightness(1) contrast(1.08); }
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 52px;
}

.site-header button,
.site-header a,
.mobile-nav a {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.wordmark {
  padding: 0;
  color: var(--paper);
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 43px;
  margin-top: 19px;
}

.primary-nav > a,
.language-switch {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.primary-nav > a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.primary-nav > a:hover {
  border-color: rgba(255, 255, 255, 0.62);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switch a {
  padding: 4px 0;
  opacity: 0.46;
}

.language-switch a.active {
  opacity: 1;
}

.menu-button,
.mobile-nav {
  display: none;
}

.menu-close-label {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-open-label {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close-label {
  display: inline;
}

.hero-copy {
  position: absolute;
  top: 25.2%;
  left: 50%;
  width: min(720px, calc(100% - 80px));
  transform: translateX(-50%);
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(43px, 3.7vw, 59px);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 0.085em;
  text-indent: 0.085em;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  width: min(580px, 100%);
  margin: 16px auto 0;
  color: rgba(244, 242, 238, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
  letter-spacing: 0.035em;
}

.text-link {
  display: inline-block;
  padding: 5px 0 6px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.explore-link {
  margin-top: 22px;
}

.hero-lower {
  position: absolute;
  left: 11.5%;
  right: 11.5%;
  bottom: 3.8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 29%;
}

.hero-archive,
.hero-store {
  min-width: 0;
}

.hero-archive {
  padding-right: 10%;
}

.hero-store {
  padding-left: 10%;
  border-left: 1px solid var(--line);
}

.hero-archive > h2,
.hero-store > h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.23em;
}

.hero-archive > h2::after,
.hero-store > h2::after {
  content: "";
  display: block;
  width: 53px;
  height: 1px;
  margin: 19px auto 0;
  background: var(--gold);
}

.archive-rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-rows li + li {
  margin-top: 18px;
}

.archive-rows a {
  width: 100%;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: start;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.archive-number {
  padding-top: 4px;
  color: rgba(244, 242, 238, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.archive-name strong,
.archive-name small {
  display: block;
}

.archive-name strong {
  font-size: 18px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.archive-name small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.archive-rows a:hover .archive-name strong {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-product {
  display: grid;
  grid-template-columns: minmax(170px, 46%) 1fr;
  align-items: center;
  gap: 28px;
  min-height: 210px;
  transform: translateY(-25px);
}

.hero-product > a {
  display: block;
  min-width: 0;
}

.hero-product img {
  display: block;
  width: 100%;
  max-height: 245px;
  object-fit: contain;
  animation: book-float 8s ease-in-out infinite;
}

@keyframes book-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hero-product h3 {
  margin: 0;
  max-width: 210px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 400;
}

.hero-product p {
  margin: 5px 0 19px;
  color: rgba(244, 242, 238, 0.74);
  font-size: 16px;
  font-style: italic;
}

.hero-product strong {
  display: block;
  margin-bottom: 19px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.archive-section {
  padding: 130px 8vw 150px;
  background: var(--black);
  border-top: 1px solid rgba(244, 242, 238, 0.16);
}

.section-heading {
  width: min(790px, 100%);
  margin: 0 auto 90px;
  text-align: center;
}

.section-heading > p,
.shop-copy > p,
.site-footer p,
.archive-modal > p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 24px 0 18px;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.02;
  font-weight: 400;
}

.section-heading > span {
  color: var(--soft-paper);
  font-size: 19px;
  line-height: 1.55;
}

.archive-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-grid article {
  min-height: 340px;
  padding: 32px 34px 40px;
}

.archive-grid article + article {
  border-left: 1px solid var(--line);
}

.entry-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.archive-grid h3 {
  margin: 64px 0 18px;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 400;
}

.archive-grid p {
  margin: 0 0 32px;
  color: var(--soft-paper);
  font-size: 17px;
  line-height: 1.45;
}

.shop-section {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 110px 12vw;
  background-color: var(--black);
  border-top: 1px solid rgba(244, 242, 238, 0.13);
  border-bottom: 1px solid rgba(244, 242, 238, 0.13);
}

.shop-image {
  min-width: 0;
  text-align: center;
}

.shop-image img {
  width: min(560px, 90%);
  display: inline-block;
  object-fit: contain;
}

.shop-copy {
  width: min(480px, 100%);
  padding-left: 8%;
}

.shop-copy h2 {
  margin: 30px 0 7px;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 400;
}

.shop-copy h3 {
  margin: 0 0 32px;
  color: rgba(244, 242, 238, 0.72);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
}

.shop-copy > span {
  display: block;
  color: var(--soft-paper);
  font-size: 18px;
  line-height: 1.55;
}

.shop-copy > strong {
  display: block;
  margin: 35px 0 24px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.shop-copy > .product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(244, 242, 238, 0.7);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.shop-copy > .product-button:hover,
.shop-copy > .product-button.added {
  background: var(--paper);
  color: #0a1017;
}

.site-footer {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 64px 8vw 54px;
  background: var(--black);
}

.site-footer > div {
  max-width: 580px;
}

.site-footer span {
  display: block;
  margin-top: 15px;
  color: var(--soft-paper);
  font-size: 17px;
  line-height: 1.5;
}

.site-footer small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.cart-status {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  min-width: 130px;
  padding: 13px 18px;
  border: 1px solid rgba(244, 242, 238, 0.72);
  background: #070a0e;
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.cart-indicator {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  min-width: 130px;
  padding: 13px 18px;
  border: 1px solid rgba(244, 242, 238, 0.72);
  background: #070a0e;
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.cart-indicator.is-visible,
body:not(.home) .cart-indicator {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.76);
}

.archive-modal {
  position: relative;
  width: min(720px, 100%);
  padding: 72px 76px;
  border: 1px solid var(--line);
  background: #090d12;
}

.modal-close {
  position: absolute;
  top: 23px;
  right: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.archive-modal h2 {
  margin: 26px 0 28px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  font-weight: 400;
}

.archive-modal blockquote {
  margin: 0 0 25px;
  color: var(--paper);
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
}

.archive-modal > span {
  color: var(--soft-paper);
  font-size: 17px;
  line-height: 1.5;
}

.cu-motion-ready .cu-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.cu-motion-ready .cu-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cu-lang-zh .wordmark {
  font-size: 24px;
  letter-spacing: 0.32em;
}

.cu-lang-zh .hero-copy h1 {
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

@media (max-width: 980px) {
  .hero {
    min-height: 1120px;
  }

  .site-header {
    min-height: 78px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 28px;
  }

  .wordmark {
    max-width: 70%;
    font-size: 15px;
  }

  .primary-nav {
    display: none;
  }

  .menu-button {
    display: block;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .mobile-nav {
    position: absolute;
    z-index: 9;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    gap: 1px;
    padding: 0 28px 26px;
    background: rgba(2, 3, 4, 0.96);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-top: 1px solid var(--line);
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .hero-copy {
    top: 18%;
  }

  .hero-lower {
    left: 8vw;
    right: 8vw;
    bottom: 4%;
    grid-template-columns: 1fr;
    gap: 55px;
    height: auto;
  }

  .hero-archive {
    padding-right: 0;
  }

  .hero-store {
    padding: 50px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-product {
    width: min(580px, 100%);
    margin: 0 auto;
    transform: none;
  }

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

  .archive-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .archive-grid article {
    min-height: auto;
  }

  .archive-grid h3 {
    margin-top: 38px;
  }

  .shop-section {
    grid-template-columns: 1fr;
    padding: 90px 8vw 120px;
  }

  .shop-copy {
    margin: 24px auto 0;
    padding-left: 0;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 1180px;
  }

  .hero-sky {
    background-position: center top;
    background-size: auto 74%;
    background-color: var(--black);
  }

  .site-header {
    padding: 0 20px;
  }

  .wordmark {
    max-width: 72%;
    font-size: 12px;
    line-height: 1.25;
  }

  .cu-lang-zh .wordmark {
    font-size: 18px;
  }

  .hero-copy {
    top: 12.5%;
    width: calc(100% - 42px);
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: 0.035em;
    text-indent: 0.035em;
  }

  .cu-lang-zh .hero-copy h1 {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-lower {
    left: 24px;
    right: 24px;
    bottom: 3%;
  }

  .hero-archive > h2,
  .hero-store > h2 {
    font-size: 14px;
  }

  .archive-name strong {
    font-size: 16px;
  }

  .hero-product {
    grid-template-columns: 43% 1fr;
    gap: 14px;
  }

  .hero-product h3 {
    font-size: 19px;
  }

  .hero-product p,
  .hero-product strong {
    font-size: 14px;
  }

  .archive-section {
    padding: 90px 22px 110px;
  }

  .section-heading {
    margin-bottom: 56px;
  }

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

  .section-heading > span {
    font-size: 17px;
  }

  .archive-grid article {
    padding: 28px 22px 34px;
  }

  .archive-grid h3 {
    font-size: 25px;
  }

  .shop-section {
    padding: 76px 22px 100px;
  }

  .shop-copy h2 {
    font-size: 48px;
  }

  .site-footer {
    padding: 54px 22px 42px;
  }

  .site-footer small {
    line-height: 1.5;
  }

  .archive-modal {
    padding: 64px 28px 42px;
  }
}

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

/* WordPress content templates */

.cu-content-wrap {
  min-height: 78vh;
  padding: 185px clamp(28px, 7vw, 116px) 120px;
  background: var(--black);
  color: var(--paper);
}

.archive-heading {
  max-width: 920px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.archive-heading > p,
.single-record header > p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.archive-heading h1,
.single-record h1,
.cu-shop-wrap .page-title {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 400;
}

.cu-content-wrap .archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 54px;
  border-color: var(--line);
}

.archive-card {
  min-height: 480px;
  padding: 0 34px 42px;
  border-right: 1px solid var(--line);
}

.archive-card:first-child {
  padding-left: 0;
}

.archive-card:last-of-type {
  border-right: 0;
}

.archive-card > a {
  color: inherit;
}

.archive-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  filter: grayscale(1) contrast(0.94);
}

.archive-card p {
  margin: 25px 0 38px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.archive-card h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 0.98;
  font-weight: 400;
}

.archive-card span {
  color: var(--soft-paper);
  font-size: 16px;
  line-height: 1.6;
}

.nav-links,
.posts-navigation,
.post-navigation,
.pagination {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
}

.nav-links a,
.pagination a,
.pagination span {
  color: var(--paper);
}

.single-record {
  width: min(940px, 100%);
  margin: 0 auto;
}

.single-record header img {
  width: 100%;
  height: auto;
  margin-top: 60px;
  filter: saturate(0.68);
}

.entry-content {
  margin-top: 64px;
  color: var(--soft-paper);
  font-size: 19px;
  line-height: 1.82;
}

.entry-content h2,
.entry-content h3 {
  color: var(--paper);
  font-weight: 400;
}

.entry-content h2 {
  margin-top: 72px;
  font-size: 42px;
}

.entry-content h3 {
  margin-top: 54px;
  font-size: 31px;
}

.entry-content a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.entry-content blockquote {
  margin: 44px 0;
  padding: 0 0 0 30px;
  border-left: 1px solid var(--gold);
  color: rgba(244, 242, 238, 0.82);
  font-size: 24px;
  font-style: italic;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.record-tags {
  display: block;
  margin-top: 56px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.comments-area {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.comments-area input,
.comments-area textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
}

.comments-area input[type="submit"] {
  width: auto;
  cursor: pointer;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #b4bac0;
  font-size: 11px;
  letter-spacing: 0.14em;
}

/* WooCommerce */

.cu-shop-wrap .woocommerce {
  margin-top: 58px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 42px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  clear: both;
  margin: 0;
  background: var(--line);
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 28px 28px 36px;
  background: var(--black);
}

.woocommerce ul.products li.product a {
  color: var(--paper);
}

.woocommerce ul.products li.product img {
  filter: saturate(0.72);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 25px 0 9px;
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--soft-paper);
  font-size: 17px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  padding: 11px 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: transparent;
  color: var(--gold);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(38px, 7vw, 110px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.woocommerce div.product .product_title {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.92;
  font-weight: 400;
}

.woocommerce div.product form.cart .button {
  margin-left: 18px;
}

.woocommerce table.shop_table {
  border: 1px solid var(--line);
  border-radius: 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--gold);
  background: #0b1017;
  color: var(--paper);
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .cu-content-wrap {
    padding: 125px 24px 80px;
  }

  .cu-content-wrap .archive-grid,
  .woocommerce ul.products,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .archive-card,
  .archive-card:first-child {
    min-height: 380px;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .entry-content {
    font-size: 17px;
  }

  .site-footer ul {
    display: grid;
  }
}
