/** Shopify CDN: Minification failed

Line 233:19 Unexpected "*"

**/
/* Sofia Tanswell — Gallery Theme Overrides
   Minimal gallery aesthetic: art-forward, museum-like
   Complements Shopify theme settings (colors, fonts) with
   spacing, letter-spacing, and layout refinements */

/* ============================================
   TYPOGRAPHY REFINEMENTS
   ============================================ */

/* Headings: uppercase, letterspaced */
h1, h2, .h1, .h2 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h3, h4, h5, .h3, .h4, .h5 {
  letter-spacing: 0.05em;
}

/* Body text: softer color for gallery feel */
body {
  color: rgba(var(--color-foreground), 0.8);
}

/* Subtitles and labels: wide letterspacing */
.subtitle,
.caption,
.caption-with-letter-spacing {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: calc(var(--font-body-scale) * 1.1rem);
}

/* ============================================
   HEADER — MINIMAL GALLERY
   ============================================ */

/* Artist name as brand */
.header__heading-link {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* Tagline below artist name */
.header__tagline {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.5);
  font-family: var(--font-body-family);
  font-weight: 300;
  margin-top: 2rem;
}

/* Nav links: subtle, letterspaced */
.header__inline-menu .header__menu-item {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

/* Remove header bottom border for cleaner look */
.section-header {
  border-bottom: none;
}

/* ============================================
   FOOTER — MINIMAL
   ============================================ */

.footer {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  text-align: center;
}

.footer__content-bottom {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  justify-content: center;
}

/* Center newsletter signup */
.footer__newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ============================================
   BUTTONS — DARK, UNDERSTATED
   ============================================ */

.button,
button.button,
a.button {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  transition: opacity 0.2s ease;
}

.button:hover {
  opacity: 0.85;
}

/* Secondary buttons */
.button--secondary {
  border-color: rgba(var(--color-foreground), 0.2);
}

.button--secondary:hover {
  border-color: rgba(var(--color-foreground), 0.5);
}

/* ============================================
   PRODUCT GRID — GALLERY WALL
   ============================================ */

/* Grid centering — Dawn's flex grid doesn't center by default */
.product-grid {
  justify-content: center;
}

/* Product card text: clean, minimal */
.card__heading {
  font-family: var(--font-heading-family);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Product card text spacing */
.card-information {
  padding-top: 1rem;
}

/* Remove card background for cleaner gallery look */
.card--standard .card__inner {
  background: transparent;
}

.card--card .card__inner {
  border: none;
  box-shadow: none;
}

/* Price styling */
.price-item {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.6);
}

/* ============================================
   PRODUCT PAGE — CLASSIC SPLIT
   ============================================ */

/* Product page price: bold and larger */
.product__info-wrapper .price-item {
  font-size: 1.7rem;
  font-weight: 700;
  color: rgba(var(--color-foreground), 0.9);
}

/* Product title: italic serif */
.product__title h1 {
  text-transform: none;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Product info spacing */
.product__info-wrapper {
  padding-top: 2rem;
}

@media screen and (min-width: 750px) {
  .product__info-wrapper {
    padding-top: 0;
    padding-left: 4rem;
  }
}

/* ============================================
   PAGE TITLES — CENTERED ON DESKTOP
   ============================================ */

@media screen and (min-width: 750px) {
  .title--primary,
  .main-page-title {
    text-align: center;
  }
}

/* ============================================
   BADGES — MINIMAL
   ============================================ */

.badge {
  border-radius: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

/* ============================================
   SPACING — GENEROUS WHITESPACE
   ============================================ */

/* Section spacing: more breathing room */
.section-template--*:not(:first-child) {
  margin-top: 4rem;
}

/* Page content padding */
@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 6rem;
  }
}

/* Collection page */
.collection-hero__title {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.collection-hero__description {
  max-width: 60rem;
  margin: 0 auto;
}

/* ============================================
   SEARCH — SIMPLIFIED
   ============================================ */

.search__input {
  border-radius: 0;
}

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

.cart-drawer__heading {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   PRODUCT — QUESTIONS BUTTON
   ============================================ */

.product-questions-link {
  margin-top: 0.8rem;
}

.product-questions-link .button {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

/* ============================================
   PRODUCT — FULFILMENT NOTE
   ============================================ */

.product-fulfilment-note p {
  display: flex;
  align-items: center;
}

/* ============================================
   BLOG
   ============================================ */

.article-card__title {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
}

.article-card__info {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: rgba(var(--color-foreground), 0.5);
}
