/* ========================================
   Design tokens and base styles
   ======================================== */

:root {
  --color-ink: #201b17;
  --color-leather: #6b3f2d;
  --color-leather-dark: #43261c;
  --color-cream: #f5f0e8;
  --color-paper: #fffdf9;
  --color-gold: #b68c55;
  --color-sage: #30483a;
  --color-muted: #71675f;
  --color-border: rgba(32, 27, 23, 0.16);
  --content-width: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--sans);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.section {
  padding: 110px max(32px, calc((100vw - var(--content-width)) / 2));
}

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

.eyebrow--light {
  color: #ddc39f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

/* ========================================
   Header and navigation
   ======================================== */

.site-header {
  position: absolute;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  background: rgba(48, 28, 21, 0.88);
  box-shadow: 0 10px 30px rgba(28, 16, 12, 0.2);
  color: var(--color-paper);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.05em;
}

.brand__text strong,
.brand__text small {
  display: block;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.14em;
}

.brand__text small {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.button--header {
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--color-paper);
  border-radius: 999px;
  background: var(--color-paper);
  color: var(--color-leather-dark);
  box-shadow: 0 5px 16px rgba(25, 13, 9, 0.22);
  font-size: 14px;
  font-weight: 700;
}

.button--header:hover {
  border-color: #e1bf91;
  background: #e1bf91;
}

/* ========================================
   Hero
   ======================================== */

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  background: var(--color-leather-dark);
  color: var(--color-paper);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px max(56px, calc((100vw - 1240px) / 2)) 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(182, 140, 85, 0.17), transparent 30%),
    linear-gradient(135deg, #4b2b20 0%, #342019 100%);
}

.hero h1,
.section-heading h2,
.process h2,
.story h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(56px, 5.7vw, 92px);
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  color: #d5b78c;
  font-weight: 400;
}

.hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.button--primary {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: #c89f6b;
  color: #2d1c16;
  font-size: 14px;
  font-weight: 650;
}

.button--primary:hover {
  background: #ddba8d;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.hero__facts {
  display: flex;
  gap: 46px;
  margin-top: 58px;
}

.hero__facts div {
  display: grid;
  gap: 4px;
}

.hero__facts strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.hero__facts span {
  color: rgba(255, 253, 249, 0.58);
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #d8c7b4;
}

.hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 24, 17, 0.2), transparent 35%);
  pointer-events: none;
}

.craft-card {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 220px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--color-ink);
  backdrop-filter: blur(10px);
}

.craft-card__line {
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 15px;
  background: var(--color-gold);
}

.craft-card p,
.craft-card strong {
  margin: 0;
}

.craft-card p {
  color: #746961;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.craft-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.hero__stamp {
  position: absolute;
  z-index: 2;
  top: 128px;
  right: -58px;
  transform: rotate(90deg);
  color: rgba(255, 253, 249, 0.82);
  font-size: 9px;
  letter-spacing: 0.28em;
}

/* ========================================
   Principles and portfolio
   ======================================== */

.principles {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream);
  color: #655b53;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.principles i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-gold);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.process h2,
.story h2,
.contact h2 {
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 4px;
  color: #675e57;
  font-size: 15px;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.86fr 0.86fr;
  align-items: start;
  gap: 22px;
}

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

.product-card--second {
  margin-top: 70px;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e4d9cd;
}

.product-card--third .product-card__image {
  aspect-ratio: 1;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.025);
}

.product-card__image span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  font-size: 10px;
}

.product-card h3 {
  margin: 18px 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.product-card p {
  margin: 0;
  color: #746a62;
  font-size: 13px;
  line-height: 1.6;
}

.facebook-link {
  display: table;
  margin: 56px auto 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-ink);
  font-size: 13px;
  font-weight: 600;
}

/* ========================================
   Ordering process
   ======================================== */

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  background: var(--color-sage);
  color: var(--color-paper);
}

.process__intro > p:last-child {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(255, 253, 249, 0.68);
  line-height: 1.75;
}

.steps {
  border-top: 1px solid rgba(255, 253, 249, 0.22);
}

.step {
  display: grid;
  grid-template-columns: 54px 0.8fr 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.22);
}

.step__number {
  color: #d7bd96;
  font-family: var(--serif);
  font-size: 16px;
}

.step h3,
.step p {
  margin: 0;
}

.step h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.step p {
  color: rgba(255, 253, 249, 0.65);
  font-size: 13px;
  line-height: 1.65;
}

/* ========================================
   About section
   ======================================== */

.story {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 100px;
  background: var(--color-cream);
}

.story__image {
  position: relative;
  max-width: 520px;
}

.story__image::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--color-gold);
}

.story__image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.story__image span {
  position: absolute;
  right: -70px;
  bottom: 45px;
  padding: 12px 16px;
  transform: rotate(-90deg);
  background: var(--color-cream);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story__content > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: #655d56;
  font-size: 16px;
  line-height: 1.8;
}

.story blockquote {
  max-width: 590px;
  margin: 34px 0 0;
  padding: 20px 0 4px 28px;
  border-left: 2px solid var(--color-gold);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.45;
}

/* ========================================
   Contact and form
   ======================================== */

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  background: #271a15;
  color: var(--color-paper);
}

.contact__content > p:not(.eyebrow) {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(255, 253, 249, 0.65);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
}

.contact-details dt {
  color: rgba(255, 253, 249, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 38px;
  background: var(--color-paper);
  color: var(--color-ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9cec2;
  border-radius: 0;
  background: #ffffff;
  color: var(--color-ink);
  box-shadow: none;
}

.contact-form input,
.contact-form select {
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-gold);
  outline: 2px solid rgba(182, 140, 85, 0.2);
  outline-offset: 1px;
}

.contact-form input[type="file"] {
  height: auto;
  min-height: 50px;
  padding: 6px;
  color: #655b53;
  cursor: pointer;
}

.contact-form input[type="file"]::file-selector-button {
  height: 36px;
  margin-right: 12px;
  border: 0;
  background: #eadccd;
  padding: 0 14px;
  color: var(--color-leather-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.optional,
.field-note {
  color: #7a7068;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  display: none !important;
}

.button--submit {
  min-height: 52px;
  background: var(--color-leather);
  color: var(--color-paper);
  font-size: 13px;
  font-weight: 650;
}

.button--submit:hover {
  background: var(--color-leather-dark);
}

.form-note,
.form-status {
  margin: -10px 0 0;
  color: #7a7068;
  font-size: 11px;
  line-height: 1.55;
}

.form-status {
  margin-top: 0;
  padding: 12px 14px;
  background: #eef2ed;
  color: var(--color-sage);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(32px, calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid var(--color-border);
  background: var(--color-cream);
}

.brand--footer {
  color: var(--color-ink);
}

.footer-legal {
  display: grid;
  gap: 5px;
  text-align: center;
}

.footer-legal p {
  margin: 0;
  color: #776c64;
  font-size: 11px;
}

.footer-socials {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
}

.footer-socials a {
  border-bottom: 1px solid transparent;
}

.footer-socials a:hover {
  border-color: currentColor;
}

/* ========================================
   Responsive layout
   ======================================== */

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
  }

  .hero__content {
    padding-right: 36px;
    padding-left: 36px;
  }

  .process,
  .contact {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .story {
    gap: 60px;
  }

  .step {
    grid-template-columns: 54px 0.72fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 64px;
    padding: 0 12px;
  }

  .brand__text small,
  .button--header {
    display: none;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__visual {
    order: 1;
    min-height: 560px;
  }

  .hero__visual::after {
    background: linear-gradient(0deg, rgba(43, 24, 17, 0.48), transparent 48%);
  }

  .hero__content {
    order: 2;
    padding: 58px 20px 54px;
  }

  .hero__stamp {
    display: none;
  }

  .craft-card {
    right: 16px;
    bottom: 16px;
    width: 200px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 67px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 42px;
  }

  .hero__facts strong {
    font-size: 22px;
  }

  .hero__facts span {
    font-size: 9px;
  }

  .principles {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 20px;
    white-space: nowrap;
  }

  .section {
    padding: 76px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .process h2,
  .story h2,
  .contact h2 {
    font-size: 44px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-card--second {
    margin-top: 0;
  }

  .product-card__image,
  .product-card--third .product-card__image {
    aspect-ratio: 4 / 4.6;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 10px 16px;
  }

  .step p {
    grid-column: 2;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .story__image {
    margin-left: 12px;
  }

  .story__image span {
    right: -64px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 20px;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* ========================================
   WordPress and shop additions
   ======================================== */

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--color-paper);
  color: var(--color-ink);
}

.menu-toggle {
  display: none;
}

.cart-link {
  display: inline-flex !important;
  flex: 0 0 auto;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  min-width: 108px;
  line-height: 1;
  white-space: nowrap;
}

.cart-label {
  display: inline-block;
  line-height: 1;
}

.cart-count {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-leather-dark);
  color: var(--color-paper);
  font-size: 10px;
  line-height: 1;
}

.available {
  background: var(--color-paper);
}

.available-grid,
.sold-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.available-card {
  border: 1px solid var(--color-border);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.available-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(44, 27, 20, 0.1);
}

.available-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #e8ded4;
}

.available-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.available-card:hover .available-card__image img {
  transform: scale(1.025);
}

.stock-badge,
.sold-card__image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  background: var(--color-sage);
  color: #fff;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.available-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.available-card h3,
.sold-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.product-price {
  margin: 7px 0 0;
  color: var(--color-leather);
  font-size: 16px;
  font-weight: 750;
}

.product-link,
.shop-all-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 750;
}

.shop-all-link {
  display: table;
  margin: 46px auto 0;
  font-size: 13px;
}

.store-empty {
  max-width: 760px;
  padding: 52px;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
}

.store-empty h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.store-empty > p:not(.eyebrow) {
  max-width: 600px;
  margin: 16px 0 24px;
  color: var(--color-muted);
  line-height: 1.7;
}

.purchase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px max(32px, calc((100vw - var(--content-width)) / 2));
  background: var(--color-sage);
  color: var(--color-paper);
}

.purchase-strip div {
  display: grid;
  gap: 5px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.purchase-strip div:first-child {
  padding-left: 0;
}

.purchase-strip div:last-child {
  padding-right: 0;
  border-right: 0;
}

.purchase-strip strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.purchase-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.sold {
  background: #eee8df;
}

.sold-card__image {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #d8cec2;
}

.sold-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5);
  opacity: 0.82;
}

.sold-card__image span {
  background: var(--color-leather-dark);
}

.sold-card h3 {
  margin-top: 14px;
}

.shop-page,
.content-page {
  min-height: 70vh;
  padding-top: 130px;
}

.shop-page__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.shop-page .woocommerce-products-header {
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

.shop-page .woocommerce-products-header::before {
  display: block;
  margin-bottom: 12px;
  color: var(--color-leather);
  content: "VB BAGS KOLEKCIJA";
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.shop-page .woocommerce-products-header__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.shop-page .term-description {
  max-width: 700px;
  margin-top: 18px;
  color: var(--color-muted);
  line-height: 1.7;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.category-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.category-nav a:hover,
.category-nav a.is-active {
  border-color: var(--color-leather-dark);
  background: var(--color-leather-dark);
  color: var(--color-paper);
}

.shop-page .woocommerce-result-count {
  margin: 13px 0 42px;
  color: var(--color-muted);
  font-size: 13px;
}

.shop-page .woocommerce-ordering {
  margin: 0 0 42px;
}

.shop-page .woocommerce-ordering select {
  min-width: 220px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-paper);
  padding: 0 38px 0 14px;
  color: var(--color-ink);
  font-size: 13px;
}

.shop-page ul.products {
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 28px;
  margin: 0;
  padding: 0;
}

.shop-page ul.products::before,
.shop-page ul.products::after {
  display: none;
}

.shop-page ul.products li.product {
  float: none;
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--color-border);
}

.shop-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  margin: 0 0 18px;
  background: #eee8df;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shop-page ul.products li.product:hover a img {
  transform: translateY(-4px);
}

.shop-page ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.shop-page ul.products li.product .price {
  display: block;
  margin: 10px 0 16px;
  color: var(--color-leather);
  font-size: 15px;
  font-weight: 750;
}

.shop-page ul.products li.product .button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 18px;
  background: var(--color-leather-dark);
  color: var(--color-paper);
  font-size: 12px;
}

.shop-page ul.products li.product .button:hover {
  background: var(--color-leather);
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 12px;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart h1,
.woocommerce-checkout h1,
.content-page h1 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

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

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  margin: 0 0 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
  color: var(--color-leather);
  font-weight: 750;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 0;
  background: var(--color-leather);
  color: var(--color-paper);
  font-size: 13px;
  font-weight: 700;
}

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

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty {
  min-height: 48px;
  border: 1px solid #d9cec2;
  border-radius: 0;
  background: #fff;
  padding: 10px 12px;
}

.woocommerce-checkout #payment {
  border-radius: 0;
  background: var(--color-cream);
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--color-sage);
  background: #f2f3ef;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--color-sage);
}

.woocommerce table.shop_table {
  border-radius: 0;
  border-color: var(--color-border);
}

/* ========================================
   Single product
   ======================================== */

.product-page {
  min-height: 75vh;
  padding: 118px 32px 110px;
  background:
    radial-gradient(circle at 85% 12%, rgba(182, 140, 85, 0.1), transparent 24%),
    var(--color-paper);
}

.product-page__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.single-product .woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 12px;
}

.single-product .woocommerce-breadcrumb a {
  transition: color 180ms ease;
}

.single-product .woocommerce-breadcrumb a:hover {
  color: var(--color-leather);
}

.single-product .woocommerce-notices-wrapper:empty {
  display: none;
}

.single-product .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  column-gap: clamp(48px, 6vw, 76px);
  align-items: start;
}

.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.single-product .woocommerce div.product div.images {
  position: relative;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border: 1px solid rgba(67, 38, 28, 0.1);
  background: #eee8df;
  box-shadow: 0 24px 70px rgba(67, 38, 28, 0.1);
}

.single-product .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.single-product .woocommerce div.product div.images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: var(--color-paper);
}

.single-product .woocommerce div.product div.images .flex-control-thumbs li {
  float: none;
  width: auto;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  object-fit: cover;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img.flex-active {
  border-color: var(--color-leather);
}

.single-product .woocommerce-product-gallery__trigger {
  top: 18px !important;
  right: 18px !important;
  border: 1px solid rgba(67, 38, 28, 0.12);
  background: rgba(255, 253, 249, 0.94) !important;
}

.single-product .summary {
  position: static;
  padding: clamp(6px, 1vw, 16px) 0 0;
}

.single-product .product-eyebrow {
  margin: 0 0 14px;
  color: var(--color-leather);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.single-product .woocommerce div.product .product_title {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(38px, 3.3vw, 52px);
  line-height: 1.02;
}

.single-product .woocommerce div.product p.price {
  margin: 0 0 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-leather-dark);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
}

.single-product .woocommerce-product-details__short-description {
  color: #514740;
  font-size: 16px;
  line-height: 1.75;
}

.single-product .woocommerce-product-details__short-description p {
  margin: 0 0 18px;
}

.single-product .stock.in-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 20px;
  color: var(--color-sage);
  font-size: 13px;
  font-weight: 700;
}

.single-product .stock.in-stock::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f7d65;
  box-shadow: 0 0 0 4px rgba(95, 125, 101, 0.14);
  content: "";
}

.single-product .woocommerce div.product form.cart {
  display: flex;
  margin: 0 0 22px;
  padding: 0;
}

.single-product .woocommerce div.product form.cart .button {
  min-height: 56px;
  flex: 1;
  padding: 0 28px;
  background: var(--color-leather-dark);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.single-product .woocommerce div.product form.cart .button:hover {
  background: var(--color-leather);
}

.product-purchase-notes {
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.product-purchase-notes li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--color-border);
}

.product-purchase-notes li > span {
  color: var(--color-sage);
  font-weight: 800;
}

.product-purchase-notes strong {
  font-size: 13px;
}

.product-purchase-notes small {
  color: var(--color-muted);
  font-size: 11px;
}

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

.single-product .product_meta > span {
  display: block;
}

.single-product .product_meta a {
  color: var(--color-leather);
}

.single-product .woocommerce div.product .woocommerce-tabs,
.single-product .woocommerce div.product .related,
.single-product .woocommerce div.product .upsells {
  grid-column: 1 / -1;
}

.single-product .woocommerce div.product .woocommerce-tabs {
  margin-top: 86px;
  padding-top: 54px;
  border-top: 1px solid var(--color-border);
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 34px;
  margin: 0 0 36px;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0 0 14px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-bottom: 2px solid var(--color-leather);
  color: var(--color-ink);
}

.single-product .woocommerce-Tabs-panel {
  max-width: 800px;
  color: #514740;
  font-size: 15px;
  line-height: 1.8;
}

.single-product .woocommerce-Tabs-panel h2,
.single-product .related > h2,
.single-product .upsells > h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.single-product .related,
.single-product .upsells {
  margin-top: 90px;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  width: 100%;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-1,
.woocommerce-page .col2-set .col-2 {
  float: none;
  width: 100%;
}

@media (max-width: 1050px) {
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
  }

  .menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px;
    border: 1px solid rgba(255, 253, 249, 0.22);
    background: rgba(48, 28, 21, 0.98);
  }

  .main-nav.main-nav--open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .available-grid,
  .sold-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 460px) minmax(340px, 1fr);
    column-gap: 38px;
  }
}

@media (max-width: 760px) {
  .button--header {
    display: inline-flex;
    height: 38px;
    padding: 0 11px;
    font-size: 11px;
  }

  .cart-link {
    margin-left: auto;
  }

  .available-grid,
  .sold-grid,
  .woocommerce ul.products,
  .woocommerce .col2-set,
  .woocommerce-page .col2-set {
    grid-template-columns: 1fr;
  }

  .shop-page {
    padding: 108px 18px 72px;
  }

  .shop-page .woocommerce-products-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .category-nav {
    flex-wrap: nowrap;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-nav a {
    flex: 0 0 auto;
  }

  .shop-page .woocommerce-result-count,
  .shop-page .woocommerce-ordering {
    float: none;
    width: 100%;
    margin-bottom: 18px;
  }

  .shop-page .woocommerce-ordering select {
    width: 100%;
  }

  .shop-page ul.products {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 34px;
  }

  .product-page {
    padding: 102px 18px 72px;
  }

  .single-product .woocommerce-breadcrumb {
    margin-bottom: 18px;
    overflow: hidden;
    white-space: nowrap;
  }

  .single-product .woocommerce div.product {
    display: block;
  }

  .single-product .woocommerce div.product div.images {
    margin-bottom: 34px;
  }

  .single-product .summary {
    padding: 0;
  }

  .single-product .woocommerce div.product .product_title {
    font-size: clamp(36px, 11vw, 48px);
  }

  .single-product .woocommerce div.product p.price {
    font-size: 26px;
  }

  .product-purchase-notes li {
    grid-template-columns: 24px 1fr;
    padding: 10px 0;
  }

  .product-purchase-notes small {
    grid-column: 2;
  }

  .single-product .woocommerce div.product .woocommerce-tabs {
    margin-top: 58px;
    padding-top: 38px;
  }

  .single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
    gap: 22px;
    overflow-x: auto;
  }

  .single-product .related,
  .single-product .upsells {
    margin-top: 64px;
  }

  .available-card__body {
    align-items: flex-start;
    flex-direction: column;
  }

  .purchase-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .purchase-strip div,
  .purchase-strip div:first-child,
  .purchase-strip div:last-child {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .purchase-strip div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .store-empty {
    padding: 32px 22px;
  }
}
