/** Shopify CDN: Minification failed

Line 66:7 Unexpected "/"

**/
/* ============================================================
   PRETTY STRANDS — BRAND STYLESHEET
   Version 1.0 | Designed for Shopify Dawn Theme
   
   DEVELOPER INSTRUCTIONS:
   1. Upload this file to your Shopify theme Assets folder
   2. Add {% stylesheet 'prettystrands-brand.css' %} to the
      bottom of layout/theme.liquid (before </body>)
   3. This file controls ALL brand colors, fonts, and core styles
   ============================================================ */


/* ============================================================
   1. GOOGLE FONTS IMPORT
   Cormorant Garamond = display/headline font
   Josefin Sans = body/navigation/label font
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Josefin+Sans:wght@300;400&display=swap');


/* ============================================================
   2. BRAND COLOR TOKENS
   Share these hex codes with anyone working on the brand.
   
   --ps-forest        Deep forest green (primary brand color)
   --ps-forest-mid    Medium forest green (hover states)
   --ps-forest-light  Light forest green (accents)
   --ps-choc          Deep chocolate brown (dark surfaces)
   --ps-choc-mid      Medium chocolate (secondary surfaces)
   --ps-gold          Brand gold (primary accent)
   --ps-gold-light    Light gold (headlines on dark)
   --ps-gold-pale     Pale gold (subtle accents)
   --ps-slate         Slate blue (editorial accent / edge)
   --ps-slate-light   Light slate (text on dark)
   --ps-slate-deep    Deep slate (panels / badges)
   --ps-cream         Warm cream (light surfaces)
   --ps-cream-deep    Deeper cream (secondary light)
   --ps-dusk          Near-black warm dark (page bg)
   ============================================================ */
/* :root {
  --ps-forest:       #1C3A2A;
  --ps-forest-mid:   #2A5040;
  --ps-forest-light: #3D6B56;
  --ps-choc:         #3B1F0E;
  --ps-choc-mid:     #5C3318;
  --ps-gold:         #B8943A;
  --ps-gold-light:   #D4AE5A;
  --ps-gold-pale:    #EDD98A;
  --ps-slate:        #7A8FA6;
  --ps-slate-light:  #A8BFCF;
  --ps-slate-deep:   #4A6070;
  --ps-cream:        #F7F2EA;
  --ps-cream-deep:   #EDE5D4;
  --ps-dusk:         #1A110A; */
/* 
  Typography scale
  --ps-font-display: 'Cormorant Garamond', Georgia, serif;
  --ps-font-body:    'Josefin Sans', Helvetica, sans-serif;
  --ps-section-pad: 4rem 2.5rem;
  --ps-section-pad-mobile: 2.5rem 1.25rem;
}  */ */
:root {
  --color-base-background-1: 26, 17, 10;
  --color-base-background-2: 28, 58, 42;
  --color-base-text: 247, 242, 234;
  --color-base-accent-1: 184, 148, 58;
  --color-base-accent-2: 74, 96, 112;
}
.color-background-1,
.color-background-2,
.color-inverse {
  --color-base-background-1: 26, 17, 10 !important;
  --color-base-background-2: 28, 58, 42 !important;
  --color-base-text: 247, 242, 234 !important;
  --color-base-accent-1: 184, 148, 58 !important;
  --color-base-accent-2: 74, 96, 112 !important;
}

/* ============================================================
   3. BASE / RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--ps-dusk);
  color: var(--ps-cream);
  font-family: var(--ps-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */

/* Display headings — Cormorant Garamond */
h1, h2, h3,
.ps-display {
  font-family: var(--ps-font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ps-cream);
}

h1 { font-size: clamp(42px, 6vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

/* Italic accent — used for highlighted words in headlines */
h1 em, h2 em, h3 em,
.ps-display em {
  font-style: italic;
  color: var(--ps-gold-light);
}

/* Body / utility — Josefin Sans */
p, li, a, button, input, label,
.ps-body {
  font-family: var(--ps-font-body);
  font-weight: 300;
  letter-spacing: 0.08em;
}

/* Eyebrow labels — small uppercase tracking */
.ps-eyebrow {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ps-gold);
  margin-bottom: 1rem;
  display: block;
}

/* Brand tagline */
.ps-tagline {
  font-family: var(--ps-font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ps-gold-light);
  letter-spacing: 0.06em;
}

/* Gold divider line */
.ps-divider {
  width: 32px;
  height: 0.5px;
  background: var(--ps-gold);
  margin: 1.4rem 0;
  opacity: 0.5;
  border: none;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.shopify-section-header .header,
header.header {
  background-color: var(--ps-forest);
  border-bottom: 0.5px solid rgba(184, 148, 58, 0.15);
}

/* Logo */
.header__heading-link,
.header__heading {
  font-family: var(--ps-font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ps-gold-light);
  letter-spacing: 0.2em;
  text-decoration: none;
}

/* Nav links */
.header__menu-item a,
.header__menu-item span {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ps-cream);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header__menu-item a:hover {
  opacity: 1;
  color: var(--ps-gold-light);
}

/* Nav icons (cart, search, account) */
.header__icon svg {
  color: var(--ps-slate-light);
}


/* ============================================================
   6. ANNOUNCEMENT BAR / TICKER
   ============================================================ */
.announcement-bar {
  background-color: var(--ps-slate-deep);
  border-top: 0.5px solid rgba(168, 191, 207, 0.2);
  border-bottom: 0.5px solid rgba(168, 191, 207, 0.2);
  padding: 9px 0;
}

.announcement-bar__message,
.announcement-bar a {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ps-slate-light);
  text-decoration: none;
}


/* ============================================================
   7. HERO BANNER
   ============================================================ */
.banner {
  background-color: var(--ps-choc);
  min-height: 560px;
}

.banner__content {
  padding: 4rem 2.5rem;
}

/* Hero headline */
.banner__heading {
  font-family: var(--ps-font-display);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--ps-cream);
  letter-spacing: 0.015em;
  margin-bottom: 1.4rem;
}

.banner__heading em {
  font-style: italic;
  color: var(--ps-gold-light);
}

/* Hero subtext */
.banner__text p {
  font-family: var(--ps-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--ps-cream);
  opacity: 0.65;
  max-width: 320px;
  margin-bottom: 2rem;
}

/* Hero tagline */
.banner__text .ps-tagline {
  display: block;
  margin-bottom: 1.4rem;
}


/* ============================================================
   8. BUTTONS
   ============================================================ */

/* Primary button — gold fill */
.btn,
.button,
.shopify-challenge__button,
.button--primary {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background-color: var(--ps-gold);
  color: var(--ps-choc);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn:hover,
.button:hover,
.button--primary:hover {
  background-color: var(--ps-gold-light);
  color: var(--ps-choc);
}

/* Secondary button — slate outline */
.button--secondary {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--ps-slate-light);
  border: 0.5px solid var(--ps-slate);
  padding: 13px 28px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.button--secondary:hover {
  border-color: var(--ps-slate-light);
  color: var(--ps-cream);
}

/* Text link style */
.ps-link {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ps-gold);
  border-bottom: 0.5px solid rgba(184, 148, 58, 0.4);
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.ps-link:hover {
  border-color: var(--ps-gold);
  color: var(--ps-gold-light);
}


/* ============================================================
   9. PRODUCT CARDS
   ============================================================ */
.card-wrapper {
  background-color: var(--ps-dusk);
}

.card {
  background-color: var(--ps-dusk);
  border: none;
  border-radius: 0;
}

/* Product image container */
.card__media {
  background-color: var(--ps-forest-mid);
  border-radius: 0;
  overflow: hidden;
}

/* Hover overlay effect */
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 96, 112, 0.2);
  opacity: 0;
  transition: opacity 0.25s;
}

.card-wrapper:hover .card__media::after {
  opacity: 1;
}

/* Product info area */
.card__content,
.card__information {
  padding: 14px 4px 16px;
}

/* Product category label */
.card__badge,
.card__vendor {
  font-family: var(--ps-font-body);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ps-slate-light);
  opacity: 0.7;
  margin-bottom: 5px;
}

/* Product title */
.card__heading,
.card__heading a {
  font-family: var(--ps-font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--ps-cream);
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* Product price */
.price,
.price__regular,
.price-item {
  font-family: var(--ps-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ps-gold);
}

/* Collection grid */
.collection {
  background-color: var(--ps-choc);
  padding: var(--ps-section-pad);
}

.collection__title {
  font-family: var(--ps-font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--ps-cream);
}


/* ============================================================
   10. FEATURED COLLECTION SECTION HEADER
   ============================================================ */
.title-wrapper,
.collection-list__title {
  font-family: var(--ps-font-display);
  font-weight: 300;
  color: var(--ps-cream);
}

.title-wrapper .title {
  color: var(--ps-cream);
}

.title-wrapper .title em {
  font-style: italic;
  color: var(--ps-gold-light);
}


/* ============================================================
   11. RICH TEXT / ABOUT SECTION
   ============================================================ */
.rich-text {
  background-color: var(--ps-dusk);
  padding: var(--ps-section-pad);
}

.rich-text__heading {
  font-family: var(--ps-font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--ps-cream);
  line-height: 1.1;
}

.rich-text__heading em {
  font-style: italic;
  color: var(--ps-gold-light);
}

.rich-text__text p {
  font-family: var(--ps-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--ps-cream);
  opacity: 0.62;
}


/* ============================================================
   12. IMAGE WITH TEXT (SPLIT SECTION)
   ============================================================ */
.image-with-text {
  background-color: var(--ps-dusk);
}

.image-with-text__content {
  background-color: var(--ps-dusk);
  padding: 3.5rem 2.8rem;
}

.image-with-text__media {
  background-color: var(--ps-forest-mid);
}

.image-with-text__heading {
  font-family: var(--ps-font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--ps-cream);
  line-height: 1.12;
}

.image-with-text__heading em {
  font-style: italic;
  color: var(--ps-gold-light);
}

.image-with-text__text p {
  font-family: var(--ps-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--ps-cream);
  opacity: 0.62;
}


/* ============================================================
   13. MULTICOLUMN / VALUES / STATS SECTION
   ============================================================ */
.multicolumn {
  background-color: var(--ps-slate-deep);
  padding: var(--ps-section-pad);
}

.multicolumn-list__item {
  border-right: 0.5px solid rgba(168, 191, 207, 0.15);
  padding: 1rem 2rem;
  text-align: center;
}

.multicolumn-list__item:last-child {
  border-right: none;
}

/* Stat number */
.multicolumn-list__item .icon-with-text__heading,
.multicolumn-list__item h3 {
  font-family: var(--ps-font-display);
  font-size: 46px;
  font-weight: 300;
  color: var(--ps-gold-light);
  font-style: italic;
  line-height: 1;
}

/* Stat label */
.multicolumn-list__item p {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ps-cream);
  opacity: 0.55;
  line-height: 1.8;
  margin-top: 8px;
}


/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background-color: var(--ps-dusk);
  border-top: 0.5px solid rgba(122, 143, 166, 0.15);
  padding: 3rem 2.5rem;
  color: var(--ps-cream);
}

/* Footer logo */
.footer__logo,
.footer .footer__logo-link {
  font-family: var(--ps-font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--ps-gold-light);
  letter-spacing: 0.18em;
  text-decoration: none;
}

/* Footer headings */
.footer__content-top .footer__column h2,
.footer-block__heading {
  font-family: var(--ps-font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ps-gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* Footer links */
.footer-block__details-content a,
.footer__list a {
  font-family: var(--ps-font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ps-cream);
  opacity: 0.45;
  text-decoration: none;
  line-height: 2.4;
  display: block;
  transition: opacity 0.2s;
}

.footer-block__details-content a:hover,
.footer__list a:hover {
  opacity: 0.8;
  color: var(--ps-gold-light);
}

/* Footer tagline / copyright */
.footer__copyright,
.footer__copyright a {
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ps-cream);
  opacity: 0.35;
  text-decoration: none;
}


/* ============================================================
   15. PRODUCT PAGE
   ============================================================ */
.product__title {
  font-family: var(--ps-font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--ps-cream);
  letter-spacing: 0.02em;
}

.product__vendor {
  font-family: var(--ps-font-body);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ps-slate-light);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.product__price {
  font-family: var(--ps-font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ps-gold);
}

.product__description {
  font-family: var(--ps-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: var(--ps-cream);
  opacity: 0.65;
}

.product__description ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product__description ul li {
  padding-left: 18px;
  position: relative;
  line-height: 2;
  color: var(--ps-slate-light);
  opacity: 0.85;
}

.product__description ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ps-gold);
  opacity: 0.6;
}

/* Add to cart button */
.product-form__submit {
  background-color: var(--ps-gold);
  color: var(--ps-choc);
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  border-radius: 0;
  width: 100%;
  transition: background-color 0.2s;
}

.product-form__submit:hover {
  background-color: var(--ps-gold-light);
}

/* Product media */
.product__media-wrapper {
  background-color: var(--ps-forest-mid);
}


/* ============================================================
   16. CART
   ============================================================ */
.cart {
  background-color: var(--ps-dusk);
  color: var(--ps-cream);
}

.cart__title {
  font-family: var(--ps-font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--ps-cream);
  font-style: italic;
}

.cart-item__name,
.cart-item__name a {
  font-family: var(--ps-font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--ps-cream);
  text-decoration: none;
}

.cart-item__price,
.totals__subtotal {
  font-family: var(--ps-font-body);
  color: var(--ps-gold);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.cart__checkout-button {
  background-color: var(--ps-gold);
  color: var(--ps-choc);
  font-family: var(--ps-font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  border-radius: 0;
  width: 100%;
}


/* ============================================================
   17. BADGES / PILLS
   ============================================================ */
.ps-badge {
  display: inline-block;
  background-color: var(--ps-slate-deep);
  color: var(--ps-slate-light);
  font-family: var(--ps-font-body);
  font-size: 7.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-right: 6px;
  margin-bottom: 4px;
}

.ps-badge--gold {
  background-color: rgba(184, 148, 58, 0.12);
  color: var(--ps-gold-light);
  border: 0.5px solid rgba(184, 148, 58, 0.3);
}

.ps-badge--forest {
  background-color: var(--ps-forest);
  color: var(--ps-cream);
}


/* ============================================================
   18. SECTION WRAPPERS
   Override Dawn's default section backgrounds
   ============================================================ */

/* Dark sections */
.color-scheme-1,
.color-background-1 {
  background-color: var(--ps-dusk);
  color: var(--ps-cream);
}

/* Forest green sections */
.color-scheme-2,
.color-background-2 {
  background-color: var(--ps-forest);
  color: var(--ps-cream);
}

/* Chocolate sections */
.color-scheme-3,
.color-background-3 {
  background-color: var(--ps-choc);
  color: var(--ps-cream);
}

/* Slate sections */
.color-scheme-4,
.color-background-4 {
  background-color: var(--ps-slate-deep);
  color: var(--ps-cream);
}

/* Cream / light sections */
.color-scheme-5,
.color-background-5 {
  background-color: var(--ps-cream);
  color: var(--ps-choc);
}


/* ============================================================
   19. RESPONSIVE / MOBILE
   ============================================================ */
@media (max-width: 749px) {
  .banner__content {
    padding: var(--ps-section-pad-mobile);
  }

  .rich-text,
  .collection,
  .multicolumn {
    padding: var(--ps-section-pad-mobile);
  }

  .image-with-text__content {
    padding: 2.5rem 1.5rem;
  }

  .footer {
    padding: 2.5rem 1.25rem;
  }

  .multicolumn-list__item {
    border-right: none;
    border-bottom: 0.5px solid rgba(168, 191, 207, 0.15);
    padding: 1.5rem 1rem;
  }

  .multicolumn-list__item:last-child {
    border-bottom: none;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }

  .banner__heading { font-size: 44px; }
}


/* ============================================================
   20. ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--ps-gold);
  outline-offset: 3px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}