/*
Theme Name: My Sisters Cottage Boutique
Theme URI: https://themysisterscottage.com/
Description: A responsive Storefront child theme for My Sisters Cottage.
Author: My Sisters Cottage, LLC
Template: storefront
Version: 2.0.1
Text Domain: msc-boutique
*/

:root {
  --msc-cream: #fff9ee;
  --msc-paper: #fffdf9;
  --msc-pink: #f4ddd6;
  --msc-rose: #c48f88;
  --msc-beige: #e8dbcd;
  --msc-taupe: #8c7068;
  --msc-ink: #4c3b37;
  --msc-muted: #745f59;
  --msc-line: #e7d7ce;
  --msc-white: #ffffff;
  --msc-radius: 18px;
  --msc-shadow: 0 14px 40px rgba(76, 59, 55, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--msc-paper);
  color: var(--msc-ink);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body,
button,
input,
select,
textarea {
  font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.woocommerce-loop-product__title {
  color: var(--msc-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

a {
  color: var(--msc-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: #6f5149;
}

:focus-visible {
  outline: 3px solid var(--msc-rose);
  outline-offset: 3px;
}

.msc-announcement {
  background: var(--msc-pink);
  border-bottom: 1px solid var(--msc-line);
  color: var(--msc-ink);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.65rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 250, 242, 0.98);
  border-bottom: 1px solid var(--msc-line);
  padding-bottom: 0;
}

.site-branding img {
  max-height: 74px;
  width: auto;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
  color: var(--msc-ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-search .widget_product_search form::before {
  color: var(--msc-taupe);
}

.site-search .widget_product_search input[type="search"] {
  background: var(--msc-white);
  border: 1px solid var(--msc-line);
  border-radius: 999px;
}

.site-header-cart .cart-contents {
  color: var(--msc-ink);
}

.col-full {
  max-width: 1280px;
}

.site-content {
  outline: 0;
}

.msc-hero {
  align-items: center;
  background: var(--msc-cream);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 650px;
  overflow: hidden;
}

.msc-hero__copy {
  padding: clamp(3rem, 7vw, 7rem);
}

.msc-eyebrow {
  color: var(--msc-taupe);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.msc-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
}

.msc-hero p {
  color: var(--msc-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  max-width: 34rem;
}

.msc-hero__image {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  width: 100%;
}

.msc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button__link,
.added_to_cart {
  background: var(--msc-ink);
  border: 2px solid var(--msc-ink);
  border-radius: 999px;
  color: var(--msc-white);
  cursor: pointer;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.added_to_cart:hover {
  background: transparent;
  color: var(--msc-ink);
  transform: translateY(-1px);
}

.msc-button--secondary {
  background: transparent !important;
  color: var(--msc-ink) !important;
}

.msc-button--secondary:hover {
  background: var(--msc-pink) !important;
}

.msc-section {
  padding: clamp(3.5rem, 7vw, 7rem) max(1.25rem, calc((100vw - 1280px) / 2));
}

.msc-section--soft {
  background: var(--msc-cream);
}

.msc-section__header {
  margin: 0 auto 2.5rem;
  max-width: 740px;
  text-align: center;
}

.msc-section__header h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 0.6rem;
}

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

.msc-category-card {
  background: var(--msc-white);
  border-radius: var(--msc-radius);
  box-shadow: var(--msc-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  text-decoration: none !important;
}

.msc-category-card img {
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.msc-category-card:hover img {
  transform: scale(1.025);
}

.msc-category-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 138px;
  padding: 1.25rem 1.35rem 1.4rem;
}

.msc-category-card__body h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 0.45rem;
  text-decoration: none;
}

.msc-category-card__body p {
  color: var(--msc-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
}

.msc-category-card:hover,
.msc-category-card:focus,
.msc-category-card:hover h3,
.msc-category-card:focus h3 {
  text-decoration: none !important;
}

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

.msc-trust-card {
  background: var(--msc-white);
  border: 1px solid var(--msc-line);
  border-radius: var(--msc-radius);
  padding: 1.8rem;
}

.msc-trust-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.woocommerce ul.products {
  display: grid;
  gap: 2rem 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  float: none !important;
  margin: 0 !important;
  text-align: left;
  width: auto !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.woocommerce ul.products li.product .price {
  margin-top: auto;
}

.woocommerce ul.products li.product img {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
}

.msc-section-cta {
  clear: both;
  margin: 4rem 0 0;
  text-align: center;
  width: 100%;
}

.msc-section-cta .button {
  display: inline-flex;
  justify-content: center;
}

.woocommerce-loop-product__title {
  font-size: 1.15rem !important;
  line-height: 1.35;
}

.price {
  color: var(--msc-ink) !important;
  font-weight: 800;
}

.single-product div.product .woocommerce-product-gallery img {
  border-radius: var(--msc-radius);
}

.single-product div.product .summary {
  background: var(--msc-cream);
  border-radius: var(--msc-radius);
  padding: clamp(1.5rem, 3vw, 3rem);
}

.variations select,
.quantity .qty,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  background: var(--msc-white);
  border: 1px solid #cbb8ae;
  border-radius: 10px;
  color: var(--msc-ink);
  min-height: 48px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  background: var(--msc-cream);
  border-left-color: var(--msc-rose);
  color: var(--msc-ink);
}

.site-footer {
  background: #f6ece5;
  border-top: 1px solid var(--msc-line);
  color: var(--msc-ink);
  padding: 3.25rem 0 1.75rem;
}

.site-footer a,
.site-footer a:not(.button):not(.components-button) {
  color: var(--msc-ink);
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer a:not(.button):not(.components-button):hover,
.site-footer a:not(.button):not(.components-button):focus {
  color: #8a5f57;
}

.msc-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.msc-footer-grid h2,
.msc-footer-grid h3 {
  color: var(--msc-ink);
}

.msc-footer-grid > section:first-child {
  max-width: 330px;
}

.msc-footer-grid > section:first-child h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.msc-footer-grid > section:first-child p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.msc-footer-logo {
  background: var(--msc-white);
  border: 1px solid var(--msc-line);
  border-radius: 12px;
  margin-bottom: 1rem;
  max-width: 250px;
  overflow: hidden;
  padding: 0.25rem;
}

.msc-footer-logo img {
  display: block;
  height: auto;
  width: 100%;
}

.msc-footer-social {
  margin-top: 1.15rem;
}

.msc-footer-social a {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 0.55rem;
  text-decoration: none;
}

.msc-footer-social a:hover,
.msc-footer-social a:focus {
  text-decoration: underline;
}

.msc-footer-social svg {
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.msc-footer-grid ul {
  list-style: none;
  margin: 0;
}

.msc-footer-note {
  border-top: 1px solid #dccbc1;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

.storefront-handheld-footer-bar,
.storefront-handheld-footer-bar ul li > a,
.storefront-handheld-footer-bar ul li.search .site-search {
  background: #fffaf2;
  color: var(--msc-ink);
}

.storefront-handheld-footer-bar {
  border-top-color: var(--msc-line);
  box-shadow: 0 -4px 18px rgba(76, 59, 55, 0.1);
}

.storefront-handheld-footer-bar ul li > a {
  border-color: var(--msc-line);
}

@media (max-width: 1024px) {
  .msc-category-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .msc-hero {
    grid-template-columns: 1fr;
  }

  .msc-hero__copy {
    padding: 3.5rem 1.25rem;
  }

  .msc-hero__image {
    min-height: 480px;
    object-position: center top;
  }

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

  .msc-trust-grid {
    grid-template-columns: 1fr;
  }

  .msc-section-cta {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .msc-announcement {
    font-size: 0.72rem;
  }

  .msc-hero__image {
    min-height: 420px;
  }

  .msc-category-grid,
  .woocommerce ul.products,
  .msc-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Homepage redesign — clean, image-led boutique storefront. */
:root {
  --msc-black: #171717;
  --msc-soft-gray: #f5f4f1;
  --msc-new-line: #e9e7e2;
}

body {
  background: #fff;
  color: var(--msc-black);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.woocommerce-loop-product__title {
  color: var(--msc-black);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.msc-announcement {
  background: var(--msc-black);
  border: 0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  padding: 0.55rem 1rem;
}

.site-header {
  background: #fff;
  border: 0;
  box-shadow: 0 1px 0 var(--msc-new-line);
  padding: 0;
}

body.home header.site-header {
  margin-bottom: 0 !important;
}

.site-header > .col-full {
  height: 0;
  max-width: none;
  padding: 0;
  position: relative;
  z-index: 20;
}

.site-branding {
  left: clamp(1.5rem, 4vw, 5rem);
  margin: 0 !important;
  position: absolute;
  top: 25px;
  width: auto !important;
}

.msc-wordmark {
  color: var(--msc-black) !important;
  display: inline-flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  text-decoration: none !important;
}

.msc-wordmark span {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.msc-wordmark small {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  margin-top: 0.38rem;
  padding-left: 0.12em;
}

.site-search {
  margin: 0 !important;
  position: absolute;
  right: clamp(10.5rem, 13vw, 14rem);
  top: 23px;
  width: 44px !important;
  z-index: 30;
}

.site-search .widget_product_search form::before {
  font-size: 1.15rem;
  left: 0.85rem;
  top: 0.85rem;
}

.site-search .widget_product_search input[type="search"] {
  border: 0;
  border-radius: 0;
  height: 44px;
  opacity: 0;
  padding: 0.7rem 1rem 0.7rem 2.7rem;
  transition: opacity 180ms ease, width 180ms ease;
  width: 44px;
}

.site-search:hover,
.site-search:focus-within {
  width: min(300px, 30vw) !important;
}

.site-search:hover input[type="search"],
.site-search:focus-within input[type="search"] {
  border-bottom: 1px solid var(--msc-black);
  opacity: 1;
  width: 100%;
}

.storefront-primary-navigation {
  background: #fff;
  min-height: 92px;
}

.storefront-primary-navigation > .col-full {
  align-items: center;
  display: flex;
  max-width: none;
  min-height: 92px;
  padding-left: clamp(13rem, 19vw, 20rem);
  padding-right: clamp(1.5rem, 4vw, 5rem);
}

.main-navigation {
  margin-right: auto;
  width: auto !important;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
  color: #555;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 2.2rem clamp(0.55rem, 1.1vw, 1.15rem);
}

.main-navigation ul.menu > li:first-child {
  display: none;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.menu > li.current-menu-item > a {
  color: var(--msc-black);
}

.site-header-cart {
  margin-left: auto;
  width: 9rem !important;
}

.site-header-cart .cart-contents {
  font-size: 0;
  padding: 2.05rem 0;
  text-align: right;
}

.site-header-cart .cart-contents::before {
  content: "SHOPPING BAG";
  float: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-right: 0.65rem;
}

.site-header-cart .cart-contents::after {
  font-size: 1.15rem;
  position: static;
}

.home .site-content > .col-full {
  margin: 0;
  max-width: none;
  padding: 0;
}

.home .site-content {
  padding-top: 0;
}

.home .content-area,
.home .site-main,
.home .hentry,
.home .entry-content {
  float: none;
  margin: 0;
  width: 100%;
}

.home .entry-header {
  display: none;
}

.msc-lookbook-hero {
  background: #d7d4cc;
  height: min(72vw, 760px);
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.msc-lookbook-hero__images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
}

.msc-lookbook-hero__images img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.msc-lookbook-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.29) 38%, rgba(0, 0, 0, 0) 72%);
  inset: 0;
  position: absolute;
}

.msc-lookbook-hero__content {
  color: #fff;
  left: clamp(1.5rem, 8vw, 9rem);
  max-width: 650px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.msc-lookbook-hero__brand {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  margin-bottom: 1.25rem;
}

.msc-lookbook-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 1.35rem;
}

.msc-lookbook-hero__script {
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}

.msc-shop-link {
  border: 1px solid #fff;
  color: #fff !important;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  padding: 0.95rem 1.6rem;
  text-decoration: none !important;
  transition: background 180ms ease, color 180ms ease;
}

.msc-shop-link:hover,
.msc-shop-link:focus {
  background: #fff;
  color: var(--msc-black) !important;
}

.msc-home-section {
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1.25rem, 4vw, 5rem);
}

.msc-heading-row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}

.msc-kicker {
  color: #777;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 0 0 0.65rem;
}

.msc-heading-row h2,
.msc-editorial h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

.msc-heading-row > a {
  border-bottom: 1px solid var(--msc-black);
  color: var(--msc-black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 0.25rem;
  text-decoration: none;
}

.msc-collection-grid {
  display: grid;
  gap: clamp(0.5rem, 1vw, 1.2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.msc-collection-tile {
  color: var(--msc-black);
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}

.msc-collection-tile img {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  transition: transform 400ms ease;
  width: 100%;
}

.msc-collection-tile span {
  background: rgba(255, 255, 255, 0.94);
  bottom: 0.8rem;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 600;
  left: 50%;
  letter-spacing: 0.06em;
  padding: 0.85rem 1rem;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: calc(100% - 1.6rem);
}

.msc-collection-tile:hover img {
  transform: scale(1.025);
}

.msc-product-section {
  border-top: 1px solid var(--msc-new-line);
}

.msc-product-section--soft {
  background: var(--msc-soft-gray);
}

.home .woocommerce ul.products {
  gap: 2.4rem clamp(0.6rem, 1.2vw, 1.4rem);
}

.home .woocommerce ul.products li.product img {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  margin-bottom: 1rem;
}

.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem !important;
  font-weight: 500;
  line-height: 1.5;
  padding: 0;
}

.home .woocommerce ul.products li.product .price {
  color: #555 !important;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.45rem;
}

.home .woocommerce ul.products li.product .button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--msc-black);
  border-radius: 0;
  color: var(--msc-black);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
  padding: 0 0 0.22rem;
  width: max-content;
}

.msc-editorial {
  align-items: stretch;
  background: #e8e3dc;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.msc-editorial__copy {
  align-self: center;
  padding: clamp(3.5rem, 8vw, 9rem);
}

.msc-editorial__copy > p:not(.msc-kicker) {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 1.4rem 0 2rem;
  max-width: 33rem;
}

.msc-editorial > img {
  height: 100%;
  max-height: 720px;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.msc-shop-link--dark {
  border-color: var(--msc-black);
  color: var(--msc-black) !important;
}

.msc-shop-link--dark:hover,
.msc-shop-link--dark:focus {
  background: var(--msc-black);
  color: #fff !important;
}

.msc-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 3rem clamp(1.25rem, 4vw, 5rem);
}

.msc-benefits > div {
  align-items: center;
  border-right: 1px solid var(--msc-new-line);
  display: flex;
  flex-direction: column;
  padding: 0.8rem 2rem;
  text-align: center;
}

.msc-benefits > div:last-child {
  border: 0;
}

.msc-benefits strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.msc-benefits span {
  color: #777;
  font-size: 0.72rem;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--msc-new-line);
  color: #666;
  padding: clamp(4rem, 7vw, 7rem) 0 1.5rem;
}

.site-footer h3,
.site-footer a,
.site-footer a:not(.button):not(.components-button) {
  color: #555;
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer a:not(.button):not(.components-button):hover,
.site-footer a:not(.button):not(.components-button):focus {
  color: var(--msc-black);
}

.site-footer .col-full {
  max-width: 1180px;
}

.msc-footer-grid {
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.msc-footer-grid > section:first-child {
  max-width: none;
}

.msc-footer-grid h3 {
  color: var(--msc-black);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.55rem;
}

.msc-footer-grid ul {
  list-style: none;
  margin: 0;
}

.msc-footer-grid li {
  margin-bottom: 0.9rem;
}

.msc-footer-grid li a {
  font-size: 0.74rem;
  text-decoration: none;
}

.msc-footer-bottom {
  align-items: end;
  border-top: 1px solid var(--msc-new-line);
  display: flex;
  justify-content: space-between;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  padding-top: 3rem;
}

.msc-footer-currency {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.msc-footer-currency span {
  color: #777;
  font-size: 0.68rem;
}

.msc-footer-currency strong {
  border: 1px solid #aaa;
  color: #444;
  font-size: 0.7rem;
  font-weight: 500;
  min-width: 180px;
  padding: 0.9rem 1.1rem;
}

.msc-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.msc-payment-badges span {
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #222;
  display: inline-flex;
  font-size: 0.52rem;
  font-weight: 700;
  height: 25px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-width: 42px;
  padding: 0 0.4rem;
}

.msc-payment-badges span:nth-child(1) {
  background: #1683c4;
  color: #fff;
}

.msc-payment-badges span:nth-child(2) {
  background: #1b4db1;
  color: #fff;
}

.msc-payment-badges span:nth-child(3) {
  background: #ec5426;
  color: #fff;
}

.msc-payment-badges span:nth-child(5) {
  background: #113984;
  color: #fff;
}

.msc-footer-note {
  border-top: 0;
  margin-top: 2.4rem;
  padding-top: 0;
}

.msc-footer-note p {
  color: #777;
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 1100px) {
  .storefront-primary-navigation > .col-full {
    padding-left: 12.5rem;
  }

  .main-navigation ul.menu > li > a,
  .main-navigation ul.nav-menu > li > a {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .main-navigation ul.menu > li:nth-last-child(-n+3) {
    display: none;
  }
}

@media (max-width: 767px) {
  .msc-announcement {
    font-size: 0.57rem;
    letter-spacing: 0.08em;
  }

  .site-header {
    min-height: 72px;
  }

  .site-header > .col-full {
    height: auto;
  }

  .site-branding {
    left: 1.15rem;
    top: 20px;
  }

  .msc-wordmark span {
    font-size: 0.78rem;
  }

  .msc-wordmark small {
    font-size: 0.46rem;
  }

  .site-search {
    display: none;
  }

  .storefront-primary-navigation {
    background: transparent;
    min-height: 72px;
  }

  .storefront-primary-navigation > .col-full {
    display: block;
    min-height: 72px;
    padding: 0 1rem;
  }

  .main-navigation {
    padding-top: 16px;
    width: 100% !important;
  }

  button.menu-toggle {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--msc-black);
    font-size: 0;
    margin: 0;
    padding: 1rem;
  }

  .main-navigation.toggled .handheld-navigation {
    background: #fff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
    left: 0;
    padding: 1rem 1.5rem 1.5rem;
    position: absolute;
    top: 72px;
    width: 100%;
    z-index: 100;
  }

  .site-header-cart {
    display: none;
  }

  .msc-lookbook-hero {
    height: 690px;
    min-height: 0;
  }

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

  .msc-lookbook-hero__images img:nth-child(n+3) {
    display: none;
  }

  .msc-lookbook-hero__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0.14) 72%);
  }

  .msc-lookbook-hero__content {
    bottom: 3rem;
    left: 1.35rem;
    max-width: calc(100% - 2.7rem);
    top: auto;
    transform: none;
  }

  .msc-lookbook-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .msc-heading-row {
    align-items: flex-start;
    gap: 1.5rem;
  }

  .msc-collection-grid {
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .msc-editorial {
    grid-template-columns: 1fr;
  }

  .msc-editorial__copy {
    padding: 4rem 1.35rem;
  }

  .msc-editorial > img {
    min-height: 520px;
  }

  .msc-benefits {
    grid-template-columns: 1fr;
  }

  .msc-benefits > div {
    border-bottom: 1px solid var(--msc-new-line);
    border-right: 0;
    padding: 1.25rem;
  }

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

  .msc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .msc-payment-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .msc-home-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .msc-heading-row {
    display: block;
  }

  .msc-heading-row > a {
    display: inline-block;
    margin-top: 1rem;
  }

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

  .msc-footer-grid {
    grid-template-columns: 1fr;
  }
}
