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

/* Mivielle Kids Boutique 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;
}

.collections {
  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,
.legal-card p + 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: 1;
  overflow: hidden;
}

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

/* Mivielle Kids Boutique 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,
.legal-card p,
.legal-card li,
.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;
}

.legal-card {
  display: grid;
  gap: 0.95rem;
}

.legal-card h1 {
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.04;
}

.legal-card h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  line-height: 1.18;
}

.legal-card ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.25rem;
}

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

.legal-updated {
  color: #c77d8c;
  font-size: 0.9rem;
}

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

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

/* Mivielle Kids Boutique reference design */
:root {
  --mivielle-ink: #19181d;
  --mivielle-muted: #5d5963;
  --mivielle-blue: #ccebf8;
  --mivielle-pink: #ffdce8;
  --mivielle-cream: #fff9ee;
  --mivielle-yellow: #ffe78b;
  --mivielle-card: #ffffff;
}

body {
  background: #fff;
  color: var(--mivielle-ink);
  font-family: "Manrope", "Inter", Arial, sans-serif;
}

.ambient-shape {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(210, 221, 226, 0.72);
  box-shadow: none;
}

.nav,
body.nav-enhanced .nav {
  min-height: 106px;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding-block: 1rem;
}

.brand,
.site-footer strong {
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0;
}

.brand::after {
  display: none;
}

.menu,
body.nav-enhanced .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  width: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.menu li {
  display: flex;
  align-items: center;
}

.menu li + li::before {
  content: "|";
  color: var(--mivielle-ink);
  margin: 0 0.85rem;
}

.menu a,
.footer-links a {
  min-height: auto;
  padding: 0;
  color: var(--mivielle-ink);
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.menu a[aria-current="page"],
.menu a.active {
  color: #8aaebf;
}

.section,
.section-shell {
  width: min(86.5rem, 100%);
}

.mivielle-hero {
  position: relative;
  width: 100%;
  min-height: clamp(21rem, 45vw, 38rem);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(110deg, #c9ecfb 0%, #e7f6fc 34%, #ffe1eb 74%, #ffd6e4 100%);
}

.mivielle-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 230, 130, 0.98) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(255, 174, 193, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(137, 177, 210, 0.46) 0 2px, transparent 3px);
  background-position: 8% 20%, 44% 22%, 80% 16%;
  background-size: 7rem 5rem, 9rem 6rem, 8rem 6rem;
  opacity: 0.75;
}

.mivielle-hero__sky {
  position: absolute;
  inset: 0;
}

.cloud {
  position: absolute;
  display: block;
  width: clamp(8rem, 20vw, 18rem);
  height: clamp(4rem, 9vw, 8rem);
  border: 2px solid rgba(127, 164, 185, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 52%, #fff 0 28%, transparent 29%),
    radial-gradient(circle at 42% 34%, #fff 0 34%, transparent 35%),
    radial-gradient(circle at 65% 52%, #fff 0 31%, transparent 32%),
    linear-gradient(#fff, #eaf7fd);
  box-shadow: inset 0 -0.6rem 0 rgba(191, 224, 239, 0.62);
}

.cloud--one { left: -5%; bottom: -2%; transform: scale(1.25); }
.cloud--two { left: 13%; top: 12%; transform: scale(0.56); }
.cloud--three { right: 7%; top: 10%; transform: scale(0.78); }
.cloud--four { right: -4%; bottom: -1%; transform: scale(1.18); }
.cloud--five { left: 28%; bottom: -7%; transform: scale(1.6); opacity: 0.9; }

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(42rem, calc(100% - 2rem));
  padding: 0;
  transform: translate(-50%, -42%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-overlay::before {
  display: none;
}

.hero-kicker,
.eyebrow {
  color: #8aaebf;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero-overlay h1,
.blog-intro h1,
.shop-hero h1,
.section-head h2,
.shop-section__head h2,
.about-card h2,
.contact-card h1,
.legal-card h1,
.article-post h1 {
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-overlay h1 {
  margin: 0.5rem 0 1.2rem;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.08;
}

.hero-link,
.blog-read-more,
.back-blog,
.product-cta,
.productCard__link,
.shopPagination__button,
.shop-search-reset {
  border: 0;
  border-radius: 999px;
  background: var(--mivielle-yellow);
  color: var(--mivielle-ink);
  box-shadow: none;
  font-weight: 500;
}

.collections,
.home-blog,
.blog-feed {
  padding-block: clamp(2rem, 5vw, 4.4rem);
  background: #fff;
  text-align: center;
}

.section-head {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.mivielle-category-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(6.2rem, 1fr));
  gap: clamp(0.8rem, 2vw, 1.6rem);
  align-items: start;
}

.category-link {
  color: var(--mivielle-ink);
  font-weight: 500;
}

.circle {
  width: clamp(5.7rem, 9vw, 7.8rem);
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  padding: 0.5rem;
  background: var(--mivielle-pink);
  box-shadow: none;
}

.category-item:nth-child(2) .circle,
.category-item:nth-child(6) .circle {
  background: #f6efe7;
}

.category-item:nth-child(3) .circle {
  background: var(--mivielle-yellow);
}

.category-item:nth-child(4) .circle {
  background: var(--mivielle-blue);
}

.circle img {
  border-radius: 50%;
  filter: saturate(0.82) brightness(1.08);
}

.category-item p {
  color: var(--mivielle-ink);
  font-weight: 500;
}

.blog-grid,
.featured-collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.4rem);
}

.blog-card,
.productCard {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.blog-card-media {
  aspect-ratio: 1;
  border-radius: 0;
}

.blog-card img {
  filter: saturate(0.82) brightness(1.07);
}

.blog-card-body {
  min-height: auto;
  padding: 0.9rem 0.2rem 0;
  text-align: center;
}

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

.blog-excerpt,
.blog-read-more {
  display: none;
}

.featured-blog-grid .blog-excerpt,
.blog-feed .blog-excerpt {
  display: block;
}

.featured-blog-grid .blog-read-more,
.blog-feed .blog-read-more {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
}

.featured-blog-grid .blog-card-body,
.blog-feed .blog-card-body {
  padding: 1rem 0.25rem 0;
}

.featured-blog-grid .blog-card h2,
.blog-feed .blog-card h2 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.25;
}

.site-footer {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.2rem, 5vw, 3.4rem) max(2rem, calc((100vw - 72rem) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 6% 20%, #fff 0 0.35rem, transparent 0.4rem),
    radial-gradient(circle at 28% 78%, #fff 0 0.32rem, transparent 0.38rem),
    radial-gradient(circle at 72% 24%, #fff 0 0.35rem, transparent 0.4rem),
    linear-gradient(90deg, #ffd7e3, #ffe6ee);
  color: var(--mivielle-ink);
  box-shadow: none;
}

.site-footer strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.site-footer a,
.site-footer span,
.site-footer small {
  color: var(--mivielle-ink);
  font-weight: 400;
}

.footer-links {
  align-items: center;
  justify-content: center;
}

.shop-hero,
.shop-browser,
.shop-section,
.blog-intro,
.about-card,
.contact-card,
.legal-card {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.shop-main,
.blog-main,
.article-post,
.about,
.contact-main,
.legal-main {
  background: #fff;
}

.shop-main {
  margin-top: 0;
}

.shop-hero--home {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.shop-hero--home::before {
  display: none;
}

.shop-browser {
  padding-block: clamp(2rem, 5vw, 4.4rem);
  text-align: center;
}

.shop-browser::before,
.shop-section::before {
  display: none;
}

.shop-browser__head {
  max-width: 42rem;
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
}

.shop-browser__copy,
.shop-section__copy,
.shop-section__count {
  color: var(--mivielle-muted);
  font-weight: 500;
}

.shopCategoryNav {
  display: grid;
  grid-template-columns: repeat(7, minmax(5.7rem, 1fr));
  gap: clamp(0.8rem, 2vw, 1.6rem);
  align-items: start;
  margin-top: 0;
}

.shopCategoryNav__link {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--mivielle-ink);
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.shopCategoryNav__link::before {
  display: none;
}

.shopCategoryNav__icon {
  display: block;
  width: clamp(5.7rem, 9vw, 7.8rem);
  aspect-ratio: 1;
  padding: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mivielle-pink);
}

.shopCategoryNav__link:nth-child(2) .shopCategoryNav__icon,
.shopCategoryNav__link:nth-child(4) .shopCategoryNav__icon,
.shopCategoryNav__link:nth-child(7) .shopCategoryNav__icon {
  background: #f6efe7;
}

.shopCategoryNav__link:nth-child(3) .shopCategoryNav__icon {
  background: var(--mivielle-yellow);
}

.shopCategoryNav__link:nth-child(6) .shopCategoryNav__icon {
  background: var(--mivielle-blue);
}

.shopCategoryNav__icon img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.82) brightness(1.08);
}

.shopCategoryNav__count {
  min-width: 1.8rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: var(--mivielle-yellow);
  color: var(--mivielle-ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.shopCategoryNav__link[aria-current="true"],
.shopCategoryNav__link.active {
  color: var(--mivielle-ink);
}

.shopCategoryNav__link.active .shopCategoryNav__icon {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--mivielle-yellow);
}

.shop-section {
  padding-block: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.shop-section.pickSection {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.shop-section__head {
  max-width: 42rem;
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

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

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

.cardGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.4rem);
  margin-top: 0;
}

.cardGrid:empty::after {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--mivielle-muted);
  font-weight: 500;
}

.productCard {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  text-align: left;
}

.productCard__imgLink {
  aspect-ratio: 1;
  border-radius: 0;
  background: #f6efe7;
}

.productCard__img {
  object-fit: cover;
  filter: saturate(0.82) brightness(1.07);
}

.productCard__body {
  padding: 0.9rem 0.2rem 0;
  gap: 0.5rem;
}

.productCard__eyebrow,
.productCard__copy {
  color: var(--mivielle-muted);
}

.productCard__title,
.productCard__price {
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
}

.shop-section__footer {
  justify-content: center;
}

@media (max-width: 820px) {
  .mivielle-category-grid,
  .category-grid,
  .blog-grid,
  .featured-collection-grid,
  .shopCategoryNav,
  .cardGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .nav,
  body.nav-enhanced .nav {
    min-height: 96px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .menu li + li::before {
    margin: 0 0.45rem;
  }

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

  .mivielle-hero {
    min-height: 21rem;
  }

  .hero-overlay h1 {
    font-size: 2.25rem;
  }
}

.mivielle-hero {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #d8f0f7;
}

.mivielle-hero::before,
.mivielle-hero__sky,
.mivielle-hero .cloud,
.mivielle-hero .hero-overlay {
  display: none;
}

.mivielle-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mivielle-hero__link {
  position: absolute;
  left: 50%;
  top: 70%;
  width: min(27rem, 34vw);
  height: min(6rem, 9vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

@media (max-width: 680px) {
  .mivielle-hero__image {
    object-fit: cover;
  }

  .mivielle-hero__link {
    top: 70%;
    width: 44vw;
    height: 12vw;
  }
}

/* Keep blog pages on the same typography system as the homepage. */
.blog-main,
.article-main,
.blog-main *,
.article-main * {
  font-family: "Manrope", Arial, sans-serif;
}

.blog-intro h1,
.article-header h1,
.article-content h2,
.article-content h3,
.blog-card h2 {
  font-weight: 500;
  letter-spacing: 0;
}

.brand,
.site-footer strong {
  color: var(--mivielle-blue);
  font-family: "Cherry Bomb One", "Nunito", "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Shop page uses the soft reference-card style while keeping the Mivielle homepage heading language. */
body.shop-page {
  background: #fff;
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
}

body.shop-page h1,
body.shop-page h2,
body.shop-page h3,
body.shop-page p,
body.shop-page a,
body.shop-page button {
  font-family: "Manrope", Arial, sans-serif;
}

body.shop-page .shop-main {
  width: min(var(--container-max), calc(100% - 1.5rem));
  margin: 1.35rem auto 0;
  background: transparent;
}

body.shop-page .shop-hero,
body.shop-page .shop-note,
body.shop-page .shop-browser {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 238, 0.9)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.72), transparent 25%);
  box-shadow: 0 12px 26px rgba(114, 151, 166, 0.12);
  backdrop-filter: blur(8px);
}

body.shop-page .shop-hero::before,
body.shop-page .shop-note::before,
body.shop-page .shop-browser::before {
  content: "*";
  position: absolute;
  right: 1rem;
  top: 0.65rem;
  color: rgba(138, 174, 191, 0.38);
  font-size: 1.55rem;
  pointer-events: none;
}

body.shop-page .shop-hero {
  margin-top: 0;
}

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

body.shop-page .hero-kicker,
body.shop-page .shop-note__title {
  color: #8aaebf;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.shop-page .shop-hero h1 {
  margin-top: 0.35rem;
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3.35rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: none;
}

body.shop-page .shop-hero h1 em {
  color: var(--mivielle-muted);
  font-style: normal;
}

body.shop-page .shop-hero__copy,
body.shop-page .shop-note__copy,
body.shop-page .shop-browser__copy,
body.shop-page .shop-section__copy,
body.shop-page .shop-section__count {
  margin-top: 0.85rem;
  color: var(--mivielle-muted);
  font-weight: 500;
}

body.shop-page .shop-browser {
  text-align: left;
}

body.shop-page .shop-browser__head {
  max-width: none;
  margin: 0 0 1rem;
}

body.shop-page .shop-browser h2 {
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: none;
}

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

body.shop-page .shopCategoryNav__link {
  min-height: 76px;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(138, 174, 191, 0.12);
  color: var(--mivielle-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

body.shop-page .shopCategoryNav__link::before {
  content: "*";
  display: inline;
  color: #8aaebf;
}

body.shop-page .shopCategoryNav__count {
  min-width: 2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--mivielle-yellow);
  color: var(--mivielle-ink);
  font-size: 0.72rem;
  text-align: center;
}

body.shop-page .shopCategoryNav__link[aria-current="true"],
body.shop-page .shopCategoryNav__link.active {
  border-color: rgba(255, 255, 255, 0.95);
  background: var(--mivielle-pink);
  color: var(--mivielle-ink);
}

body.shop-page .shop-section {
  padding-block: 1.7rem;
  background: transparent;
  text-align: left;
}

body.shop-page .shop-section.pickSection {
  padding-block: 1.7rem;
}

body.shop-page .shop-section__head {
  max-width: none;
  margin: 0 0 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}

body.shop-page .shop-section__head h2 {
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3.35rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: none;
}

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

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

body.shop-page .cardGrid:empty::after {
  content: "New picks will appear here.";
  display: block;
  padding: 1.15rem;
  border: 2px dashed rgba(138, 174, 191, 0.32);
  border-radius: 12px;
  background: rgba(255, 249, 238, 0.72);
  color: var(--mivielle-muted);
  font-weight: 500;
  text-align: center;
}

body.shop-page .productCard {
  overflow: hidden;
  border: 1px solid rgba(210, 221, 226, 0.72);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(114, 151, 166, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: left;
}

body.shop-page .productCard__imgLink {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 7px;
  background: #f6efe7;
}

body.shop-page .productCard__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

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

body.shop-page .productCard__title {
  color: var(--mivielle-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.12;
}

body.shop-page .productCard__link,
body.shop-page .shopPagination__button {
  min-height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--mivielle-yellow);
  color: var(--mivielle-ink);
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 600;
}

body.shop-page .shop-section__footer {
  margin-top: 1rem;
  justify-content: space-between;
}

body.shop-page .site-footer {
  width: min(var(--container-max), calc(100% - 1.5rem));
  margin: 2.2rem auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.94), rgba(204, 235, 248, 0.42)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.7), transparent 32%);
  box-shadow: 0 16px 36px rgba(114, 151, 166, 0.12);
  justify-content: center;
  text-align: center;
  color: var(--mivielle-ink);
}

@media (min-width: 768px) {
  body.shop-page .cardGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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