/** Shopify CDN: Minification failed

Line 1058:0 All "@import" rules must come first

**/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Lobster+Two:ital,wght@0,700;1,700&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,800;1,900&display=swap');

:root {
  --pink: #f9dce9;
  --pink-light: #fde8f1;
  --pink-dark: #ecb5d8;
  --hot: #d82372;
  --purple: #4d265f;
  --purple-dark: #171228;
  --purple-soft: #7668e8;
  --cyan: #5ed1d8;
  --gold: #ffd454;
  --peach: #4d265f;
  --paper: #fffafb;
  --ink: #171228;
  --border: #241630;
  --shadow: #8b75eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--pink);
  background-image: linear-gradient(
    180deg,
    #fdeaf3 0%,
    #f9dce9 100%
  );
  color: var(--ink);
  font-family:"DM Sans", sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

/* Announcement bar */

.announcement {
  padding: 0.65rem 1rem;
  background: var(--purple);
  color: white;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem max(1rem, calc((100% - 1180px) / 2));
  background: rgba(249, 220, 233, 0.96);
  border-bottom: 1px solid rgba(77, 38, 95, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family:"Lobster Two", cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header nav a {
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--hot);
}

.menu-button {
  display: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

/* Shared widths */

.hero,
.collection,
.preorder,
.story,
.product-page,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Typography */

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--hot);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.collection h2,
.preorder h2,
.story h2,
.product-details h1 {
  margin: 0.2rem 0 1rem;
  color: var(--ink);
  font-family:"DM Sans", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-family:"Lobster Two", cursive;
  font-style: cursive;
  letter-spacing: -0.02em;
}

/* Hero */

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 5rem 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(23,18,40,.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-art {
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #483c7c, #35163f);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--shadow);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jar-mark {
  padding: 2rem;
  color: white;
  font-family: "Lobster Two", cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  text-align: center;
}

/* Buttons */

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--hot);
  box-shadow: 4px 4px 0 rgba(23, 18, 40, 0.22);
  color: white;
  padding: 0.85rem 1.35rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(23, 18, 40, 0.22);
}

.button:nth-child(2),
.actions .button + .button {
  background: var(--gold);
  color: var(--ink);
}

.text-link {
  color: var(--purple);
  font-weight: 900;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* Collection */

.collection {
  padding: 6rem 0;
}

.collection > .eyebrow,
.collection > h2 {
  text-align: center;
}

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

.product-card {
  overflow: hidden;
  padding: 1rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 7px 7px 0 rgba(77, 38, 95, 0.16);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 12px 0 rgba(77, 38, 95, 0.16);
}

.product-card:nth-child(2) {
  background: #fff0d3;
}

.product-card:nth-child(3) {
  background: #eee6ff;
}

.product-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 1rem 0 0.35rem;
  color: var(--ink);
  font-family:  "Lobster Two", cursive !important;
  font-size: 2rem;
  line-height: 1;
}

.scent {
  color: var(--hot);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Preorder section */

.preorder {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 4rem;
  padding: 6rem 0;
}

.preorder-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 250, 251, 0.92);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 9px 9px 0 rgba(118, 104, 232, 0.35);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font:  "Lobster Two", cursive !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 35, 114, 0.25);
  outline-offset: 2px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.preorder-form .button,
.preorder-form button {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--purple-dark);
  color: white;
  font: "Playfair Display", Georgia, serif ;
  font-weight: 900;
  cursor: pointer;
}

/* Brand story */

.story {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin-top: 2rem;
  margin-bottom: 6rem;
  padding: clamp(2.5rem, 7vw, 5rem);
  background:
    radial-gradient(
      circle at top right,
      rgba(216, 35, 114, 0.25),
      transparent 35%
    ),
    var(--purple);
  border-radius: 6px;
  color: white;
  box-shadow: 12px 12px 0 rgba(118, 104, 232, 0.32);
}

.story::after {
  content: "✦";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--gold);
  font-size: 2rem;
}

.story .eyebrow {
  color: var(--gold);
}

.story h2 {
  max-width: 760px;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.story p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

/* Product pages */

.product-page {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding: 4rem 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-gallery img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.product-details {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.price {
  color: var(--hot);
  font-size: 1.3rem;
  font-weight: 900;
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem 0;
  border-top: 1px solid rgba(77, 38, 95, 0.18);
}

.newsletter {
  display: flex;
  align-items: end;
  gap: 0.7rem;
}

/* Mobile */

@media (max-width: 760px) {
  .menu-button {
    display: block;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
  }

  .site-header nav a {
    padding: 0.8rem;
  }

  .site-header nav.is-open {
    display: flex;
  }

  .hero,
  .preorder,
  .product-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
    padding: 2rem 0 4rem;
  }

  .hero-art {
    min-height: 320px;
    order: -1;
    box-shadow: 7px 7px 0 var(--shadow);
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .preorder {
    gap: 2rem;
  }

  .preorder-form {
    grid-template-columns: 1fr;
  }

  .story {
    padding: 2rem;
  }

  .footer,
  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }
}html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Keep Shopify section backgrounds full width */
.shopify-section {
  width: 100%;
}

/* Center all main page sections */
.hero,
.collection,
.preorder,
.story,
.product-page,
.footer {
  width: calc(100% - 40px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* HERO */

.hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  align-items: center !important;
  gap: clamp(2rem, 5vw, 4.5rem) !important;
  padding: 5rem 0 !important;
}

.hero-copy,
.hero-art {
  width: 100% !important;
  min-width: 0 !important;
}

.hero-copy {
  max-width: 560px;
}

.hero-art {
  justify-self: stretch;
  max-width: 680px;
}

/* COLLECTION */

.collection {
  padding: 5rem 0 !important;
}

.collection > .eyebrow,
.collection > h2 {
  text-align: center;
}

.product-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.4rem !important;
}

.product-card {
  width: 100% !important;
  min-width: 0 !important;
}

/* PREORDER */

.preorder {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr) !important;
  align-items: start !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
  padding: 5rem 0 !important;
}

.preorder > div,
.preorder-form {
  width: 100% !important;
  min-width: 0 !important;
}

.preorder-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  padding: 1.5rem !important;
}

.preorder-form label {
  display: grid !important;
  width: 100% !important;
  gap: 0.45rem !important;
}

.preorder-form input,
.preorder-form select,
.preorder-form textarea,
.preorder-form button {
  width: 100% !important;
  max-width: 100% !important;
}

.preorder-form .wide,
.preorder-form textarea,
.preorder-form button {
  grid-column: 1 / -1 !important;
}

/* BRAND STORY */

.story {
  display: block !important;
  padding: clamp(2.5rem, 6vw, 5rem) !important;
  margin-top: 2rem !important;
  margin-bottom: 5rem !important;
}

.story h2,
.story p,
.story .eyebrow {
  max-width: 760px;
}

.story p {
  width: 100%;
}

/* PRODUCT PAGE */

.product-page {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) !important;
  align-items: start !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
  padding: 4rem 0 !important;
}

/* FOOTER */

.footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 3rem !important;
  padding: 4rem 0 !important;
}

.newsletter {
  width: min(100%, 500px);
}

/* Prevent text from stretching too wide */

.hero p,
.preorder p,
.story p,
.footer p {
  max-width: 650px;
}

/* TABLET + MOBILE */

@media screen and (max-width: 900px) {
  .hero,
  .preorder,
  .product-page {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .hero-art {
    max-width: none !important;
  }

  .hero-art {
    order: -1;
  }

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

@media screen and (max-width: 650px) {
  .hero,
  .collection,
  .preorder,
  .story,
  .product-page,
  .footer {
    width: calc(100% - 28px) !important;
  }

  .hero {
    padding: 2.5rem 0 4rem !important;
  }

  .product-grid,
  .preorder-form {
    grid-template-columns: 1fr !important;
  }

  .preorder-form > * {
    grid-column: 1 / -1 !important;
  }

  .story {
    padding: 2rem 1.35rem !important;
  }

  .footer {
    flex-direction: column !important;
  }

  .actions {
    width: 100%;
    flex-wrap: wrap;
  }
}
  /* ==================================================
   CENTER + LAYOUT REPAIR
   Paste at the very bottom of your CSS
================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Keep Shopify section backgrounds full width */
.shopify-section {
  width: 100%;
}

/* Center all main page sections */
.hero,
.collection,
.preorder,
.story,
.product-page,
.footer {
  width: calc(100% - 40px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* HERO */

.hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  align-items: center !important;
  gap: clamp(2rem, 5vw, 4.5rem) !important;
  padding: 5rem 0 !important;
}

.hero-copy,
.hero-art {
  width: 100% !important;
  min-width: 0 !important;
}

.hero-copy {
  max-width: 560px;
}

.hero-art {
  justify-self: stretch;
  max-width: 680px;
}

/* COLLECTION */

.collection {
  padding: 5rem 0 !important;
}

.collection > .eyebrow,
.collection > h2 {
  text-align: center;
}

.product-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.4rem !important;
}

.product-card {
  width: 100% !important;
  min-width: 0 !important;
}

/* PREORDER */

.preorder {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr) !important;
  align-items: start !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
  padding: 5rem 0 !important;
}

.preorder > div,
.preorder-form {
  width: 100% !important;
  min-width: 0 !important;
}

.preorder-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  padding: 1.5rem !important;
}

.preorder-form label {
  display: grid !important;
  width: 100% !important;
  gap: 0.45rem !important;
}

.preorder-form input,
.preorder-form select,
.preorder-form textarea,
.preorder-form button {
  width: 100% !important;
  max-width: 100% !important;
}

.preorder-form .wide,
.preorder-form textarea,
.preorder-form button {
  grid-column: 1 / -1 !important;
}

/* BRAND STORY */

.story {
  display: block !important;
  padding: clamp(2.5rem, 6vw, 5rem) !important;
  margin-top: 2rem !important;
  margin-bottom: 5rem !important;
}

.story h2,
.story p,
.story .eyebrow {
  max-width: 760px;
}

.story p {
  width: 100%;
}

/* PRODUCT PAGE */

.product-page {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) !important;
  align-items: start !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
  padding: 4rem 0 !important;
}

/* FOOTER */

.footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 3rem !important;
  padding: 4rem 0 !important;
}

.newsletter {
  width: min(100%, 500px);
}

/* Prevent text from stretching too wide */

.hero p,
.preorder p,
.story p,
.footer p {
  max-width: 650px;
}

/* TABLET + MOBILE */

@media screen and (max-width: 900px) {
  .hero,
  .preorder,
  .product-page {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .hero-art {
    max-width: none !important;
  }

  .hero-art {
    order: -1;
  }

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

@media screen and (max-width: 650px) {
  .hero,
  .collection,
  .preorder,
  .story,
  .product-page,
  .footer {
    width: calc(100% - 28px) !important;
  }

  .hero {
    padding: 2.5rem 0 4rem !important;
  }

  .product-grid,
  .preorder-form {
    grid-template-columns: 1fr !important;
  }

  .preorder-form > * {
    grid-column: 1 / -1 !important;
  }

  .story {
    padding: 2rem 1.35rem !important;
  }

  .footer {
    flex-direction: column !important;
  }

  .actions {
    width: 100%;
    flex-wrap: wrap;
  }
}/* Daydream Jar heading font fix */

@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,700;1,700&display=swap");

.hero h1,
.collection h2,
.preorder h2,
.story h2,
.product-details h1 {
  font-family: "Lobster Two", cursive !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.hero-art {
  max-width: 760px;
}

.hero {
  gap: 6rem;
}

