/** Shopify CDN: Minification failed

Line 316:2 Unexpected "}"

**/

  :root {
    --cream: #D7F4FA;
    --sand: #E8D8C3;
    --clay: #8EDFE3;
    --bark: #2F7785;
    --soil: #1F3F4A;
    --white: #FFFFFF;
    --charcoal: #1F3F4A;
    --mist: #F4FCFD;
    --accent: #426D76;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(142,223,227,0.34);
    transition: all 0.3s ease;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--soil);
    text-decoration: none;
  }

  .nav-logo span { color: var(--clay); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--soil);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--clay);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }
  .nav-links a:hover, .nav-links a.active { color: var(--bark); }

  .nav-cta {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    border: 1px solid var(--clay);
    color: var(--bark);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--clay); color: var(--white); }

  .cart-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .account-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .account-nav-link {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(142,223,227,0.56);
    border-radius: 999px;
    padding: 0.62rem 1rem;
    color: var(--soil);
    background: rgba(255,255,255,0.76);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    white-space: nowrap;
  }

  .account-nav-link:hover,
  .account-nav-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(31,63,74,0.28);
    box-shadow: 0 12px 28px rgba(31,63,74,0.08);
  }

  .account-nav-link--primary {
    background: var(--soil);
    border-color: var(--soil);
    color: var(--white);
  }

  .account-nav-link--primary:hover,
  .account-nav-link--primary:focus-visible {
    background: var(--bark);
    border-color: var(--bark);
    color: var(--white);
  }

  .account-nav-offer {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 50%;
    z-index: 3;
    width: min(330px, 86vw);
    padding: 0.85rem 1rem;
    border: 1px solid rgba(142,223,227,0.34);
    border-radius: 8px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(31,63,74,0.12);
    color: rgba(31,63,74,0.72);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translate(-50%, 6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .account-nav-offer strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--soil);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }

  .account-nav-offer span {
    display: block;
  }

  .account-nav:hover .account-nav-offer,
  .account-nav:focus-within .account-nav-offer {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  /* ─── PAGES ─── */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* ─── HOME ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 6rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.2s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--soil);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.4s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--clay);
  }

  .hero-desc {
    font-size: 0.95rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--bark);
    max-width: 380px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
  }

  .btn-primary {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--soil);
    color: var(--cream);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--bark); }

  .btn-ghost {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soil);
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--clay); }

  .hero-right {
    background: var(--sand);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(196,168,130,0.25) 0%, transparent 65%);
  }

.hero-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
  }

  .hero-product-card {
  width: 180px;
  height: 220px;
  background: var(--white);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(61,43,26,0.12);
}

.hero-product-card:nth-child(1),
.hero-product-card:nth-child(2),
.hero-product-card:nth-child(3),
.hero-product-card:nth-child(4),
.hero-product-card:nth-child(5),
.hero-product-card:nth-child(6) {
  margin-top: 0;
}

  .product-icon {
  width: 120px;
  height: 120px;
}

  .product-icon svg { width: 100%; height: 100%; }

  .product-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
    text-align: center;
    line-height: 1.4;
  }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--soil);
    padding: 2.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stat { text-align: center; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--clay);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    margin-top: 0.4rem;
    display: block;
  }

  .stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(196,168,130,0.25);
  }

  /* ─── VALUES ─── */
  .values {
    padding: 8rem 6rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  .values-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--soil);
    line-height: 1.2;
  }

  .values-header h2 em {
    font-style: italic;
    color: var(--clay);
  }

  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .value-item {}

  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .value-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 0.75rem;
  }

  .value-desc {
    font-size: 0.88rem;
    font-weight: 200;
    line-height: 1.8;
    color: var(--accent);
  }

  /* ─── PRODUCTS PAGE ─── */
  .page-hero {
    padding: 12rem 6rem 5rem;
    text-align: center;
    background: var(--sand);
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    bottom: -80px; left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 160px;
    background: var(--cream);
    border-radius: 50%;
  }

  .page-hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1.5rem;
  }

  .page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--soil);
    line-height: 1.1;
  }

  .page-hero-title em {
    font-style: italic;
    color: var(--clay);
  }

  /* ─── PRODUCT GRID ─── */
  .products-grid {
    padding: 6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .product-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(196,168,130,0.12);
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(61,43,26,0.12);
  }

  .product-card-visual {
    height: 260px;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .product-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(196,168,130,0.15) 0%, transparent 70%);
  }

  .product-card-icon {
    width: 80px;
    height: 110px;
    position: relative;
    z-index: 1;
  }

  .product-card-body {
    padding: 1.8rem;
  }

  .product-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--soil);
    margin-bottom: 0.5rem;
  }

  .product-card-desc {
    font-size: 0.8rem;
    font-weight: 200;
    line-height: 1.7;
    color: var(--accent);
    margin-bottom: 1.2rem;
  }

  .product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--bark);
  }

  .product-card-btn {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--clay);
    color: var(--bark);
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .product-card-btn:hover { background: var(--soil); border-color: var(--soil); color: var(--cream); }

  .product-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: var(--soil);
    color: var(--cream);
    z-index: 2;
  }

  /* ─── ABOUT PAGE ─── */
  .about-intro {
    padding: 12rem 6rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
  }

  .about-intro-left h1,
  .about-intro-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--soil);
    line-height: 1.15;
    margin-bottom: 2rem;
  }

  .about-intro-left h1 em,
  .about-intro-left h2 em { font-style: italic; color: var(--clay); }

  .about-intro-left p {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .about-visual {
    background: var(--sand);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .about-visual::before {
    content: 'SOAR\AESSENTIALS';
    white-space: pre;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(196,168,130,0.15);
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.2;
  }

  .about-pillars {
    padding: 5rem 6rem;
    background: var(--soil);
  }

  .about-pillars h2,
  .about-pillars h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .pillar {
    text-align: center;
  }

  .pillar-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(196,168,130,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .pillar-icon svg { width: 24px; height: 24px; stroke: var(--clay); }

  .pillar h3,
  .pillar h4 {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.75rem;
  }

  .pillar p {
    font-size: 0.82rem;
    font-weight: 200;
    line-height: 1.8;
    color: rgba(232,223,208,0.7);
  }

  /* ─── CONTACT PAGE ─── */
  .contact-section {
    padding: 12rem 6rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    min-height: 100vh;
  }

  .contact-left h1,
  .contact-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--soil);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .contact-left h1 em,
  .contact-left h2 em { font-style: italic; color: var(--clay); }

  .contact-left p {
    font-size: 0.88rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--accent);
    margin-bottom: 3rem;
  }

  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .contact-info-item svg { width: 18px; height: 18px; stroke: var(--clay); flex-shrink: 0; }

  .contact-info-item span {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--bark);
    letter-spacing: 0.05em;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }

  .form-group label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clay);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--white);
    border: 1px solid rgba(196,168,130,0.3);
    padding: 0.85rem 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--soil);
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--clay); }

  .form-group textarea { resize: vertical; min-height: 130px; }

  .form-submit {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--soil);
    color: var(--cream);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--bark); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    padding: 4rem 6rem 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
  }

  .footer-brand .logo span { color: var(--clay); }

  .footer-brand p {
    font-size: 0.82rem;
    font-weight: 200;
    line-height: 1.8;
    color: rgba(245,240,232,0.5);
  }

  .footer-col h5 {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1.25rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

  .footer-col ul li a {
    font-size: 0.8rem;
    font-weight: 200;
    color: rgba(245,240,232,0.5);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--clay); }

  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    font-size: 0.72rem;
    font-weight: 200;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.1em;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ─── TOAST ─── */
  .toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--soil);
    color: var(--cream);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 999;
    pointer-events: none;
  }

  .toast.show { opacity: 1; transform: translateY(0); }

  /* ─── PRODUCT FILTER ─── */
  .product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 6rem 0;
    flex-wrap: wrap;
  }

  .filter-btn {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(196,168,130,0.4);
    background: none;
    color: var(--bark);
    cursor: pointer;
    transition: all 0.3s;
  }

  .filter-btn:hover, .filter-btn.active {
    background: var(--soil);
    border-color: var(--soil);
    color: var(--cream);
  }

  /* ─── BANNER ─── */
  .promo-banner {
    background: var(--clay);
    padding: 0.75rem 2rem;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
  }

  /* ─── CART BADGE ─── */
  .cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--clay);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .cart-icon { display: flex; align-items: center; }

  /* ─── SECTION TESTIMONIALS ─── */
  .testimonials {
    padding: 7rem 6rem;
    background: var(--mist);
  }

  .testimonials h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--soil);
    text-align: center;
    margin-bottom: 4rem;
  }

  .testimonials h2 em { font-style: italic; color: var(--clay); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-top: 3px solid var(--clay);
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--soil);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: none; }
    .cart-wrapper { gap: 0.65rem; }
    .account-nav { gap: 0.4rem; }
    .account-nav-link {
      min-height: 34px;
      padding: 0.58rem 0.78rem;
      font-size: 0.6rem;
      letter-spacing: 0.11em;
    }
    .account-nav-offer { display: none; }
    .nav-cta { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 50vh; }
    .hero-left { padding: 4rem 2rem; }
    .stats-bar { flex-wrap: wrap; gap: 2rem; padding: 2.5rem 2rem; }
    .values { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; padding: 3rem 2rem; }
    .about-intro { grid-template-columns: 1fr; gap: 2rem; padding: 8rem 2rem 4rem; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .about-pillars { padding: 4rem 2rem; }
    .contact-section { grid-template-columns: 1fr; gap: 3rem; padding: 8rem 2rem 4rem; }
    .testimonials { padding: 4rem 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 3rem 2rem 1.5rem; }
  }


/* Shopify conversion additions */
body.template-page, body.template-index, body.template-collection, body.template-product { padding-top: 0; }
.main-content { min-height: 60vh; }
.shopify-section { display: block; }
.product-card a { text-decoration: none; color: inherit; }
.product-card-image { max-width: 100%; max-height: 100%; object-fit: contain; position: relative; z-index: 1; }
.price__sale { color: var(--bark); }
.nav-links a[aria-current="page"]::after { width: 100%; }
.mobile-only { display:none; }
.quantity-input { max-width:90px; }
.product-detail { padding: 12rem 6rem 6rem; display:grid; grid-template-columns:1fr 1fr; gap:4rem; }
.product-detail-media { background:var(--mist); display:flex; align-items:center; justify-content:center; min-height:500px; }
.product-detail-media img { max-width:100%; max-height:500px; object-fit:contain; }
.product-detail-title { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; color:var(--soil); margin-bottom:1rem; }
.product-detail-price { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--bark); margin-bottom:2rem; }
.product-detail-description { font-size:.9rem; font-weight:200; line-height:1.9; color:var(--accent); margin-bottom:2rem; }
.product-form select, .product-form input { background: var(--white); border:1px solid rgba(196,168,130,.3); padding:.85rem 1.1rem; margin-bottom:1rem; font-family:'Jost',sans-serif; }
.cart-page { padding:12rem 6rem 6rem; }
.cart-page h1 { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; margin-bottom:2rem; }
.cart-item { display:grid; grid-template-columns:100px 1fr auto; gap:1rem; padding:1.5rem 0; border-bottom:1px solid rgba(196,168,130,.25); }
.cart-item img { width:100px; height:100px; object-fit:contain; background:var(--mist); }
.cart-total { text-align:right; margin-top:2rem; font-size:1.3rem; color:var(--soil); }
@media (max-width:900px){ .product-detail{grid-template-columns:1fr; padding:8rem 2rem 4rem;} .cart-page{padding:8rem 2rem 4rem;} .cart-item{grid-template-columns:80px 1fr;} }

  /* Soar Essentials page polish: Contact, Our Story, Shop */
.template-page .contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(7rem, 10vw, 11rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  min-height: auto;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 7rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(196, 168, 130, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(61, 43, 26, 0.07);
}

.contact-left h1,
.contact-left h2,
.about-intro-left h1,
.about-intro-left h2 {
  letter-spacing: 0;
}

.contact-left p,
.about-intro-left p {
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.85;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.24);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 22px 55px rgba(61, 43, 26, 0.1);
}

.contact-form-intro {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 168, 130, 0.22);
}

.contact-form-intro p {
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-form .form-group {
  gap: 0.65rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  border-radius: 6px;
  background: #fffdf9;
  border-color: rgba(196, 168, 130, 0.34);
  padding: 1rem 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.14);
}

.contact-form .form-submit {
  width: 100%;
  margin-top: 0.4rem;
  border-radius: 6px;
  border: 1px solid var(--soil);
  background: var(--soil);
  color: var(--cream);
  padding: 1rem 1.25rem;
  cursor: pointer;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.contact-form .form-submit:hover {
  background: var(--bark);
  border-color: var(--bark);
}

.about-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(7rem, 10vw, 11rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 7vw, 6rem);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.about-intro-left {
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.about-intro-left p + p {
  margin-top: 0.25rem;
}

.about-intro-left .btn-primary {
  margin-top: 1rem;
  border-radius: 999px;
}

.about-visual {
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(61, 43, 26, 0.12);
  min-height: 460px;
}

.about-pillars {
  margin-top: 1rem;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

.pillars-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.pillar {
  padding: 2rem 1.25rem;
  border: 1px solid rgba(232, 223, 208, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.page-hero {
  padding: clamp(8rem, 12vw, 12rem) clamp(1.25rem, 5vw, 6rem) clamp(4rem, 7vw, 5.5rem);
}

.product-filters {
  padding: 2rem clamp(1.25rem, 5vw, 6rem) 0;
}

.products-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 7vw, 6rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.product-card {
  border-radius: 8px;
  background: #fffaf5;
  border: 1px solid rgba(196, 168, 130, 0.22);
  box-shadow: 0 14px 34px rgba(61, 43, 26, 0.08);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(61, 43, 26, 0.14);
}

.product-card-visual {
  height: auto;
  aspect-ratio: 1 / 1;
  background: #f4eadf;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1.35rem;
}

.product-card-name {
  font-size: 1.18rem;
  line-height: 1.25;
}

.product-card-footer {
  gap: 1rem;
  align-items: center;
}

.product-card-btn {
  border-radius: 999px;
  white-space: nowrap;
  background: #fffdf9;
}

@media (max-width: 900px) {
  .template-page .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-left {
    position: static;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  @media (max-width: 560px) {
    nav {
      align-items: flex-start;
      padding: 1rem 1.25rem;
    }

    .nav-logo { padding-top: 0.25rem; }

    .cart-wrapper {
      flex-wrap: wrap;
      justify-content: flex-end;
      max-width: calc(100% - 135px);
    }

    .account-nav {
      order: 3;
      width: 100%;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .account-nav-link {
      min-height: 32px;
      padding: 0.52rem 0.68rem;
      font-size: 0.56rem;
    }

    .account-nav-offer {
      position: static;
      display: block;
      width: 100%;
      margin-top: 0.25rem;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      font-size: 0.58rem;
      line-height: 1.35;
      opacity: 1;
      text-align: right;
      transform: none;
    }

    .account-nav-offer strong {
      margin-bottom: 0.15rem;
      font-size: 0.58rem;
      letter-spacing: 0.09em;
    }

    .pillars-grid,
    .products-grid {
      grid-template-columns: 1fr;
    }

  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card-btn {
    width: 100%;
  }
}

/* Soar Essentials shop premium polish */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  margin: 0;
  padding: clamp(8rem, 11vw, 11.5rem) clamp(1.25rem, 6vw, 6.5rem) clamp(4rem, 7vw, 5.75rem);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.96), rgba(244, 234, 223, 0.88)),
    radial-gradient(circle at 84% 24%, rgba(196, 168, 130, 0.18), transparent 34%);
  border-bottom: 1px solid rgba(196, 168, 130, 0.18);
  animation: soarShopFade 640ms ease both;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(1.25rem, 6vw, 6.5rem) 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 43, 26, 0.2), transparent);
  opacity: 0.7;
}

.page-hero-eyebrow {
  max-width: 1180px;
  margin: 0 auto 1.05rem;
  color: rgba(61, 43, 26, 0.66);
  letter-spacing: 0.18em;
}

.page-hero-title {
  max-width: 1180px;
  margin: 0 auto;
  color: #2f241b;
  text-wrap: balance;
}

.product-filters {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 5vw, 4rem) 0;
  justify-content: center;
  gap: 0.7rem;
  animation: soarShopFade 720ms ease 80ms both;
}

.filter-btn {
  min-height: 44px;
  padding: 0.86rem 1.25rem;
  border-color: rgba(139, 107, 74, 0.3);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 8px 22px rgba(61, 43, 26, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(61, 43, 26, 0.48);
  box-shadow: 0 14px 30px rgba(61, 43, 26, 0.1);
}

.filter-btn.active {
  background: #3d2b1a;
  border-color: #3d2b1a;
  color: #fffaf5;
  box-shadow: 0 16px 34px rgba(61, 43, 26, 0.18);
}

.products-grid {
  max-width: 1260px;
  padding-top: clamp(2.25rem, 5vw, 4.25rem);
  animation: soarShopFade 760ms ease 140ms both;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: 0 18px 45px rgba(61, 43, 26, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  will-change: transform;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(196, 168, 130, 0.42);
  background: #fffdf9;
  box-shadow: 0 28px 62px rgba(61, 43, 26, 0.14);
}

.product-card a {
  display: contents;
}

.product-card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(145deg, rgba(244, 234, 223, 0.82), rgba(255, 250, 245, 0.92));
}

.product-card-visual::after {
  background: linear-gradient(180deg, transparent 62%, rgba(61, 43, 26, 0.08));
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.01);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
}

.product-card-name {
  margin-bottom: 0.65rem;
  color: #2f241b;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.product-card-desc {
  flex: 1;
  color: rgba(61, 43, 26, 0.64);
  font-size: 0.93rem;
  line-height: 1.65;
}

.product-card-footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 168, 130, 0.18);
}

.product-card-price {
  color: #3d2b1a;
  font-size: 1.02rem;
  font-weight: 600;
}

.product-card-btn {
  min-height: 42px;
  padding: 0.84rem 1.2rem;
  border-radius: 999px;
  border-color: rgba(61, 43, 26, 0.34);
  background: #fffaf5;
  color: #3d2b1a;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.product-card-btn:hover,
.product-card-btn:focus-visible {
  transform: translateY(-2px);
  background: #3d2b1a;
  border-color: #3d2b1a;
  color: #fffaf5;
  box-shadow: 0 14px 28px rgba(61, 43, 26, 0.2);
}

.product-card-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

@keyframes soarShopFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero,
  .product-filters,
  .products-grid,
  .filter-btn,
  .product-card,
  .product-card-image,
  .product-card-btn {
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding-top: 7rem;
  }

  .products-grid {
    gap: 1.15rem;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 5.75rem 1.25rem 3rem;
  }

  .page-hero-title {
    font-size: clamp(2.35rem, 15vw, 3.4rem);
  }

  .product-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 1.25rem;
    scroll-padding-inline: 1.25rem;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding-inline: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    padding-top: 1.75rem;
  }

  .product-card {
    border-radius: 9px;
  }

  .product-card-body {
    padding: 1.2rem;
  }
}

/* Live collection section specificity: keeps Shopify section CSS from flattening the shop polish. */
#shopify-section-template--21851683225657__main .page-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(244, 234, 223, 0.9)),
    radial-gradient(circle at 86% 18%, rgba(196, 168, 130, 0.2), transparent 36%);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
}

#shopify-section-template--21851683225657__main .product-filters {
  gap: 0.7rem;
}

#shopify-section-template--21851683225657__main .filter-btn {
  min-height: 44px;
  padding: 0.86rem 1.25rem;
  background: rgba(255, 253, 249, 0.9);
  border-color: rgba(139, 107, 74, 0.3);
  box-shadow: 0 8px 22px rgba(61, 43, 26, 0.045);
}

#shopify-section-template--21851683225657__main .filter-btn:hover,
#shopify-section-template--21851683225657__main .filter-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(61, 43, 26, 0.1);
}

#shopify-section-template--21851683225657__main .filter-btn.active {
  background: #3d2b1a;
  border-color: #3d2b1a;
  color: #fffaf5;
}

.shop-welcome-offer {
  box-sizing: border-box;
  max-width: 760px;
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid rgba(196, 168, 130, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 12px 30px rgba(61, 43, 26, 0.06);
  color: rgba(61, 43, 26, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.shop-welcome-offer strong,
.shop-welcome-offer b {
  color: var(--soil);
  font-weight: 500;
}

.shop-welcome-offer b {
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  .shop-welcome-offer {
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
  }
}

#shopify-section-template--21851683225657__main .products-grid {
  max-width: 1260px;
  gap: clamp(1.25rem, 3vw, 2.1rem);
}

#shopify-section-template--21851683225657__main .products-grid[data-visible-count="1"] {
  grid-template-columns: minmax(0, 380px);
  justify-content: center;
}

#shopify-section-template--21851683225657__main .products-grid[data-visible-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}

#shopify-section-template--21851683225657__main .product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(196, 168, 130, 0.22);
  box-shadow: 0 20px 48px rgba(61, 43, 26, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

#shopify-section-template--21851683225657__main .product-card:hover,
#shopify-section-template--21851683225657__main .product-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(196, 168, 130, 0.44);
  background: #fffdf9;
  box-shadow: 0 30px 64px rgba(61, 43, 26, 0.15);
}

#shopify-section-template--21851683225657__main .product-card-visual {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, rgba(244, 234, 223, 0.86), rgba(255, 250, 245, 0.94));
}

#shopify-section-template--21851683225657__main .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

#shopify-section-template--21851683225657__main .product-card:hover .product-card-image {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.01);
}

#shopify-section-template--21851683225657__main .product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
}

#shopify-section-template--21851683225657__main .product-card-name {
  margin-bottom: 0.65rem;
  color: #2f241b;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.22;
}

#shopify-section-template--21851683225657__main .product-card-desc {
  flex: 1;
  color: rgba(61, 43, 26, 0.64);
  font-size: 0.93rem;
  line-height: 1.65;
}

#shopify-section-template--21851683225657__main .product-card-footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 168, 130, 0.18);
}

#shopify-section-template--21851683225657__main .product-card-price {
  color: #3d2b1a;
  font-size: 1.02rem;
  font-weight: 600;
}

#shopify-section-template--21851683225657__main .product-card-btn {
  min-height: 42px;
  padding: 0.84rem 1.2rem;
  border-radius: 999px;
  border-color: rgba(61, 43, 26, 0.34);
  background: #fffaf5;
  color: #3d2b1a;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

#shopify-section-template--21851683225657__main .product-card-btn:hover,
#shopify-section-template--21851683225657__main .product-card-btn:focus-visible {
  transform: translateY(-2px);
  background: #3d2b1a;
  border-color: #3d2b1a;
  color: #fffaf5;
  box-shadow: 0 14px 28px rgba(61, 43, 26, 0.2);
}

@media (max-width: 560px) {
  #shopify-section-template--21851683225657__main .product-filters {
    justify-content: flex-start;
    overflow-x: auto;
  }

  #shopify-section-template--21851683225657__main .products-grid {
    grid-template-columns: 1fr;
  }

  #shopify-section-template--21851683225657__main .products-grid[data-visible-count] {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
}

/* Visual-only guard against Shopify section custom CSS order. */
#shopify-section-template--21851683225657__main .product-card {
  background: rgba(255, 253, 249, 0.96) !important;
  border-color: rgba(196, 168, 130, 0.22) !important;
  box-shadow: 0 20px 48px rgba(61, 43, 26, 0.09) !important;
}

#shopify-section-template--21851683225657__main .product-card:hover,
#shopify-section-template--21851683225657__main .product-card:focus-within {
  box-shadow: 0 30px 64px rgba(61, 43, 26, 0.15) !important;
}

#shopify-section-template--21851683225657__main .product-card-name {
  color: #2f241b !important;
}

#shopify-section-template--21851683225657__main .product-card-desc {
  color: rgba(61, 43, 26, 0.64) !important;
}

/* Responsive stability pass: prevents mobile clipping without changing site structure. */
img,
video,
svg {
  max-width: 100%;
}

.main-content,
section,
.products-grid,
.product-card,
.product-card-body,
.product-card-footer,
.product-detail,
.cart-page,
.contact-section,
.about-intro {
  min-width: 0;
}

.product-card-name,
.product-card-desc,
.product-card-price,
.product-card-btn,
.filter-btn,
.account-nav-link,
.account-nav-offer,
.product-title,
.product-detail-description,
.cart-item,
.cart-page h1,
.page-hero-title {
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-card-name,
#shopify-section-template--21851683225657__main .product-card-name {
  display: block;
  height: auto;
  min-height: 0;
  overflow: visible;
  line-height: 1.3;
  text-wrap: pretty;
}

.product-card-desc,
#shopify-section-template--21851683225657__main .product-card-desc {
  display: block;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.product-card-footer,
#shopify-section-template--21851683225657__main .product-card-footer {
  flex-wrap: wrap;
  min-height: 0;
}

.product-card-btn,
#shopify-section-template--21851683225657__main .product-card-btn {
  height: auto;
  min-width: 0;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.filter-btn {
  line-height: 1.2;
  white-space: nowrap;
}

.product-detail-media {
  overflow: hidden;
}

.cart-item {
  min-width: 0;
}

@media (max-width: 1024px) {
  nav {
    gap: 1.2rem;
    padding-inline: 2rem;
  }

  .nav-links {
    gap: 1.45rem;
  }

  .cart-wrapper {
    gap: 0.65rem;
  }

  .account-nav-link {
    padding-inline: 0.82rem;
  }

  .page-hero-title,
  .hero-title,
  .about-intro-left h1,
  .about-intro-left h2,
  .contact-left h1,
  .contact-left h2 {
    text-wrap: balance;
  }

  .product-detail {
    gap: 2.25rem;
  }
}

@media (max-width: 768px) {
  .page-hero,
  #shopify-section-template--21851683225657__main .page-hero {
    overflow: visible;
    padding-bottom: 3.75rem;
  }

  .page-hero-title,
  #shopify-section-template--21851683225657__main .page-hero-title {
    line-height: 1.16;
    padding-bottom: 0.12em;
  }

  .products-grid,
  #shopify-section-template--21851683225657__main .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
  }

  .product-card,
  #shopify-section-template--21851683225657__main .product-card {
    min-height: 0;
  }

  .product-card-body,
  #shopify-section-template--21851683225657__main .product-card-body {
    padding: 1.1rem;
  }

  .product-card-footer,
  #shopify-section-template--21851683225657__main .product-card-footer {
    gap: 0.75rem;
  }

  .product-detail-media {
    min-height: 360px;
  }

  .product-detail-media img {
    max-height: 360px;
  }

  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  body {
    overflow-x: clip;
  }

  nav {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-logo {
    max-width: 36%;
    font-size: 1.05rem;
    line-height: 1.55;
    letter-spacing: 0.15em;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .cart-wrapper {
    max-width: 64%;
  }

  .account-nav {
    gap: 0.35rem;
  }

  .account-nav-link {
    min-height: 30px;
    padding: 0.48rem 0.58rem;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .account-nav-offer {
    font-size: 0.54rem;
  }

  .account-nav-offer strong {
    font-size: 0.54rem;
  }

  .page-hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .page-hero-title {
    line-height: 1.14;
    padding-bottom: 0.15em;
  }

  .product-filters,
  #shopify-section-template--21851683225657__main .product-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.55rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop-welcome-offer {
    position: relative;
    z-index: 3;
    width: calc(100% - 2.5rem);
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.2rem;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    line-height: 1.45;
    min-height: auto;
    white-space: normal;
    overflow: visible;
  }

  .shop-welcome-offer strong,
  .shop-welcome-offer span {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .product-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .products-grid,
  #shopify-section-template--21851683225657__main .products-grid {
    grid-template-columns: 1fr;
    padding-inline: 1.1rem;
  }

  .product-card,
  #shopify-section-template--21851683225657__main .product-card {
    width: 100%;
    min-height: 0;
    overflow: visible;
  }

  .product-card-visual,
  #shopify-section-template--21851683225657__main .product-card-visual {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
  }

  .product-card-name,
  #shopify-section-template--21851683225657__main .product-card-name {
    font-size: 1.05rem;
    line-height: 1.32;
  }

  .product-card-desc,
  #shopify-section-template--21851683225657__main .product-card-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .product-card-footer,
  #shopify-section-template--21851683225657__main .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card-btn,
  #shopify-section-template--21851683225657__main .product-card-btn {
    width: 100%;
  }

  .product-detail,
  .cart-page,
  .template-page .contact-section,
  .about-intro {
    padding-inline: 1.25rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-total {
    text-align: left;
  }
}

@media (max-width: 375px) {
  nav {
    padding-inline: 1rem;
  }

  .nav-logo {
    font-size: 0.96rem;
    letter-spacing: 0.12em;
  }

  .cart-wrapper {
    max-width: 62%;
    gap: 0.4rem;
  }

  .account-nav-link {
    padding-inline: 0.5rem;
    font-size: 0.5rem;
  }

  .account-nav-offer,
  .account-nav-offer strong {
    font-size: 0.5rem;
  }

  .page-hero-title,
  .hero-title {
    font-size: clamp(2.1rem, 13vw, 3rem);
  }
}

/* Cart polish: warmer, cleaner checkout step without changing Shopify cart logic. */
.cart-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(8rem, 11vw, 12rem) clamp(1.25rem, 6vw, 5rem) clamp(4rem, 8vw, 6.5rem);
}

.cart-page h1 {
  margin: 0 0 0.65rem;
  color: var(--soil);
  line-height: 1.16;
  letter-spacing: 0;
  padding-bottom: 0.08em;
}

.cart-page > p:first-of-type {
  max-width: 560px;
  margin: 0 0 1.5rem;
  color: rgba(61, 43, 26, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.cart-page form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.cart-page form::before {
  content: "Review your items";
  display: block;
  color: rgba(61, 43, 26, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-item {
  grid-template-columns: 116px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: 1.15rem;
  border: 1px solid rgba(196, 168, 130, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 16px 42px rgba(61, 43, 26, 0.055);
}

.cart-item img {
  width: 116px;
  height: 116px;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 168, 130, 0.16);
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.95), rgba(255, 253, 249, 0.95));
}

.cart-item h3 {
  margin: 0 0 0.45rem;
  color: var(--soil);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
}

.cart-item p {
  margin: 0 0 0.85rem;
  color: rgba(61, 43, 26, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item input[type="number"] {
  width: 5.75rem;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(196, 168, 130, 0.32);
  border-radius: 999px;
  background: var(--white);
  color: var(--soil);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.cart-item input[type="number"]::-webkit-outer-spin-button,
.cart-item input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cart-item > div:last-child {
  color: var(--soil);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  white-space: nowrap;
}

.cart-total {
  margin: 1.25rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(196, 168, 130, 0.28);
  color: var(--soil);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.cart-page form > .btn-primary {
  justify-self: end;
  min-width: 170px;
  margin-top: 0.35rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.cart-page form > .btn-primary:hover,
.cart-page form > .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(61, 43, 26, 0.16);
}

.cart-page form > .btn-primary[name="checkout"] {
  background: var(--soil);
  color: var(--white);
}

.cart-page form > .btn-primary[name="update"] {
  background: rgba(255, 253, 249, 0.92);
  color: var(--soil);
  border: 1px solid rgba(61, 43, 26, 0.18);
}

.cart-page > p .btn-primary {
  border-radius: 999px;
}

@media (max-width: 768px) {
  .cart-page {
    padding-top: 7.5rem;
  }

  .cart-page form {
    gap: 0.85rem;
  }

  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
    padding: 1rem;
  }

  .cart-item img {
    width: 92px;
    height: 92px;
  }

  .cart-item > div:last-child {
    grid-column: 2;
    font-size: 1.25rem;
  }

  .cart-page form > .btn-primary {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: 180px;
  }

  .cart-item > div:last-child {
    grid-column: auto;
  }
}

/* Mobile header fix: keep the account promo from covering page content. */
@media (max-width: 768px) {
  .account-nav-offer {
    display: none !important;
  }
}

/* Coastal Fresh redesign */
body {
  background:
    linear-gradient(180deg, rgba(215, 244, 250, 0.58), rgba(255, 255, 255, 0.94) 340px),
    #ffffff;
  color: var(--soil);
}

nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(142, 223, 227, 0.42);
  box-shadow: 0 10px 34px rgba(31, 63, 74, 0.06);
}

.nav-logo,
.nav-links a,
.account-nav-link,
.cart-icon {
  color: var(--soil);
}

.nav-logo span,
.hero-title em,
.page-hero-title em,
.product-card-price {
  color: var(--bark);
}

.nav-links a::after {
  background: var(--clay);
}

.nav-cta,
.product-card-btn,
#shopify-section-template--21851683225657__main .product-card-btn {
  border-color: rgba(31, 63, 74, 0.28);
  background: #ffffff;
  color: var(--soil);
}

.nav-cta:hover,
.product-card-btn:hover,
.product-card-btn:focus-visible,
#shopify-section-template--21851683225657__main .product-card-btn:hover,
#shopify-section-template--21851683225657__main .product-card-btn:focus-visible {
  background: var(--soil);
  border-color: var(--soil);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 63, 74, 0.2);
}

.account-nav-link {
  border-color: rgba(142, 223, 227, 0.58);
  background: rgba(255, 255, 255, 0.78);
}

.account-nav-link--primary {
  background: var(--soil);
  border-color: var(--soil);
  color: #ffffff;
}

.account-nav-offer,
.contact-left,
.contact-form-wrap,
.product-card,
#shopify-section-template--21851683225657__main .product-card,
.shop-welcome-offer {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(142, 223, 227, 0.36) !important;
  box-shadow: 0 20px 48px rgba(31, 63, 74, 0.09) !important;
}

.page-hero,
#shopify-section-template--21851683225657__main .page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(142, 223, 227, 0.42), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #d7f4fa 58%, rgba(232, 216, 195, 0.72) 100%) !important;
  border-bottom-color: rgba(142, 223, 227, 0.34);
}

.page-hero::after {
  background: linear-gradient(90deg, transparent, rgba(31, 63, 74, 0.22), transparent);
}

.page-hero-eyebrow,
.filter-btn,
.product-card-desc,
#shopify-section-template--21851683225657__main .product-card-desc,
.contact-form-intro p {
  color: rgba(31, 63, 74, 0.7) !important;
}

.page-hero-title,
.product-card-name,
#shopify-section-template--21851683225657__main .product-card-name,
.contact-left h1,
.contact-left h2,
.about-intro-left h1,
.about-intro-left h2 {
  color: var(--soil) !important;
}

.filter-btn,
#shopify-section-template--21851683225657__main .filter-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(142, 223, 227, 0.46);
  box-shadow: 0 8px 22px rgba(31, 63, 74, 0.05);
}

.filter-btn.active,
#shopify-section-template--21851683225657__main .filter-btn.active {
  background: var(--soil);
  border-color: var(--soil);
  color: #ffffff !important;
}

.product-card-visual,
#shopify-section-template--21851683225657__main .product-card-visual,
.product-detail-media {
  background:
    radial-gradient(circle at 75% 20%, rgba(142, 223, 227, 0.34), transparent 32%),
    linear-gradient(145deg, rgba(215, 244, 250, 0.75), rgba(255, 255, 255, 0.95));
}

.product-card-footer,
#shopify-section-template--21851683225657__main .product-card-footer {
  border-top-color: rgba(142, 223, 227, 0.32);
}

.about-visual {
  background:
    radial-gradient(circle at 26% 20%, rgba(142, 223, 227, 0.52), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #d7f4fa 50%, #e8d8c3 100%);
  box-shadow: 0 24px 60px rgba(31, 63, 74, 0.12);
}

.about-pillars {
  background: linear-gradient(135deg, #1f3f4a, #2f7785);
}

.pillar {
  border-color: rgba(215, 244, 250, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

footer {
  background: #1f3f4a;
}

@media (max-width: 430px) {
  nav {
    background: rgba(255, 255, 255, 0.96);
  }
}
