@import url("https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Nunito:wght@500;600;700;800;900&display=swap");

:root {
  --bg: #fbf6f2;
  --bg-accent: #f7eeea;
  --surface: rgba(255, 252, 249, 0.88);
  --surface-strong: rgba(255, 249, 246, 0.96);
  --surface-blush: linear-gradient(180deg, rgba(249, 230, 228, 0.96), rgba(245, 220, 217, 0.9));
  --line: rgba(168, 128, 124, 0.2);
  --text: #5f453f;
  --muted: #93736c;
  --accent: #b98780;
  --accent-soft: #efe1db;
  --shadow-soft: 0 18px 40px rgba(182, 147, 141, 0.16);
  --shadow-hover: 0 22px 48px rgba(182, 147, 141, 0.22);
  --radius-card: 22px;
  --container-max: 1024px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 232, 230, 0.95), transparent 28%),
    radial-gradient(circle at right 18%, rgba(239, 224, 220, 0.72), transparent 20%),
    linear-gradient(180deg, #f8f2ee 0%, #fcf8f5 34%, #f6efeb 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

/* Snowberry Belle theme shared by all non-home pages. */
:root {
  --bg: #fde7ef;
  --bg-accent: #f9cddc;
  --surface: rgba(255, 244, 249, 0.88);
  --surface-strong: rgba(255, 250, 253, 0.96);
  --surface-blush: linear-gradient(180deg, rgba(255, 239, 247, 0.96), rgba(249, 207, 223, 0.88));
  --line: rgba(195, 125, 143, 0.22);
  --text: #a86c78;
  --muted: #b98590;
  --accent: #c87686;
  --accent-soft: #ffe7ef;
  --shadow-soft: 0 16px 36px rgba(189, 104, 130, 0.16);
  --shadow-hover: 0 20px 44px rgba(189, 104, 130, 0.24);
  --radius-card: 16px;
  --container-max: 980px;
}

.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;
}

main {
  overflow-x: clip;
}

.container,
.section,
.blog-main,
.article-main,
.product-main,
.contact-main {
  width: min(var(--container-max), calc(100% - 1.8rem));
  margin-inline: auto;
}

.section {
  margin-top: 2rem;
}

.section-shell,
.article-post,
.product-shell,
.about-card,
.blog-intro,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.section-shell,
.article-post,
.product-shell,
.about-card,
.blog-intro,
.contact-card {
  padding: 1rem;
}

.section-head {
  margin-bottom: 0.9rem;
}

.section-head h2 {
  font-size: clamp(2rem, 6.5vw, 2.6rem);
}

.eyebrow,
.hero-kicker,
.article-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding-top: 0.7rem;
  background: linear-gradient(180deg, rgba(248, 242, 238, 0.94), rgba(248, 242, 238, 0.7), transparent);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.2rem 0 0.6rem;
}

.brand {
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: 0.08em;
}

.menu-toggle,
body.nav-enhanced .menu-toggle,
.mobile-bottom-nav {
  display: none !important;
}

.menu,
body.nav-enhanced .menu {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.45rem;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.menu a {
  min-height: auto;
  padding: 0.18rem 0.3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(111, 85, 80, 0.76);
}

.menu a[aria-current="page"],
.menu a.active {
  background: transparent;
  color: var(--accent);
}

.header-search {
  width: min(100%, 28rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem;
}

.header-search__input {
  min-width: 0;
  height: 2.35rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(168, 128, 124, 0.22);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.header-search__input::placeholder {
  color: rgba(147, 115, 108, 0.8);
}

.header-search__input:focus {
  border-color: rgba(185, 135, 128, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(185, 135, 128, 0.14);
}

.header-search__button:focus-visible {
  outline: 3px solid rgba(185, 135, 128, 0.28);
  outline-offset: 3px;
}

.header-search__button {
  position: relative;
  width: 2.35rem;
  min-height: 2.35rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(140deg, #b89267, #89633d);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(120, 87, 54, 0.18);
}

.header-search__button::before {
  content: "";
  width: 0.88rem;
  height: 0.88rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0.38rem 0.38rem 0 -0.28rem currentColor;
  transform: translate(-0.08rem, -0.08rem);
}

.header-search__button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.shop-search-reset {
  font-weight: 800;
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.ambient-shape {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(16px);
}

.ambient-shape--one {
  top: 8rem;
  left: -4rem;
  width: 10rem;
  height: 18rem;
  background: rgba(246, 231, 229, 0.9);
}

.ambient-shape--two {
  right: -3rem;
  bottom: 8rem;
  width: 10rem;
  height: 12rem;
  background: rgba(240, 227, 220, 0.72);
}

.hero {
  margin-top: 0.75rem;
}

.hero-media-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.6;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: #ecd9d5;
}

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

.hero-overlay {
  position: absolute;
  left: 7%;
  top: 17%;
  width: min(18rem, 47%);
  padding: 1rem 1rem 1.05rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(249, 232, 229, 0.8), rgba(249, 232, 229, 0.55));
  box-shadow: 0 12px 26px rgba(169, 135, 129, 0.12);
}

.hero-overlay h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.1rem, 8vw, 4.2rem);
  color: #a97873;
}

.hero-overlay h1 em {
  font-style: italic;
  font-weight: 500;
  color: #8d6f69;
}

.hero-link,
.blog-read-more,
.back-blog,
.product-back {
  min-height: 42px;
  border: 1px solid rgba(184, 146, 139, 0.34);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 248, 245, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hero-link {
  margin-top: 1rem;
}

.back-blog,
.product-back {
  color: var(--text);
}

.hero-link:active,
.blog-read-more:active,
.product-back:active,
.back-blog:active,
.category-link:active,
.product-cta:active {
  transform: scale(0.98);
}

.look-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.look-card,
.featured-card,
.category-item,
.product-card,
.blog-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.look-card .image-wrap,
.featured-media,
.product-card-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.look-card img,
.featured-card img,
.product-card img,
.blog-card img {
  height: 100%;
  object-fit: cover;
}

.look-card p {
  padding: 0.6rem 0.7rem 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.categories {
  padding: 1rem 0.85rem 0.95rem;
  background: rgba(253, 248, 244, 0.9);
  border: 1.25px solid rgba(190, 157, 148, 0.34);
  border-radius: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.category-item {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.category-link {
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.circle {
  width: clamp(2.9rem, 11vw, 4.5rem);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  padding: 0.18rem;
  background: linear-gradient(180deg, rgba(255, 249, 246, 0.98), rgba(246, 230, 225, 0.95));
  box-shadow: inset 0 0 0 1px rgba(186, 153, 144, 0.2);
}

.circle img {
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.category-item p {
  font-size: 0.63rem;
  color: #735953;
}

.featured {
  margin-bottom: 2rem;
}

.featured-card {
  background: rgba(255, 252, 250, 0.92);
}

.featured-link {
  display: block;
}

.blog-main,
.article-main,
.product-main,
.shop-main,
.contact-main {
  margin-top: 1.25rem;
}

.about,
.contact-main {
  margin-bottom: 2rem;
}

.about-card h2,
.blog-intro h1,
.article-header h1,
.product-content h1,
.contact-copy h1 {
  font-size: clamp(2.25rem, 8vw, 3.8rem);
}

.about-card p + p,
.contact-copy p,
.blog-intro-copy,
.product-summary,
.product-disclosure,
.product-data-note,
.article-content p + p {
  margin-top: 0.85rem;
}

.blog-intro-copy,
.blog-excerpt,
.contact-copy p,
.product-summary,
.product-disclosure,
.product-data-note,
.article-content p,
.article-content li {
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 1.25rem;
}

.contact-copy {
  display: grid;
  gap: 0.85rem;
}

.contact-copy a {
  color: var(--accent);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 700;
}

.contact-form span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(168, 128, 124, 0.24);
  border-radius: 18px;
  background: rgba(255, 252, 249, 0.9);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input {
  min-height: 46px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
  padding: 0.8rem 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(185, 135, 128, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(185, 135, 128, 0.14);
}

.contact-submit {
  min-height: 46px;
  width: fit-content;
  border: 1px solid rgba(184, 146, 139, 0.26);
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  background: linear-gradient(140deg, #b89267, #89633d);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(120, 87, 54, 0.24);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-submit:active {
  transform: scale(0.98);
}

.blog-feed {
  margin: 1.25rem 0 2.5rem;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.blog-card-media {
  aspect-ratio: 3 / 2;
}

.blog-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.blog-card h2 {
  font-size: 1.75rem;
}

.blog-read-more {
  width: fit-content;
}

.article-post,
.product-shell {
  margin-bottom: 2.5rem;
}

.article-hero {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.article-hero img,
.product-media img {
  height: 100%;
  object-fit: cover;
}

.soft-divider {
  border: 0;
  height: 1px;
  margin: 1.2rem 0;
  background: rgba(175, 143, 137, 0.18);
}

.article-content {
  max-width: 68ch;
}

.article-content h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
}

.article-content h3 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.45rem, 4.5vw, 2rem);
}

.article-content ul,
.product-specs {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.product-layout {
  display: grid;
  gap: 1.25rem;
}

.product-media {
  overflow: hidden;
  border-radius: 22px;
}

.product-media--gallery {
  display: grid;
  gap: 0.75rem;
}

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

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 0.55rem;
}

.product-thumb {
  border: 1px solid rgba(184, 146, 139, 0.24);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 251, 248, 0.9);
  cursor: pointer;
}

.product-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(185, 135, 128, 0.45);
}

.product-thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-price {
  color: var(--accent);
}

.product-cta {
  min-height: 46px;
  border: 1px solid rgba(184, 146, 139, 0.26);
  border-radius: 999px;
  background: rgba(244, 233, 229, 0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-hero,
.shop-note,
.shop-section {
  padding: 1.15rem;
  scroll-margin-top: 110px;
}

.shop-hero {
  margin-top: 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(252, 242, 244, 0.98), rgba(247, 236, 232, 0.9)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 34%);
}

.shop-hero__content {
  max-width: 42rem;
}

.shop-hero h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.3rem, 8vw, 4.3rem);
  color: #a97873;
}

.shop-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #8d6f69;
}

.shop-hero__copy,
.shop-note__copy,
.shop-browser__copy,
.shop-section__copy {
  margin-top: 0.85rem;
  color: var(--muted);
}

.shop-browser {
  padding: 1.15rem;
}

.shop-note__title {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.shop-section__head h2 {
  font-size: clamp(2rem, 6.5vw, 3rem);
}

.shop-section.pickSection {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.shop-section__head {
  margin-bottom: 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}

.shop-section__head .shop-section__copy {
  max-width: 44rem;
}

.shopCategoryNav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.shopCategoryNav__link {
  min-height: 72px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(184, 146, 139, 0.2);
  background: rgba(255, 250, 247, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
}

.shopCategoryNav__count {
  min-width: 2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(239, 225, 219, 0.9);
  color: var(--accent);
  font-size: 0.72rem;
  text-align: center;
}

.shopCategoryNav__link[aria-current="true"],
.shopCategoryNav__link.active {
  border-color: rgba(185, 135, 128, 0.36);
  background: rgba(246, 233, 229, 0.92);
  color: var(--accent);
}

.cardGrid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 1rem;
}

.cardGrid > .productCard[hidden] {
  display: none;
}

.cardGrid:empty::after {
  content: "New picks will appear here.";
  display: block;
  padding: 1.15rem;
  border: 1px dashed rgba(184, 146, 139, 0.28);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.productCard {
  overflow: hidden;
  border-radius: 1.4rem;
  background: #ffffff;
  border: 1px solid #e8ddce;
  box-shadow: 0 10px 26px rgba(60, 47, 32, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}

.productCard__imgLink {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fbf7f0;
}

.productCard__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.productCard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.68rem;
  padding: 1rem;
}

.productCard__eyebrow {
  margin: 0;
  color: #89633d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.productCard__top {
  display: grid;
  gap: 0.35rem;
}

.productCard__title {
  color: #2f2922;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.37rem;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.productCard__price {
  color: #2f2922;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}

.productCard__copy {
  color: #6d6357;
}

.productCard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.productCard__link {
  min-height: 2.45rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.productCard__link--soft {
  border-color: #e8ddce;
  background: #ffffff;
  color: #2f2922;
}

.productCard__link--primary {
  color: #ffffff;
  background: linear-gradient(140deg, #b89267, #89633d);
  box-shadow: 0 12px 24px rgba(120, 87, 54, 0.28);
}

.productCard__link--primary:visited {
  color: #ffffff;
}

.shop-section.is-active-category {
  border-color: transparent;
  box-shadow: none;
}

.shop-section__footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.shop-section__count {
  color: var(--muted);
}

.shopPagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.shopPagination[hidden] {
  display: none;
}

.shopPagination__button {
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(184, 146, 139, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 245, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.shopPagination__button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.shopPagination__button.is-active {
  background: rgba(244, 233, 229, 0.92);
  color: var(--accent);
  border-color: rgba(185, 135, 128, 0.34);
}

.site-footer {
  width: min(var(--container-max), calc(100% - 1.8rem));
  margin: 3.4rem auto 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 10px 25px rgba(56, 44, 30, 0.08);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.footer-disclosure {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .look-card:hover,
  .featured-card:hover,
  .blog-card:hover,
  .product-card:hover,
  .hero-link:hover,
  .blog-read-more:hover,
  .product-cta:hover,
  .back-blog:hover,
  .product-back:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }

  .productCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(57, 45, 30, 0.18);
  }

  .productCard:hover .productCard__img {
    transform: scale(1.06);
  }

  .productCard__link:hover {
    transform: translateY(-2px);
  }

  .productCard__link--primary:hover {
    box-shadow: 0 16px 30px rgba(120, 87, 54, 0.35);
  }
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .nav {
    min-height: 88px;
  }

  .menu a {
    font-size: 0.68rem;
  }

  .header-search {
    width: min(100%, 34rem);
  }

  .section {
    margin-top: 2.4rem;
  }

  .section-shell,
  .article-post,
  .product-shell,
  .about-card,
  .blog-intro,
  .contact-card {
    padding: 1.3rem;
  }

  .contact-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

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

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

  .product-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

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

  .shop-hero,
  .shop-note,
  .shop-browser,
  .shop-section {
    padding: 1.35rem;
  }

  .shop-section.pickSection {
    padding: 0;
  }

  .site-footer {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .shop-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.shop-catalog-ready .shop-section {
    display: none;
  }

  body.shop-catalog-ready .shop-section.is-active-category {
    display: block;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Snowberry Belle visual refresh */
body {
  font-family: "Nunito", "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(255, 213, 228, 0.88), transparent 28%),
    linear-gradient(180deg, rgba(255, 240, 247, 0.96), rgba(249, 220, 231, 0.94) 48%, rgba(255, 244, 249, 0.98)),
    #f9dce7;
}

h1,
h2,
h3,
.brand,
.site-footer strong {
  font-family: "Cherry Bomb One", "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--accent);
  text-shadow:
    0 2px 0 #ffffff,
    0 5px 12px rgba(171, 92, 112, 0.18);
}

p,
li,
a,
button,
input,
textarea {
  font-family: "Nunito", "Manrope", sans-serif;
}

.container,
.section,
.blog-main,
.article-main,
.product-main,
.shop-main,
.contact-main {
  width: min(var(--container-max), calc(100% - 1.5rem));
}

.site-header {
  padding: 0.75rem 0 0;
  background:
    linear-gradient(180deg, rgba(252, 224, 236, 0.96), rgba(255, 244, 249, 0.94)),
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.78), transparent 42%);
  border-bottom: 0;
  box-shadow: 0 8px 22px rgba(193, 113, 137, 0.08);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 92px;
  gap: 0.65rem;
  padding: 0 0 0.7rem;
}

.brand {
  position: relative;
  font-size: clamp(2.05rem, 7vw, 3rem);
  line-height: 1;
  text-transform: none;
  color: #bb7986;
}

.brand::after {
  content: "✿";
  position: absolute;
  right: -1.2rem;
  top: -0.5rem;
  color: #dfa2b2;
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  text-shadow: 0 1px 0 #fff;
}

.menu,
body.nav-enhanced .menu {
  gap: 0.45rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.menu a {
  min-height: 1.75rem;
  padding: 0.28rem 0.72rem;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.86rem;
  font-weight: 900;
  color: #a9737e;
}

.menu a[aria-current="page"],
.menu a.active {
  color: #c67988;
  background: #ffe7ef;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.header-search {
  width: min(100%, 21rem);
  gap: 0.45rem;
}

.header-search__input {
  height: 2.35rem;
  border-radius: 999px;
  padding: 0 0.95rem;
  border: 2px solid rgba(235, 177, 192, 0.7);
  background: rgba(255, 253, 254, 0.94);
  color: #8f5f69;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-search__input::placeholder {
  color: rgba(174, 112, 126, 0.76);
}

.header-search__button {
  width: 2.35rem;
  min-height: 2.35rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: #f7b8c8;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(189, 104, 130, 0.18);
}

.ambient-shape {
  display: none;
}

.section {
  margin-top: 1.7rem;
}

.section-shell,
.article-post,
.product-shell,
.about-card,
.blog-intro,
.contact-card,
.shop-browser,
.shop-note,
.shop-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 250, 253, 0.92), rgba(255, 238, 246, 0.88)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.72), transparent 25%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.section-shell::before,
.article-post::before,
.product-shell::before,
.about-card::before,
.blog-intro::before,
.contact-card::before,
.shop-browser::before,
.shop-note::before,
.shop-hero::before {
  content: "✿";
  position: absolute;
  right: 1rem;
  top: 0.65rem;
  color: rgba(214, 138, 157, 0.38);
  font-size: 1.55rem;
  pointer-events: none;
}

.section-shell,
.article-post,
.product-shell,
.about-card,
.blog-intro,
.contact-card {
  padding: clamp(1rem, 3vw, 1.6rem);
}

.blog-main,
.article-main,
.product-main,
.shop-main,
.contact-main {
  margin-top: 1.35rem;
}

.eyebrow,
.hero-kicker,
.article-meta,
.shop-note__title {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
  font-weight: 900;
  color: #c77d8c;
}

.about-card h2,
.blog-intro h1,
.article-header h1,
.product-content h1,
.contact-copy h1,
.shop-hero h1,
.shop-section__head h2,
.shop-browser h2 {
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.04;
}

.about-card p,
.blog-intro-copy,
.blog-excerpt,
.contact-copy p,
.shop-hero__copy,
.shop-note__copy,
.shop-browser__copy,
.shop-section__copy,
.article-content p,
.article-content li,
.product-summary,
.product-disclosure,
.product-data-note {
  color: #9f6f78;
  font-weight: 700;
}

.blog-grid {
  gap: 1.05rem;
}

.blog-card,
.product-card,
.productCard {
  border-radius: 8px;
  background: rgba(255, 248, 252, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(189, 104, 130, 0.14);
}

.blog-card-media,
.article-hero,
.product-media,
.productCard__imgLink {
  border-radius: 7px;
  background: #f7d9e3;
}

.blog-card-body {
  gap: 0.55rem;
  padding: 0.85rem;
  text-align: center;
}

.blog-card h2 {
  font-size: 1.32rem;
  line-height: 1.08;
}

.blog-card h2::before {
  content: "✿ ";
  color: #e0a2b1;
  font-family: "Nunito", sans-serif;
  font-size: 0.92rem;
}

.blog-read-more,
.back-blog,
.product-back,
.product-cta,
.contact-submit,
.productCard__link,
.shopPagination__button {
  min-height: 2.35rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: #f7b8c8;
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(197, 119, 138, 0.22),
    0 8px 16px rgba(189, 104, 130, 0.18);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(169, 98, 115, 0.2);
}

.blog-read-more {
  justify-self: center;
}

.article-hero {
  border: 5px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(189, 104, 130, 0.12);
}

.article-content {
  margin-inline: auto;
}

.article-content h2,
.article-content h3 {
  line-height: 1.06;
}

.soft-divider {
  height: 10px;
  margin: 1.35rem 0;
  border: 0;
  background:
    radial-gradient(circle, #e9aebb 35%, transparent 38%) left center / 22px 10px repeat-x;
}

.contact-form input,
.contact-form textarea,
.header-search__input {
  border: 2px solid rgba(235, 177, 192, 0.62);
  border-radius: 14px;
  background: rgba(255, 253, 254, 0.92);
  color: #8f5f69;
  font-weight: 700;
}

.contact-form span {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 900;
  color: #c77d8c;
}

.shopCategoryNav {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.shopCategoryNav__link {
  min-height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 253, 254, 0.92);
  color: #b37380;
  font-weight: 900;
}

.shopCategoryNav__link::before {
  content: "✿";
  color: #e0a2b1;
}

.shopCategoryNav__count {
  background: #ffe3ed;
  color: #c87686;
}

.cardGrid:empty::after {
  border: 2px dashed rgba(216, 145, 163, 0.42);
  border-radius: 12px;
  background: rgba(255, 250, 253, 0.72);
  color: #a8727d;
  font-weight: 800;
}

.site-footer {
  position: relative;
  margin-top: 2.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 242, 248, 0.94), rgba(248, 205, 220, 0.82)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.7), transparent 32%);
  box-shadow: var(--shadow-soft);
  justify-content: center;
  text-align: center;
  color: #a8717b;
}

.site-footer strong {
  font-size: 1.65rem;
  color: #bb7986;
}

.footer-links {
  justify-content: center;
  gap: 0.45rem 1rem;
}

.footer-links a {
  color: #9f6f78;
  font-weight: 800;
}

.footer-disclosure {
  max-width: 44rem;
  color: #a8717b;
}

.hero {
  width: min(var(--container-max), calc(100% - 1.5rem));
}

.hero-media-wrap {
  aspect-ratio: auto;
  min-height: clamp(28rem, 62vw, 35rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #f8d7e2;
}

.hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(1.04);
}

.hero-media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 239, 247, 0.76), rgba(255, 239, 247, 0.34) 48%, rgba(255, 239, 247, 0.18));
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  left: clamp(1rem, 5vw, 3rem);
  top: 50%;
  width: min(32rem, calc(100% - 2rem));
  transform: translateY(-50%);
  padding: clamp(1.1rem, 4vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 247, 251, 0.84);
  box-shadow: 0 16px 36px rgba(189, 104, 130, 0.18);
}

.hero-overlay::before {
  content: "✿";
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  color: rgba(214, 138, 157, 0.45);
  font-size: 1.45rem;
}

.hero-overlay h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.25rem, 7vw, 4.4rem);
  line-height: 1;
  color: #c87686;
}

.hero-copy {
  margin-top: 0.8rem;
  color: #9f6f78;
  font-weight: 800;
}

.hero-link {
  margin-top: 1.1rem;
}

.categories {
  padding: clamp(1rem, 3vw, 1.6rem);
  text-align: center;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 1rem 0.75rem;
}

.category-link {
  gap: 0.55rem;
  color: #b37380;
  font-weight: 900;
}

.circle {
  width: clamp(5.1rem, 13vw, 7rem);
  border: 4px solid rgba(255, 255, 255, 0.82);
  padding: 0.28rem;
  background: rgba(255, 253, 254, 0.9);
  box-shadow: 0 10px 20px rgba(189, 104, 130, 0.14);
}

.category-item p {
  font-size: 0.95rem;
  color: #b37380;
}

@media (min-width: 768px) {
  .nav {
    min-height: 104px;
  }

  .section-shell,
  .article-post,
  .product-shell,
  .about-card,
  .blog-intro,
  .contact-card {
    padding: clamp(1.35rem, 3vw, 2rem);
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 2rem;
  }

  .brand::after {
    right: -0.85rem;
  }

  .menu,
  body.nav-enhanced .menu {
    width: 100%;
    padding: 0.3rem;
  }

  .menu a {
    padding-inline: 0.45rem;
    font-size: 0.78rem;
  }

  .hero {
    width: min(var(--container-max), calc(100% - 2.5rem));
  }

  .hero-media-wrap {
    aspect-ratio: 1376 / 768;
    min-height: auto;
  }

  .hero-media {
    position: static;
    display: block;
    height: auto;
    object-fit: contain;
  }
}
