/* Layout: site chrome, wrappers, editor canvas, responsive */

/* ==========================================================================
   Site Chrome
   ========================================================================== */

.top-note {
  position: relative;
    padding: 10px 76px 12px 23px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.92), rgba(249, 235, 212, 0.78));
  border-bottom: 1px solid rgba(194, 152, 111, 0.22);
  font-size: 18px;
}

.top-note p {
  margin: 0;
  font-weight: 800;
}



.site-header {
    position: relative;
    z-index: 220;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    margin: 12px 120px 10px;
    padding: 8px 0 10px;
    justify-content: center;
    justify-items: start;
}

.brand img,
.footer-brand img {
  width: 280px;
  height: auto;
}

.main-nav {
  position: relative;
  z-index: 230;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 12px 18px 12px 0;
  border: 1px solid rgba(194, 152, 111, 0.2);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(247, 239, 231, 0.76));
  box-shadow: 0 10px 24px rgba(110, 78, 52, 0.08);
}

.main-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-list li {
  position: relative;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 4px;
  background: transparent;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  box-shadow: none;
}

.main-nav-list .menu-item-has-children > a {
  padding-right: 18px;
}

.main-nav-list .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(58, 49, 45, 0.72);
  border-bottom: 1.5px solid rgba(58, 49, 45, 0.72);
  transform: translateY(-65%) rotate(45deg);
}

.main-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 220px;
  margin: 0;
  padding: 12px 14px;
  list-style: none;
  border: 1px solid rgba(194, 152, 111, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.97), rgba(248, 241, 233, 0.95));
  box-shadow: 0 18px 34px rgba(90, 58, 34, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 260;
}

.main-nav-list .sub-menu li + li {
  margin-top: 2px;
}

.main-nav-list .sub-menu a {
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 17px;
}

.main-nav-list li:hover > .sub-menu,
.main-nav-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero,
.style-finder,
.boutique-intro,
.cta-banner,
.collections,
.reviews,
.stories {
  position: relative;
  z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.hero-cta .btn {
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

p.hero-trust {
    text-align: center;
    font-size: 1.6rem;
}

/* PRIMARY */
.btn-primary {
    background: #d45c7a;
    font-size: 1.5rem;
    color: #fff;
}

.btn-primary:hover {
    background: #c24e6b; /* slightly deeper */
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 92, 122, 0.25);
}

/* SECONDARY */
.btn-secondary {
    background: #f3e7e2;
    color: #333;
    padding-top: 17px !important;
	    border: 1px solid #a2a2a2;
}

.btn-secondary:hover {
    background: #ead8d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	    border: 1px solid #a2a2a2;
}


.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--rose-dark);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Abril Fatface", serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.section-copy {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.3;
}

.site-footer
 {
    margin: 21px 47px 6px 44px;
    padding: 28px 58px 24px;
    border: 1px solid rgba(194, 152, 111, 0.16);
    border-radius: 15px;
    background: rgba(255, 248, 238, 0.84);
    box-shadow: var(--card-shadow);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(194, 152, 111, 0.22);
}

.footer-brand p {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 22px;
}

.footer-col h3 {
  margin: 0 0 10px;
  font-family: "Abril Fatface", serif;
  font-size: 28px;
  font-weight: 400;
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 19px;
  line-height: 1.2;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 12px;
}

.footer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  color: #000 !important;
}

.footer-social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #000 !important;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(194, 152, 111, 0.22);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

/* ==========================================================================
   Theme Wrappers And Compatibility
   ========================================================================== */

.boutique-content-shell {
  width: min(1280px, calc(100% - 84px));
      margin: 30px auto 40px;
  position: relative;
  padding: 34px 34px 40px;
  border: 1px solid rgba(199, 161, 127, 0.22);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 249, 243, 0.96)),
    url("../images/paper-texture.svg");
  box-shadow: 0 24px 54px rgba(110, 78, 52, 0.12);
  overflow: hidden;
}

.boutique-content-shell::before,
.boutique-content-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}



.boutique-content-shell::after {
  inset: 18px;
  border: 1px solid rgba(199, 161, 127, 0.18);
  border-radius: 26px;
}

.boutique-content-shell > * {
  position: relative;
  z-index: 1;
}

.boutique-page-shell {
 padding: 0px 0 0px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.boutique-page-shell::before,
.boutique-page-shell::after {
  content: "";
  position: absolute;
  top: 240px;
  bottom: 260px;
  width: 150px;
  pointer-events: none;
  z-index: 101;
  opacity: 1;
  background-image: url("../images/creeper.webp");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: top center;
  filter: saturate(0.85) contrast(0.95);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.boutique-page-shell::before {
  left: -96px;
}

.boutique-page-shell::after {
  right: -96px;
  transform: scaleX(-1);
}

.boutique-elementor-front-page {
  padding-bottom: 24px;
}

.boutique-elementor-front-page--live {
  min-height: 40vh;
}

.boutique-block-front-page > .wp-block-group,
.boutique-block-front-page > .wp-block-columns,
.boutique-block-front-page > .wp-block-cover,
.boutique-block-front-page .wp-block-buttons {
  margin-block-start: 0;
  margin-block-end: 0;
}

.boutique-block-front-page .wp-block-image {
  margin: 0;
}

.boutique-block-front-page .wp-block-button.cta-button {
  margin: 0;
}

.boutique-block-front-page .wp-block-button.cta-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  width: 100%;
  padding: 0 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff9f2;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(170, 44, 89, 0.22);
}

.boutique-block-front-page .wp-block-columns.hero,
.boutique-block-front-page .wp-block-group.style-finder,
.boutique-block-front-page .wp-block-group.boutique-intro,
.boutique-block-front-page .wp-block-group.collections,
.boutique-block-front-page .wp-block-group.reviews,
.boutique-block-front-page .wp-block-group.stories {
  margin-block-start: 0;
  margin-block-end: 0;
}

.boutique-elementor-front-page .elementor,
.boutique-elementor-page .elementor {
  width: 100%;
}

.boutique-elementor-front-page .elementor-section.elementor-section-boxed > .elementor-container,
.boutique-elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1320px;
}

.boutique-elementor-front-page .elementor-widget-wrap > .elementor-element,
.boutique-elementor-page .elementor-widget-wrap > .elementor-element {
  --kittydarling-widget-radius: 20px;
}

.boutique-elementor-front-page .hero-photos > .elementor-element,
.boutique-elementor-front-page .hero-photos > .elementor-element > .elementor-widget-container,
.boutique-elementor-page .hero-photos > .elementor-element,
.boutique-elementor-page .hero-photos > .elementor-element > .elementor-widget-container,
.boutique-elementor-front-page .cta-banner > .elementor-element,
.boutique-elementor-front-page .cta-banner > .elementor-element > .elementor-widget-container,
.boutique-elementor-page .cta-banner > .elementor-element,
.boutique-elementor-page .cta-banner > .elementor-element > .elementor-widget-container {
  display: contents;
}

.boutique-elementor-page--full {
  padding: 0 0 24px;
}

.boutique-elementor-page .elementor-section:first-child,
.boutique-elementor-front-page .elementor-section:first-child {
  margin-top: 0;
}

.boutique-page-shell h1,
.boutique-content-shell h1 {
  font-family: "Abril Fatface", serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.boutique-builder-guide {
  padding: 24px 0 48px;
}

.boutique-builder-guide .boutique-content-shell {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 248, 237, 0.84);
  box-shadow: var(--card-shadow);
}

.boutique-builder-guide .boutique-content-shell::before,
.boutique-builder-guide .boutique-content-shell::after {
  display: none;
}

.page-id-982 .boutique-content-shell,
.page-slug-retail-store .boutique-content-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.page-id-982 .boutique-content-shell::before,
.page-id-982 .boutique-content-shell::after,
.page-slug-retail-store .boutique-content-shell::before,
.page-slug-retail-store .boutique-content-shell::after {
  display: none;
}

.boutique-builder-guide code {
  font-size: 16px;
}

.boutique-page-shell p,
.boutique-content-shell p,
.boutique-page-shell li,
.boutique-content-shell li {
  font-size: 20px;
  line-height: 1.5;
}

.boutique-shop-shell {
  padding: 0 0 0px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.boutique-shop-content {
  min-height: 40vh;
  position: relative;
  padding: 34px 34px 40px;
  border: 1px solid rgba(199, 161, 127, 0.22);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 249, 243, 0.96)),
    url("../images/paper-texture.svg");
  box-shadow: 0 24px 54px rgba(110, 78, 52, 0.12);
  overflow: hidden;
}

.boutique-shop-content::before,
.boutique-shop-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.boutique-shop-content::before {
  background:
    url("../images/floral-corner-left-soft.png") top left / 180px auto no-repeat,
    url("../images/floral-corner-right-soft.png") top right / 180px auto no-repeat,
    url("../images/floral-bottom-left.png") bottom left / 180px auto no-repeat,
    url("../images/floral-bottom-right.png") bottom right / 180px auto no-repeat;
  opacity: 0.5;
}

.boutique-shop-content::after {
  inset: 18px;
  border: 1px solid rgba(199, 161, 127, 0.18);
  border-radius: 26px;
}

.boutique-shop-content > * {
  position: relative;
  z-index: 1;
}

.boutique-shop-shell::before,
.boutique-shop-shell::after {
  content: "";
  position: absolute;
  top: 240px;
  bottom: 260px;
  width: 150px;
  pointer-events: none;
  z-index: 101;
  opacity: 1;
  background-image: url("../images/creeper.png");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: top center;
  filter: saturate(0.85) contrast(0.95);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.boutique-shop-shell::before {
  left: -96px;
}

.boutique-shop-shell::after {
  right: -96px;
  transform: scaleX(-1);
}


/* ==========================================================================
   Block Editor Canvas
   ========================================================================== */

.editor-styles-wrapper {
  padding: 14px;
  
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
}



.editor-styles-wrapper .is-root-container > * {
  position: relative;
  z-index: 1;
}

.editor-styles-wrapper .wp-block {
  max-width: none;
}

.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper,
.editor-styles-wrapper .editor-post-title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.editor-styles-wrapper .editor-post-title__input {
  font-family: "Abril Fatface", serif;
}

.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {
  padding-top: 28px;
  padding-left: 42px;
  padding-right: 42px;
}

.editor-styles-wrapper .editor-post-title {
  margin-bottom: 0;
}

.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-type="core/group"],
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-type="core/columns"],
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-type="core/buttons"] {
  margin-top: 0;
  margin-bottom: 0;
}

.editor-styles-wrapper .story-card,
.editor-styles-wrapper .collection-card,
.editor-styles-wrapper .review-card,
.editor-styles-wrapper .route-card,
.editor-styles-wrapper .style-card,
.editor-styles-wrapper .polaroid,
.editor-styles-wrapper .hero-main,
.editor-styles-wrapper .walk-in-note {
  overflow: hidden;
}

.editor-styles-wrapper .hero .wp-block-heading,
.editor-styles-wrapper .style-finder .wp-block-heading,
.editor-styles-wrapper .boutique-intro .wp-block-heading,
.editor-styles-wrapper .collections .wp-block-heading,
.editor-styles-wrapper .reviews .wp-block-heading,
.editor-styles-wrapper .stories .wp-block-heading,
.editor-styles-wrapper .hero .block-editor-rich-text__editable,
.editor-styles-wrapper .style-finder .block-editor-rich-text__editable,
.editor-styles-wrapper .boutique-intro .block-editor-rich-text__editable,
.editor-styles-wrapper .collections .block-editor-rich-text__editable,
.editor-styles-wrapper .reviews .block-editor-rich-text__editable,
.editor-styles-wrapper .stories .block-editor-rich-text__editable {
  max-width: none;
}

.editor-styles-wrapper .hero h1 {
  position: relative;
}

.editor-styles-wrapper .hero-photos.wp-block-column {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 240px !important;
  gap: 0 !important;
  align-items: stretch !important;
  height: clamp(430px, 39vw, 545px) !important;
  margin: 0 0 10px !important;
  overflow: visible !important;
}

.editor-styles-wrapper .polaroid-side-left.wp-block-group {
  position: absolute !important;
  top: -49px !important;
  left: -160px !important;
  z-index: 3 !important;
  width: 278px !important;
  height: 295px !important;
  transform: rotate(-6deg) !important;
}

.editor-styles-wrapper .hero-main.wp-block-group {
  position: relative !important;
  left: -90px !important;
  z-index: 0 !important;
  align-self: start !important;
  width: 600px !important;
  height: 71% !important;
  margin: 0 !important;
  margin-right: -68px !important;
  transform: rotate(-1.2deg) !important;
}

.editor-styles-wrapper .stacked-polaroids.wp-block-group {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-self: start !important;
  height: 74% !important;
  margin-left: -24px !important;
  padding-top: 12px !important;
}

.editor-styles-wrapper .polaroid.wp-block-group {
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 10px 10px 16px !important;
  border-radius: 6px !important;
  background: #f6e7ca !important;
  box-shadow: 0 8px 16px rgba(90, 58, 34, 0.12) !important;
  overflow: hidden !important;
}

.editor-styles-wrapper .polaroid.wp-block-group > .wp-block-image {
  margin: 0 !important;
}

.editor-styles-wrapper .polaroid.wp-block-group img {
  width: 100% !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  filter: sepia(0.12) saturate(0.92) contrast(0.97) !important;
}

.editor-styles-wrapper .polaroid-side-left.wp-block-group img {
  aspect-ratio: 1 / 1 !important;
}

.editor-styles-wrapper .polaroid.wp-block-group .wp-element-caption,
.editor-styles-wrapper .polaroid.wp-block-group figcaption {
  margin: 8px 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
  font-family: "Caveat", cursive !important;
  font-size: 23px !important;
  line-height: 1.1 !important;
}

.editor-styles-wrapper .hero-main.frame-torn.wp-block-group {
  padding: 14px !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, rgba(125, 83, 54, 0.1), rgba(255, 247, 239, 0.12)) !important;
  box-shadow: var(--card-shadow) !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

.editor-styles-wrapper .hero-main.frame-torn.wp-block-group::before {
  content: "" !important;
  position: absolute !important;
  inset: 6px !important;
  z-index: -1 !important;
  background: rgba(255, 245, 232, 0.78) !important;
}

.editor-styles-wrapper .hero-main.frame-torn.wp-block-group > .wp-block-image,
.editor-styles-wrapper .hero-main.frame-torn.wp-block-group > .wp-block-image img {
  height: 100% !important;
}

.editor-styles-wrapper .hero-main.frame-torn.wp-block-group img {
  width: 100% !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  object-position: center top !important;
  filter: sepia(0.14) saturate(0.9) contrast(0.96) !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .kd-intro-grid,
  .kd-cta {
    grid-template-columns: 1fr;
  }

  .kd-style-grid,
  .kd-route-grid,
  .kd-collection-grid,
  .kd-review-grid,
  .kd-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kd-story-card,
  li.wc-block-grid__product,
  li.wc-block-product {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header,
  .footer-brand,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .site-header {
    margin-left: 18px;
    margin-right: 18px;
  }

  .hero,
  .style-flow,
  .intro-layout,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-photos,
  .boutique-block-front-page .hero-photos.wp-block-column {
    grid-template-columns: 1fr;
    height: auto;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .stacked-polaroids,
  .boutique-block-front-page .stacked-polaroids.wp-block-group {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    align-items: start;
    height: auto;
    margin-left: 0;
    padding-top: 0;
  }

  .hero-main,
  .boutique-block-front-page .hero-main.wp-block-group {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 18px;
    transform: none;
  }

  .polaroid-side-left,
  .boutique-block-front-page .polaroid-side-left.wp-block-group {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    margin: 0 0 18px;
    transform: none;
    aspect-ratio: auto !important;
  }

  .polaroid-top,
  .polaroid-bottom {
    margin-left: 0;
    margin-top: 0;
    transform: none;
  }

  .style-grid,
  .route-grid,
  .collection-grid,
  .review-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    text-align: center;
  }

  .cta-label {
    justify-content: center;
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce div.product,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body,
  .editor-styles-wrapper {
    padding: 6px;
  }
  
  body  {
	margin: 0px 0px 0px 0px !important;
  }

  .poster,
  .editor-styles-wrapper .is-root-container {
    width: 100%;
    border-radius: 24px;
  }

  .hero,
  .style-finder,
  .boutique-intro,
  .collections,
  .reviews,
  .stories,
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .hero {
    gap: 16px;
    padding-top: 18px;
  }

  .sparkles-top {
    top: -6px;
    right: 6px;
    left: auto;
    width: 84px;
  }

  .heart-doodle {
    top: 54px;
    width: 34px;
  }

  .walk-in-note {
    width: 100%;
    min-width: 0;
  }

  .style-grid,
  .route-grid,
  .collection-grid,
  .review-grid,
  .story-grid,
  .stacked-polaroids,
  .kd-style-grid,
  .kd-route-grid,
  .kd-collection-grid,
  .kd-review-grid,
  .kd-story-grid {
    grid-template-columns: 1fr;
  }

  .stacked-polaroids {
    grid-template-rows: none;
  }

  .hero-main,
  .stacked-polaroids,
  .polaroid {
    align-self: stretch;
  }

  .cta-banner {
    margin-left: 18px;
    margin-right: 18px;
    padding: 18px;
  }

  .site-footer {
    margin-left: 18px;
    margin-right: 18px;
  }

  .stories-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cluster {
    width: 124px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 14px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .brand,
  .footer-brand {
    justify-items: center;
  }

  .brand img,
  .footer-brand img {
    width: min(78vw, 320px);
  }

  .main-nav {
    justify-content: center;
    gap: 14px 18px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .footer-columns,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .wc-block-grid,
  .wp-block-woocommerce-product-template,
  ul.wc-block-grid__products,
  ul.wc-block-product-template {
    grid-template-columns: 1fr !important;

  margin: 28px 0px 0!important;

  }
  
  .site-footer {
	padding: 28px 20px 24px !important;
  }

  .boutique-shop-shell::before,
  .boutique-shop-shell::after {
    width: 84px;
    top: 180px;
    bottom: 180px;
    opacity: 0.4;
  }

  .boutique-shop-shell::before {
    left: -34px;
  }

  .boutique-shop-shell::after {
    right: -34px;
    transform: scaleX(-1);
  }
  
}

@media (max-width: 1100px) {
  .boutique-shop-shell::before,
  .boutique-shop-shell::after {
    width: 120px;
    opacity: 0.62;
  }

  .boutique-shop-shell::before {
    left: -62px;
  }

  .boutique-shop-shell::after {
    right: -62px;
    transform: scaleX(-1);
  }
}

.boutique-block-front-page {
  position: relative;
  z-index: 1;
}

.boutique-block-front-page::before,
.boutique-block-front-page::after {
  content: "";
  position: absolute;
  top: 240px;
  bottom: 260px;
  width: 150px;
  pointer-events: none;
  z-index: 101;
  opacity: 0.72;
  background-image: url("../images/creeper.png");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: top center;
  filter: saturate(0.85) contrast(0.95);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.boutique-block-front-page::before {
  left: -96px;
}

.boutique-block-front-page::after {
  right: -96px;
  transform: scaleX(-1);
}

@media (max-width: 1100px) {
  .boutique-block-front-page::before,
  .boutique-block-front-page::after {
    width: 120px;
    opacity: 0.62;
  }

  .boutique-block-front-page::before {
    left: -62px;
  }

  .boutique-block-front-page::after {
    right: -62px;
    transform: scaleX(-1);
  }
}

@media (max-width: 720px) {
  .boutique-content-shell {
    width: calc(100% - 20px);
    padding: 22px 16px 28px;
    border-radius: 24px;
  }

  .boutique-content-shell::before {
    background:
      url("../images/floral-corner-left-soft.png") top left / 110px auto no-repeat,
      url("../images/floral-corner-right-soft.png") top right / 110px auto no-repeat,
      url("../images/floral-bottom-left.png") bottom left / 110px auto no-repeat,
      url("../images/floral-bottom-right.png") bottom right / 110px auto no-repeat;
    opacity: 0.38;
  }

  .boutique-content-shell::after {
    inset: 10px;
    border-radius: 18px;
  }

  .boutique-shop-content {
    padding: 22px 16px 28px;
    border-radius: 24px;
  }

  .boutique-shop-content::before {
    background:
      url("../images/floral-corner-left-soft.png") top left / 110px auto no-repeat,
      url("../images/floral-corner-right-soft.png") top right / 110px auto no-repeat,
      url("../images/floral-bottom-left.png") bottom left / 110px auto no-repeat,
      url("../images/floral-bottom-right.png") bottom right / 110px auto no-repeat;
    opacity: 0.38;
  }

  .boutique-shop-content::after {
    inset: 10px;
    border-radius: 18px;
  }

  .boutique-block-front-page::before,
  .boutique-block-front-page::after {
    width: 84px;
    top: 180px;
    bottom: 180px;
    opacity: 0.4;
  }

  .boutique-block-front-page::before {
    left: -34px;
  }

  .boutique-block-front-page::after {
    right: -34px;
    transform: scaleX(-1);
  }
}

.main-nav {
  padding: 12px 18px;
  border: 1px solid rgba(194, 152, 111, 0.2);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(247, 239, 231, 0.72));
  box-shadow: 0 8px 20px rgba(90, 58, 34, 0.05);
}

.main-nav a {
  position: relative;
  padding: 6px 2px;
  color: rgba(58, 49, 45, 0.92);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(200, 63, 104, 0.45);
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--rose-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav .current-menu-item::after,
.main-nav .current_page_item::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 720px) {
  .main-nav {
    padding: 10px 14px;
    border-radius: 24px;
    background: rgba(255, 250, 245, 0.82);
  }

  .main-nav-list {
    justify-content: center;
    gap: 8px 14px;
  }

  .main-nav-list .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav-list .sub-menu a {
    justify-content: center;
    padding: 6px 8px;
    font-size: 15px;
  }
}

