/* Source: tokens.css */
/* Shared storefront tokens. Preserve the established editorial palette and metrics. */
:root {
  --ink: #202a28;
  --paper: #faf9f6;
  --sage: #dce4d8;
  --line: #d7dad3;
  --accent: #354c3d;
  --muted: #526057;
  --nc-body-font: "Segoe UI", Arial, sans-serif;
}

/* Source: style.css */
/*
Theme Name: NoCap Commerce
Template: storefront
Version: 2.0.0
*/
* {
  box-sizing: border-box;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--nc-body-font);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: var(--ink);
  text-underline-offset: 4px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #99682d;
  outline-offset: 4px;
}
::selection {
  background: var(--sage);
  color: var(--ink);
}
input,
textarea,
select {
  caret-color: var(--accent);
}
.col-full {
  max-width: 1264px;
  padding: 0 36px;
}
.nc-demo {
  background: #233b2c;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 9px 18px;
  letter-spacing: 0.02em;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
  margin-bottom: 0 !important;
}
.site-branding {
  margin-bottom: 20px !important;
}
.site-branding .site-title a {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.site-description {
  display: none;
}
.site-search {
  margin-bottom: 18px;
}
.main-navigation ul li a {
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 500;
}
.storefront-primary-navigation {
  border-top: 1px solid var(--line);
}
.site-header-cart .cart-contents {
  padding: 16px 0;
}
.site-content {
  overflow: visible;
}
.content-area {
  width: 100% !important;
  float: none !important;
  margin-right: 0 !important;
}
.widget-area {
  display: none;
}
.woocommerce-breadcrumb {
  font-size: 13px;
  margin: 20px 0 28px !important;
  padding: 0 !important;
}
.site-main {
  margin-bottom: 50px;
}
.entry-header {
  display: block;
}
.entry-title,
.woocommerce-products-header__title {
  font-family: Georgia, serif;
  letter-spacing: -0.025em;
}
.home .woocommerce-breadcrumb {
  display: none;
}
.nc-home {
  padding-top: 32px;
}
.nc-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 550px;
  align-items: stretch;
  background: #eeeee6;
}
.nc-hero-copy {
  padding: 76px 48px;
  align-self: center;
}
.nc-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(44px, 5.1vw, 74px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 25px;
  color: var(--ink);
}
.nc-hero p {
  max-width: 32ch;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 30px;
}
.button,
button,
input[type="submit"],
.added_to_cart {
  background: var(--accent);
  color: white;
  border: 0;
  border-radius: 3px;
  padding: 13px 23px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.button:hover,
button:hover,
input[type="submit"]:hover {
  background: #23362a;
  color: #fff;
}
.button:disabled {
  opacity: 0.5;
}
.nc-primary {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.nc-text-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
}
.nc-hero-copy > .nc-text-link {
  display: block;
  margin-top: 18px;
}
.nc-hero-image {
  position: relative;
  display: block;
  background: #e5e8e4;
  overflow: hidden;
}
.nc-hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}
.nc-hero-image:hover > img {
  transform: scale(1.025);
}
.nc-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 249, 246, 0.95);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nc-image-caption span {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
}
.nc-edit {
  padding: 76px 0 36px;
}
.nc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 32px;
}
.nc-section-heading h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.nc-section-heading p {
  color: var(--muted);
  margin-bottom: 0;
}
.woocommerce ul.products li.product {
  margin-bottom: 36px;
}
.woocommerce ul.products li.product img {
  background: #eceee9;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 18px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 8px;
  font-weight: 600;
}
.woocommerce ul.products li.product .price {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}
.woocommerce ul.products li.product .button {
  background: transparent;
  border: 1px solid #657364;
  color: var(--ink);
  padding: 9px 20px;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--accent);
  color: #fff;
}
.onsale {
  border: 0;
  background: #e1ebdf;
  color: #273c2c;
  font-size: 12px;
  padding: 4px 10px;
}
.woocommerce-products-header {
  padding: 18px 0 30px !important;
}
.woocommerce-products-header h1 {
  font-size: 44px;
}
.single-product .product_title {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.single-product .summary .price {
  font-size: 24px;
  color: var(--accent);
}
.single-product div.product .woocommerce-product-gallery img {
  background: #eef0eb;
}
.nc-product-note {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
  color: var(--muted);
}
.woocommerce-message,
.woocommerce-info {
  background: #e2e9df;
  color: var(--ink);
}
.woocommerce-message a,
.woocommerce-info a {
  color: var(--ink);
}
.woocommerce-error {
  background: #8d2e24;
}
.woocommerce table.shop_table {
  font-variant-numeric: tabular-nums;
}
.site-footer {
  background: #e9ebe3;
  color: var(--ink);
  padding: 50px 0 25px;
}
.nc-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}
.nc-wordmark {
  font-family: Georgia, serif;
  font-size: 38px;
  text-decoration: none;
  font-weight: 700;
}
.nc-footer h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 12px 0 18px;
}
.nc-footer a:not(.nc-wordmark) {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}
.nc-small {
  font-size: 12px;
  max-width: 36ch;
  color: var(--muted);
}
.entry-content {
  max-width: 100%;
}
.page:not(.woocommerce-page):not(.home) .entry-content {
  max-width: 72ch;
}
.page h1 {
  margin-top: 25px;
}
.storefront-handheld-footer-bar {
  display: none;
}
@media (max-width: 767px) {
  .col-full {
    padding: 0 20px;
    margin: 0;
  }
  .site-header {
    padding-top: 18px;
  }
  .site-branding .site-title a {
    font-size: 31px;
  }
  .nc-demo {
    font-size: 10px;
    line-height: 1.5;
  }
  .nc-home {
    padding-top: 18px;
  }
  .nc-hero {
    grid-template-columns: 1fr;
  }
  .nc-hero-copy {
    padding: 34px 25px;
  }
  .nc-hero h1 {
    font-size: 48px;
  }
  .nc-hero-image {
    height: 330px;
  }
  .nc-hero-image > img {
    object-fit: contain;
  }
  .nc-image-caption {
    padding: 10px 14px;
  }
  .nc-section-heading {
    display: block;
  }
  .nc-section-heading > .nc-text-link {
    margin-top: 14px;
  }
  .nc-edit {
    padding-top: 45px;
  }
  .nc-section-heading h2 {
    font-size: 31px;
  }
  .nc-footer {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .nc-footer > div:first-child {
    grid-column: 1/-1;
  }
  .single-product .product_title {
    font-size: 34px;
  }
  .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .woocommerce ul.products:before,
  .woocommerce ul.products:after {
    display: none;
  }
  .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 0 24px !important;
    float: none !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
  }
  .woocommerce ul.products li.product .button {
    font-size: 12px;
    padding: 8px 11px;
  }
  .site-search {
    width: 100%;
  }
  .site-footer {
    padding-bottom: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Source: refinements.css */
.page .entry-header {
  padding: 20px 0 24px !important;
  text-align: left !important;
}
.page .entry-header h1 {
  margin: 0 !important;
}
.woocommerce-order ul.order_details {
  width: 100%;
  max-width: 740px;
}
.nc-shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 30px;
}
.nc-shop-tools form {
  margin: 0;
  min-width: 280px;
}
.nc-shop-tools nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.nc-shop-tools nav a {
  font-size: 14px;
  text-decoration: underline;
}
.site-branding .site-description {
  display: none !important;
}
@media (max-width: 767px) {
  .nc-shop-tools {
    display: block;
  }
  .nc-shop-tools form {
    min-width: 0;
    margin-bottom: 18px;
  }
  .nc-shop-tools nav {
    gap: 15px;
  }
  .page .entry-header {
    padding: 10px 0 20px !important;
  }
}

/* Source: editorial.css */
/* Editorial collection, loaded after the parent and child styles. */
.site-header .site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
}
.site-header .site-branding img.custom-logo {
  display: block;
  width: 158px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}
.nc-footer .nc-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 14px;
}
.nc-footer .nc-brand-logo {
  display: block;
  width: 168px;
  height: auto;
  border-radius: 0;
}
@media (max-width: 767px) {
  .site-header .site-branding img.custom-logo {
    width: 138px;
  }
}
.nc-arrow {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  margin-left: 6px;
}
.nc-home {
  padding-top: 22px;
}
.nc-hero {
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 560px;
  background: #eeece4;
}
.nc-hero-copy {
  padding: 54px 36px;
}
.nc-hero h1 {
  font-size: clamp(50px, 5.1vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.nc-hero p {
  font-size: 17px;
  line-height: 1.7;
}
.nc-hero-image > img {
  object-fit: cover;
  object-position: 64% center;
}
.nc-primary {
  gap: 10px;
  padding: 16px 21px;
}
.nc-hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  margin: 18px 0 8px;
  font-variant-numeric: tabular-nums;
}
.nc-hero-meta > span:last-child {
  font-size: 13px;
  color: var(--muted);
}
.nc-hero-copy > .nc-text-link {
  font-weight: 400;
  margin-top: 14px;
}
.nc-image-caption {
  background: #f4f1e8;
  color: #26392c;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  padding: 17px 20px;
}
.nc-image-caption span {
  font-size: 13px;
}
.nc-collection-strip {
  display: flex;
  justify-content: space-between;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.nc-collection-strip a {
  text-decoration: none;
}
.nc-edit {
  padding: 66px 0 32px;
}
.nc-section-heading h2 {
  font-size: 42px;
  margin-bottom: 10px;
}
.nc-home ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.nc-home ul.products:before,
.nc-home ul.products:after {
  display: none !important;
}
.nc-home ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  text-align: left;
}
.woocommerce ul.products li.product img {
  background: #f0ece3;
  margin-bottom: 17px;
  transition: filter 0.2s;
}
.woocommerce ul.products li.product a:hover img {
  filter: brightness(0.97);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px;
  margin-bottom: 3px;
}
.nc-colour-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}
.woocommerce ul.products li.product .price {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 15px;
  font-variant-numeric: tabular-nums;
}
.woocommerce ul.products li.product .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-color: #bac3b5;
}
.nc-outfit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 70px;
  background: #dfe5dc;
}
.nc-outfit-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
}
.nc-outfit-copy {
  align-self: center;
  padding: 48px;
}
.nc-outfit h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 24px;
}
.nc-outfit p {
  color: #435747;
  max-width: 36ch;
  line-height: 1.8;
}
.nc-outfit .nc-text-link {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 400;
}
.nc-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.nc-category-grid > a {
  text-decoration: none;
}
.nc-category-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 0;
}
.nc-category-grid a > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
  align-items: baseline;
}
.nc-category-grid h3 {
  font-size: 21px;
  margin: 0;
}
.nc-category-grid p {
  font-size: 14px;
  color: var(--muted);
  margin: 7px 0;
}
.nc-category-grid .nc-arrow {
  float: right;
}
.nc-try {
  margin-top: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nc-try h2 {
  font:
    400 38px/1.2 Georgia,
    serif;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
.nc-try p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.nc-provenance {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid #cbd2c5;
  padding-top: 22px;
}
.single-product div.product .woocommerce-product-gallery img {
  background: #f0ece3;
}
.single-product div.product .summary .single_add_to_cart_button {
  min-height: 52px;
  min-width: 200px;
}
.single-product .summary .woocommerce-product-details__short-description {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}
.nc-product-details {
  clear: both;
  border-top: 1px solid var(--line);
}
.nc-product-details details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.nc-product-details summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  min-height: 28px;
}
.nc-product-details p,
.nc-product-details a {
  font-size: 13px;
  line-height: 1.75;
}
.nc-product-details p {
  margin: 12px 0;
}
.nc-product-note {
  border: 0;
  font-size: 12px;
  padding-top: 14px;
}
.product_meta {
  font-size: 12px;
}
.nc-demo {
  font-size: 11px;
  padding: 8px 14px;
}
.woocommerce ul.products li.product {
  text-align: left;
}
.woocommerce-ordering select {
  max-width: 100%;
}
details summary:focus-visible {
  outline: 3px solid #99682d;
  outline-offset: 4px;
}
h1,
h2 {
  text-wrap: balance;
}
.site-search .widget_product_search input {
  background: #eeeee8;
}
@media (min-width: 768px) {
  .site-header {
    padding-top: 18px;
  }
  .site-branding {
    margin-bottom: 13px !important;
  }
  .site-search {
    margin-bottom: 13px;
  }
  .main-navigation ul li a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .site-header-cart .cart-contents {
    padding: 12px 0;
  }
  .nc-hero-image {
    min-height: 560px;
  }
  .single-product div.product .summary {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .nc-home .nc-hero {
    display: flex;
  }
  .nc-home .nc-hero-image {
    order: -1;
    height: 275px;
    flex: none;
  }
  .nc-home .nc-hero-copy {
    padding: 24px;
  }
  .nc-home .nc-hero h1 {
    font-size: 40px;
    margin: 0 0 14px;
  }
  .nc-home .nc-hero p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .nc-home .nc-hero-copy > .nc-text-link {
    margin-top: 10px;
  }
  .nc-home .nc-hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .nc-home .nc-hero-meta {
    margin-top: 12px;
  }
  .nc-home .nc-hero-image .nc-image-caption {
    padding: 10px 12px;
  }
  .nc-home .nc-hero-image .nc-image-caption .nc-arrow {
    width: 16px;
  }
  .site-header .site-branding {
    margin-bottom: 10px !important;
  }
  .site-header {
    padding-bottom: 10px;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .nc-hero-copy {
    padding: 30px 24px;
  }
  .nc-primary {
    font-size: 12px;
    padding: 14px;
  }
  .nc-outfit-copy {
    padding: 28px;
  }
  .nc-outfit h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .nc-home {
    padding-top: 12px;
  }
  .nc-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .nc-hero-copy {
    padding: 29px 24px 27px;
  }
  .nc-hero h1 {
    font-size: 46px;
    margin-bottom: 18px;
  }
  .nc-hero p {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .nc-primary {
    padding: 14px 17px;
    font-size: 13px;
    gap: 6px;
  }
  .nc-hero-meta {
    margin: 14px 0 5px;
  }
  .nc-hero-copy > .nc-text-link {
    font-size: 13px;
    margin-top: 8px;
  }
  .nc-hero-image {
    height: 320px;
  }
  .nc-hero-image > img {
    object-fit: cover;
    object-position: 64% center;
  }
  .nc-image-caption {
    font-size: 12px;
    padding: 12px;
  }
  .nc-image-caption span {
    font-size: 12px;
  }
  .nc-collection-strip {
    padding: 18px 0;
    font-size: 12px;
    gap: 12px;
  }
  .nc-collection-strip span {
    max-width: 21ch;
  }
  .nc-collection-strip a {
    align-self: center;
    white-space: nowrap;
  }
  .nc-edit {
    padding: 38px 0 12px;
  }
  .nc-section-heading h2 {
    font-size: 32px;
  }
  .nc-section-heading p {
    font-size: 14px;
  }
  .nc-home ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 14px;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    line-height: 1.45;
  }
  .woocommerce ul.products li.product .button {
    padding: 8px 10px;
    font-size: 12px;
    width: 100%;
  }
  .nc-outfit {
    grid-template-columns: 1fr;
    margin: 25px 0 40px;
  }
  .nc-outfit-visual img {
    aspect-ratio: 1.25;
    object-fit: cover;
  }
  .nc-outfit-copy {
    padding: 29px 24px;
  }
  .nc-outfit h2 {
    font-size: 39px;
  }
  .nc-outfit p {
    font-size: 15px;
  }
  .nc-category-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .nc-category-grid img {
    aspect-ratio: 1.4;
  }
  .nc-category-grid h3 {
    font-size: 20px;
  }
  .nc-try {
    display: block;
    margin-top: 36px;
    padding-top: 30px;
  }
  .nc-try h2 {
    font-size: 31px;
  }
  .nc-try .button {
    margin-top: 25px;
  }
  .nc-demo {
    font-size: 10px;
  }
  .single-product div.product .summary .single_add_to_cart_button {
    min-width: 0;
    flex: 1;
  }
  .single-product .summary .cart:not(.variations_form),
  .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 12px;
  }
  .single-product div.product .summary .cart .quantity {
    margin-right: 0;
  }
  .single-product .summary .woocommerce-product-details__short-description {
    font-size: 16px;
  }
}

/* Source: performance.css */
/* Retain WooCommerce's native gallery sizing and initialization. */
.single-product div.product .summary form.cart .single_add_to_cart_button.disabled {
  opacity: 1;
  color: var(--ink);
  background: var(--sage);
  cursor: not-allowed;
}
/* The only parent-font users were mobile menu controls. Match their existing face locally. */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/source-sans-pro-latin-400.woff2") format("woff2");
}
