/** Shopify CDN: Minification failed

Line 412:19 Unexpected "*"

**/
/* ==========================================================================
   Barton Shop — Custom Theme Overrides
   Design: Gallery Grid (Option A) — Clean, traditional, photo-forward
   ========================================================================== */

/* ---- CSS Custom Property Overrides ---- */
:root {
  --font-heading-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-body-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body-weight: 300;
  --font-body-weight-bold: 500;
  --font-heading-weight: 400;

  --color-accent: 139, 115, 85;
  --color-bg-warm: #F3EDE6;
  --color-text-light: #6B6560;
  --color-text-muted: #9B9490;
  --color-border-warm: #E5DFD8;
}

/* ---- Global Typography ---- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
.hxl,
.hxxl {
  font-family: var(--font-heading-family);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* ---- Announcement Bar ---- */
.utility-bar {
  letter-spacing: 0.12em;
  font-size: 1.15rem;
}

.announcement-bar__message {
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Header ---- */
.header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__inline-menu .list-menu--inline {
  gap: 0;
}

.header__menu-item {
  padding: 0.8rem 1.4rem;
}

/* Optically align uppercase nav caps with the serif mixed-case logo.
   The caps' visual center sits higher than the logo's, so nudge the
   nav down to meet it. */
.header--middle-left .header__inline-menu,
.header--middle-center .header__inline-menu {
  margin-top: 0.5rem;
}

.section-header {
  box-shadow: none;
}

.header__heading-link {
  font-family: var(--font-heading-family);
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.header__heading {
  font-family: var(--font-heading-family);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Nav links */
.header__menu-item,
.header__menu-item span,
.list-menu__item--link {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-body-family);
}

.header__menu-item:hover {
  text-decoration: none;
}

.header__menu-item span {
  position: relative;
}

.header__menu-item span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header__menu-item:hover span::after {
  width: 100%;
}

/* Remove default underline hover */
.header__inline-menu .header__menu-item:hover>.header__active-menu-item {
  text-decoration: none;
  border-bottom: none;
}

/* Cart count badge */
.cart-count-bubble {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1rem;
  font-weight: 500;
}

/* ---- Buttons ---- */
.button,
.shopify-challenge__button,
.customer button {
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.5rem 3.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.button--secondary {
  border-width: 1px;
}

.button:hover {
  opacity: 1;
}

/* ---- Section Headings ---- */
.title-wrapper {
  margin-bottom: 4rem;
}

.title {
  font-family: var(--font-heading-family);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.title-wrapper--no-top-margin .title {
  margin-top: 0;
}

.caption-with-letter-spacing {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Product Cards ---- */
.card-wrapper {
  color: rgb(var(--color-foreground));
}

.card__heading {
  font-family: var(--font-heading-family);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.card__heading a {
  font-size: 1.7rem;
}

.card__heading.h5 a {
  font-size: 1.7rem;
}

.card-information {
  text-align: center;
  padding: 0 0.5rem;
}

/* Product card image hover zoom */
.card__media .media img {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card:hover .card__media .media img,
.card-wrapper:hover .card__media .media img {
  transform: scale(1.06);
}

.card__media .media {
  overflow: hidden;
}

/* Smooth crossfade between product images on hover */
.card__media .media.media--hover-effect>img:first-child:not(:only-child) {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.2s ease;
}

.card__media .media.media--hover-effect>img+img {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.2s ease;
}

.card-wrapper:hover .card__media .media.media--hover-effect>img+img {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.2s ease;
}

/* Price styling */
.price {
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(var(--color-foreground), 0.6);
}

.price-item--regular {
  font-weight: 300;
}

/* ---- Image Banner / Hero ---- */
.banner {
  position: relative;
}

.banner::after {
  background: linear-gradient(to bottom,
      rgba(44, 44, 44, 0.05) 0%,
      rgba(44, 44, 44, 0.25) 60%,
      rgba(44, 44, 44, 0.5) 100%);
}

.banner__heading {
  font-family: var(--font-heading-family);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.banner__text {
  font-weight: 300;
  max-width: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* ---- Image With Text / Feature Banner ---- */
.image-with-text .grid {
  gap: 0;
}

.image-with-text__content {
  font-weight: 300;
}

.image-with-text__heading {
  font-family: var(--font-heading-family);
  font-weight: 300;
  line-height: 1.2;
}

.image-with-text__text {
  font-weight: 300;
  line-height: 1.8;
}

/* ---- Rich Text Sections ---- */
.rich-text__heading {
  font-family: var(--font-heading-family);
  font-weight: 400;
}

.rich-text__text {
  font-weight: 300;
  line-height: 1.8;
}

/* ---- Collection Grid ---- */
.collection-hero__title {
  font-family: var(--font-heading-family);
  font-weight: 400;
}

.collection-hero__description {
  font-weight: 300;
}

/* Facets / Filters */
.facets__heading {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Footer ---- */
.footer {
  border-top: none;
}

.footer-block__heading {
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 2.4rem;
}

.footer-block__details-content .list-menu__item--link {
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-block__details-content .list-menu__item--link:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-block__brand-info .rte,
.footer .rte {
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  line-height: 1.8;
  opacity: 0.6;
  font-weight: 400;
  max-width: 32rem;
}

.footer__content-bottom {
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  padding-top: 2.4rem;
}

.copyright__content {
  font-family: var(--font-heading-family);
  font-size: 1.15rem;
  opacity: 0.4;
}

.footer {
  font-family: var(--font-heading-family);
}

/* Newsletter in footer */
.footer-block__newsletter .footer-block__heading {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  opacity: 1;
}

/* ---- Multicolumn ---- */
.multicolumn-card__info .h3 {
  font-family: var(--font-heading-family);
  font-weight: 400;
}

/* ---- Collage ---- */
.collage-card .card__heading {
  font-family: var(--font-heading-family);
}

/* ---- Spacing Refinements ---- */
.section-template--*__padding,
[class*="section-"][class*="-padding"] {
  padding-top: clamp(3rem, 5vw, 8rem);
  padding-bottom: clamp(3rem, 5vw, 8rem);
}


/* ---- Page-specific ---- */

/* Product page */
.product__title {
  font-family: var(--font-heading-family);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product__text {
  font-weight: 300;
  line-height: 1.8;
}

.product__description {
  font-weight: 300;
  line-height: 1.8;
}

/* Cart */
.cart-item__name {
  font-family: var(--font-heading-family);
  font-weight: 400;
}

/* ---- Links ---- */
a:not(.button):not(.full-unstyled-link):hover {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

/* ---- Smooth scroll ---- */
html {
  scroll-behavior: smooth;
}

/* ---- Quick Add Button Styling ---- */
.quick-add__submit {
  font-family: var(--font-body-family);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Search ---- */
.predictive-search__heading {
  font-family: var(--font-body-family);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Badge styling ---- */
.badge {
  font-family: var(--font-body-family);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Responsive fine-tuning ---- */
@media screen and (max-width: 749px) {

  .card__heading a,
  .card__heading.h5 a {
    font-size: 1.5rem;
  }

  .header__heading-link {
    font-size: 2.2rem;
  }
}