@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&display=swap");
:root {
  --white: #ffffff;
  --off-white: #fbfbfb;
  --black: #3e3e3e;
  --text: #2d2d2d;
  --text-light: #6f6f6f;
  --line: #e9e9e9;

  --teal: #007d92;
  --magenta: #f3166b;
  --yellow: #f9dd3c;

  --shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --max-width: 1320px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 6vw), var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-wrap {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
}

.logo-image {
  max-height: 62px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.desktop-nav a {
  font-family: "Questrial", Arial, sans-serif;
  font-size: 1rem;
  color: #474747;
  text-transform: lowercase;
  transition: var(--transition);
}

.desktop-nav a:hover,
.site-footer a:hover,
.section-link:hover {
  color: var(--teal);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Questrial", Arial, sans-serif;
  color: #474747;
  text-transform: lowercase;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 18px 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Questrial", Arial, sans-serif;
  color: #474747;
  text-transform: lowercase;
}

.mobile-nav.show {
  display: flex;
}

/* HERO */
.hero {
  padding: 24px 0 26px;
}

.hero-frame {
  position: relative;
}

.hero-image {
  min-height: 845px;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url("../images/hero.png")
    center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  left: 4%;
  top: 31%;
  width: min(60%, 760px);
  background: rgba(0, 125, 146, 0.94);
  color: var(--white);
  padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow);
}

.hero-overlay h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.03;
  font-weight: 700;
}

.hero-overlay p {
  margin: 0 0 22px;
  max-width: 28ch;
  font-size: 1.12rem;
  line-height: 1.3;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 2px solid var(--white);
  transition: var(--transition);
}

.hero-button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}
.hero-button:hover {
  transform: translateY(-2px);
	transition: 0.25s ease;
}

.hero-arrow {
  position: absolute;
  top: 73%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(47, 27, 9, 0.72);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow-left {
  left: -8px;
}

.hero-arrow-right {
  right: -8px;
}

/* ROUND CATEGORY STRIP */
/* CATEGORY STRIP */
/* CATEGORY STRIP */
.category-strip {
  padding: 22px 0 34px;
}

.category-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.strip-arrow {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #444;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.category-scroll {
  width: 100%;
}

.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.category-img,
.circle-image {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.category-img {
  display: block;
  background: transparent;
  border: none;
}

.category-circle:hover .category-img,
.category-circle:hover .circle-image {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.category-circle span {
  font-family: "Questrial", Arial, sans-serif;
  font-size: 0.95rem;
  color: #444;
  text-transform: lowercase;
  line-height: 1.2;
}

.circle-image {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-circle {
  background: #fff;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-size: 1.3rem;
  font-weight: 700;
}

/* DESKTOP: all 7 visible, no arrows */
@media (min-width: 1025px) {
  .strip-arrow {
    display: none !important;
  }

  .category-scroll {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    overflow: visible;
    padding: 0;
  }

  .category-circle {
    min-width: 0;
  }

  .category-img,
  .circle-image {
    width: 108px;
    height: 108px;
  }
}

/* TABLET + PHONE: scrollable, arrows visible, no clipping */
@media (max-width: 1024px) {
  .category-row {
    grid-template-columns: 34px 1fr 34px;
    gap: 6px;
  }

  .strip-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .category-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 8px 10px;
    scroll-padding-left: 8px;
    scroll-padding-right: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-scroll::-webkit-scrollbar {
    display: none;
  }

  .category-circle {
    flex: 0 0 104px;
    min-width: 104px;
  }

  .category-img,
  .circle-image {
    width: 96px;
    height: 96px;
  }
}

/* SMALL PHONE */
@media (max-width: 520px) {
  .category-row {
    grid-template-columns: 28px 1fr 28px;
    gap: 4px;
  }

  .strip-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.5rem;
  }

  .category-scroll {
    gap: 12px;
    padding: 6px 6px 10px;
    scroll-padding-left: 6px;
    scroll-padding-right: 6px;
  }

  .category-circle {
    flex: 0 0 92px;
    min-width: 92px;
  }

  .category-img,
  .circle-image {
    width: 84px;
    height: 84px;
  }

  .category-circle span {
    font-size: 0.84rem;
  }
}

.circle-image {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-circle {
  background: #fff;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-size: 1.3rem;
  font-weight: 700;
}

.teal-fill {
  background: linear-gradient(135deg, var(--teal), #57b8c7);
  color: #fff;
}

.magenta-fill {
  background: linear-gradient(135deg, var(--magenta), #ff75a7);
  color: #fff;
}

.yellow-fill {
  background: linear-gradient(135deg, var(--yellow), #f9dd3c);
  color: var(--black);
}

/* GENERAL SECTIONS */
.section {
  padding: 22px 0 56px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2,
.story-copy h2,
.newsletter-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  line-height: 1.08;
}

.section-link {
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

/* COLLECTION CARDS */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.collection-card {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 18px 18px 16px;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.collection-accent {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.collection-accent.teal {
  background: var(--teal);
}

.collection-accent.magenta {
  background: var(--magenta);
}

.collection-accent.yellow {
  background: var(--yellow);
}

.collection-card h3 {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}

.collection-card p {
  margin: 0 0 14px;
  color: var(--text-light);
  font-size: 0.67rem;
  line-height: 1.55;
}

.collection-card a {
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--off-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.product-image {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e8e;
  font-size: 0.72rem;
  font-weight: 600;
  background: #ececec;
}

.product-info {
  padding: 14px 12px 14px;
}

.product-tag {
  margin: 0 0 6px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  line-height: 1.25;
  color: var(--black);
}

.price {
  margin: 0 0 12px;
  font-size: 0.72rem;
  color: var(--black);
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  border-color: #cfcfcf;
}

.btn-outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.story-copy p {
  color: var(--text-light);
}

.story-cards {
  display: grid;
  gap: 12px;
}

.mini-card {
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 18px;
  background: #fafafa;
}

.mini-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--black);
}

.mini-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

/* NEWSLETTER */
.newsletter-box {
  border: 1px solid #dddddd;
  border-radius: 14px;
  padding: 24px;
  background: #fafafa;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.newsletter-copy p {
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.newsletter-form input {
  min-width: 290px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  padding: 0 16px;
  background: var(--white);
  color: var(--black);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--teal);
}

/* FOOTER */
.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: var(--black);
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* TABLET */
@media (max-width: 1100px) {
  .header-wrap {
    min-height: 88px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .hero-image {
    min-height: 520px;
  }

  .hero-overlay {
    width: min(72%, 620px);
  }

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

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

  .story-grid,
  .newsletter-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    justify-content: flex-start;
  }
}

/* MOBILE */
@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-image {
    min-height: 440px;
  }

  .hero-overlay {
    left: 5%;
    right: 5%;
    top: auto;
    bottom: 26px;
    width: auto;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    top: 76%;
  }

  .section-heading {
    flex-direction: column;
  }

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

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
    min-width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-wrap {
    min-height: 76px;
  }

  .logo-image {
    max-height: 46px;
  }

  .cart-link span:first-child {
    display: none;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-overlay {
    padding: 18px;
  }

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

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .category-scroll {
    gap: 16px;
  }

  .category-circle {
    min-width: 96px;
  }

  .category-img,
  .circle-image {
    width: 88px;
    height: 88px;
  }

  .category-circle span {
    font-size: 0.86rem;
  }
}
/* LARGE DESKTOP */
@media (min-width: 1400px) {
  .container {
    width: min(calc(100% - 90px), var(--max-width));
    margin: 0 auto;
  }
}

/* DESKTOP / LAPTOP */
@media (min-width: 1025px) {
  .container {
    width: min(calc(100% - 70px), var(--max-width));
    margin: 0 auto;
  }

  .category-scroll {
    overflow: visible;
  }

  .strip-arrow {
    display: none !important;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
  }

  .header-wrap {
    min-height: 88px;
    gap: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-image {
    min-height: 500px;
  }

  .hero-overlay {
    left: 5%;
    right: 5%;
    top: auto;
    bottom: 28px;
    width: auto;
    max-width: none;
  }

  .category-row {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .strip-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

 .category-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 6px 12px 10px;
  scroll-padding: 12px;
}

  .category-scroll::-webkit-scrollbar {
    display: none;
  }

  .category-circle {
    min-width: 110px;
    flex: 0 0 auto;
  }

  .category-img,
  .circle-image {
    width: 104px;
    height: 104px;
  }

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

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

  .story-grid,
  .newsletter-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    justify-content: flex-start;
  }
}

/* PHONE */
@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
    margin: 0 auto;
  }

  .header-wrap {
    min-height: 74px;
  }

  .logo-image {
    max-height: 46px;
    width: auto;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-overlay {
    padding: 18px;
    bottom: 16px;
  }

  .hero-overlay h1 {
    font-size: 1.8rem;
    line-height: 1.05;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .category-row {
    grid-template-columns: 34px 1fr 34px;
    gap: 6px;
  }

  .strip-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.6rem;
  }

  .category-scroll {
    gap: 14px;
  }

  .category-circle {
    min-width: 94px;
  }

  .category-img,
  .circle-image {
    width: 88px;
    height: 88px;
  }

  .category-circle span {
    font-size: 0.84rem;
  }

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

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
    min-width: 100%;
  }
}

/* UPDATED SHARED PAGE STYLES */
.site-header { box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.magenta-pop { background: linear-gradient(180deg, #fff 0%, #fff 22%, rgba(243,22,107,0.08) 22%, rgba(243,22,107,0.08) 100%); }
.magenta-pop .section-heading { background: var(--magenta); color: var(--white); padding: 18px 20px; border-radius: 0 18px 18px 0; }
.magenta-pop .section-heading h2, .magenta-pop .eyebrow, .magenta-pop .section-link { color: var(--white); }
.magenta-pop .collection-card:nth-child(2) { background: var(--magenta); color: var(--white); border-color: var(--magenta); }
.magenta-pop .collection-card:nth-child(2) h3, .magenta-pop .collection-card:nth-child(2) p, .magenta-pop .collection-card:nth-child(2) a { color: var(--white); }
.reversed-band { background: var(--magenta); color: var(--white); }
.reversed-band .story-copy h2, .reversed-band .story-copy p, .reversed-band .eyebrow { color: var(--white); }
.reversed-band .mini-card { background: var(--white); border: none; box-shadow: var(--shadow); }
.page-hero { padding: 62px 0 30px; background: linear-gradient(135deg, rgba(0,125,146,.12), rgba(243,22,107,.12)); }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; color: var(--black); }
.page-hero p { margin: 0; max-width: 760px; color: var(--text-light); font-size: 1.05rem; }
.placeholder-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.placeholder-card { border:1px solid #ddd; border-radius:14px; padding:20px; background:#fff; min-height:180px; box-shadow:0 4px 10px rgba(0,0,0,.03); }
.placeholder-card .thumb { height:90px; border-radius:10px; background:linear-gradient(135deg, rgba(0,125,146,.18), rgba(243,22,107,.18)); display:flex; align-items:center; justify-content:center; margin-bottom:14px; color:var(--text-light); font-weight:700; }
.policy-wrap { max-width: 920px; margin: 0 auto; }
.policy-item { border: 1px solid #dedede; border-radius: 12px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.policy-toggle { width:100%; border:0; background:#fff; padding:18px 20px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:700; color:var(--black); text-align:left; }
.policy-toggle span:last-child { background: var(--magenta); color:#fff; width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.policy-content { display:none; padding:0 20px 20px; color:var(--text-light); }
.policy-item.open .policy-content { display:block; }
.policy-item.open .policy-toggle span:last-child { background: var(--teal); }
@media (max-width: 1024px) { .placeholder-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .placeholder-grid { grid-template-columns: 1fr; } .magenta-pop .section-heading { border-radius: 0 14px 14px 0; } .desktop-nav { display:none; } }
@media (min-width: 1025px) and (max-width: 1180px) { .category-img, .circle-image { width: 96px; height:96px; } .category-circle span { font-size:.84rem; } }

/* JTG requested updates 06-28 */
.hero-button { text-transform: uppercase; }

/* Centered swipe category strip with arrows on all screen sizes */
.category-strip {
  padding: 28px 0 44px;
}
.category-row {
  display: grid;
  grid-template-columns: 46px minmax(0, auto) 46px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.strip-arrow {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #444;
  border-radius: 50%;
  background: var(--white);
  color: #444;
  font-size: 1.2rem;
  line-height: 1;
}
.category-scroll {
  display: flex !important;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden;
  padding: 8px 8px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-circle {
  flex: 0 0 112px;
  min-width: 112px;
}
.category-img,
.circle-image {
  width: 108px;
  height: 108px;
}

/* More side breathing room from collections through page content */
.section > .container {
  width: min(calc(100% - 140px), var(--max-width));
}

/* Shop by collection area */
.magenta-pop {
  background: rgba(243, 22, 107, 0.10) !important;
  padding-top: 36px;
}
.magenta-pop .section-heading {
  background: var(--teal) !important;
  color: var(--white);
  padding: 20px 20px;
  border-radius: 0 !important;
  margin-bottom: 18px;
}
.magenta-pop .section-heading h2,
.magenta-pop .eyebrow,
.magenta-pop .section-link {
  color: var(--white) !important;
}
.collection-card {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 0 18px 18px;
  overflow: hidden;
}
.collection-card h3,
.collection-card p,
.collection-card a {
  color: inherit !important;
}
.collection-card p { color: var(--text-light) !important; }
.collection-accent {
  width: calc(100% + 36px);
  height: 12px;
  border-radius: 0;
  margin: 0 -18px 16px;
}
.collection-accent.teal { background: var(--teal); }
.collection-accent.magenta { background: var(--magenta); }
.collection-accent.yellow { background: var(--yellow); }

/* Shop All filter layout */
.shop-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.shop-filter {
  position: sticky;
  top: 120px;
  border: 1px solid #dddddd;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
}
.shop-filter h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  color: var(--black);
}
.filter-group {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}
.filter-group h3 {
  margin: 0 0 10px;
  font-size: .9rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.filter-group label {
  display: block;
  margin: 10px 0;
  color: var(--text-light);
  font-size: .9rem;
}
.shop-products.placeholder-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1180px) {
  .category-row { grid-template-columns: 40px minmax(0, 1fr) 40px; }
  .category-scroll { justify-content: flex-start; }
  .section > .container { width: min(calc(100% - 80px), var(--max-width)); }
}
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filter { position: static; }
  .shop-products.placeholder-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .category-row { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 8px; }
  .strip-arrow { width: 32px; height: 32px; font-size: 1rem; }
  .category-circle { flex-basis: 96px; min-width: 96px; }
  .category-img, .circle-image { width: 88px; height: 88px; }
  .section > .container { width: min(calc(100% - 36px), var(--max-width)); }
  .magenta-pop .section-heading { padding: 16px; }
  .shop-products.placeholder-grid { grid-template-columns: 1fr; }
}

/* JTG requested updates 06-28 round 3 */
/* Keep the collection/category links swipeable and unclipped on smaller screens */
.category-row {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.category-scroll {
  min-width: 0;
  scroll-snap-type: x proximity;
}
.category-circle {
  scroll-snap-align: center;
}
@media (min-width: 1025px) {
  .category-row {
    grid-template-columns: 46px minmax(0, max-content) 46px;
    justify-content: center;
  }
  .category-scroll {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .category-strip .container {
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .category-row {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    justify-content: stretch;
  }
  .category-scroll {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  .strip-arrow {
    z-index: 2;
    flex: 0 0 auto;
  }
}
@media (max-width: 520px) {
  .category-strip .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .category-row {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 4px;
  }
  .category-scroll {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Mobile dropdown hover/active styling */
.mobile-nav a {
  transition: background-color .2s ease, color .2s ease, font-weight .2s ease, padding-left .2s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(0, 125, 146, 0.13);
  color: var(--teal);
  font-weight: 600;
  padding-left: 10px;
}

/* Category page hero banner backgrounds with readable overlay */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 230px;
  display: flex;
  align-items: center;
  padding: 68px 0 46px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
    url('../images/hero.png') center center / cover no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,125,146,.20), rgba(243,22,107,.18));
}
.page-hero.outdoors-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.84), rgba(255,255,255,.56)),
    url('../images/page-banner-outdoors.png') center center / cover no-repeat;
}
.page-hero h1,
.page-hero p {
  text-shadow: 0 1px 2px rgba(255,255,255,.55);
}

/* JTG requested updates 06-28 round 4 */
:root { --yellow: #f9dd3c; }

/* Final responsive category carousel: no clipping, 1-3 visible on phones */
.category-row {
  overflow: visible !important;
  grid-template-columns: 42px minmax(0, 1fr) 42px !important;
  justify-content: stretch !important;
  align-items: center !important;
}
.category-scroll {
  justify-content: flex-start !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
}
.category-circle {
  scroll-snap-align: start;
}
@media (min-width: 1025px) {
  .category-strip .container { width: min(calc(100% - 70px), var(--max-width)); }
  .category-row { grid-template-columns: 42px minmax(0, max-content) 42px !important; justify-content: center !important; }
  .category-scroll { justify-content: center !important; gap: clamp(16px, 2vw, 28px) !important; }
  .category-circle { flex: 0 0 112px !important; min-width: 112px !important; }
}
@media (max-width: 767px) {
  .category-strip .container { width: 100% !important; padding-left: 8px !important; padding-right: 8px !important; }
  .category-row { grid-template-columns: 34px minmax(0, 1fr) 34px !important; gap: 8px !important; }
  .category-scroll { gap: 12px !important; padding: 8px 0 14px !important; }
  .category-circle { flex: 0 0 calc((100% - 24px) / 3) !important; min-width: calc((100% - 24px) / 3) !important; max-width: calc((100% - 24px) / 3) !important; }
  .category-img, .circle-image { width: min(92px, 100%) !important; height: auto !important; aspect-ratio: 1 / 1; }
  .category-circle span { width: 100%; overflow-wrap: normal; word-break: normal; }
}
@media (max-width: 420px) {
  .category-circle { flex-basis: calc((100% - 12px) / 2) !important; min-width: calc((100% - 12px) / 2) !important; max-width: calc((100% - 12px) / 2) !important; }
  .category-img, .circle-image { width: min(96px, 100%) !important; }
}
@media (max-width: 330px) {
  .category-circle { flex-basis: 100% !important; min-width: 100% !important; max-width: 100% !important; }
  .category-img, .circle-image { width: 106px !important; }
}

/* Stronger mobile dropdown hover */
.mobile-nav a:hover,
.mobile-nav a:focus,
.mobile-nav a:active {
  background: rgba(0, 125, 146, 0.16) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
}

/* Page hero text should be pure black while banner can keep a soft overlay */
.page-hero h1,
.page-hero p {
  color: #000 !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

/* Collection card outlines, top bars, placeholder images, and real buttons */
.collection-card:nth-child(1) { border-color: var(--teal) !important; }
.collection-card:nth-child(2) { border-color: var(--magenta) !important; }
.collection-card:nth-child(3) { border-color: var(--yellow) !important; }
.collection-thumb,
.mini-card-image {
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,125,146,.16), rgba(243,22,107,.16), rgba(249,221,60,.35));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.collection-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #000 !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .02em;
}
.collection-card:nth-child(1) a { background: var(--teal); }
.collection-card:nth-child(2) a { background: var(--magenta); }
.collection-card:nth-child(3) a { background: var(--yellow); }
.collection-card:nth-child(1) a,
.collection-card:nth-child(2) a,
.collection-card:nth-child(3) a { color: #000 !important; }
.collection-card:nth-child(2) {
  background: var(--white) !important;
  color: var(--black) !important;
}
.collection-card:nth-child(2) h3,
.collection-card:nth-child(2) p { color: var(--black) !important; }
.collection-card p { color: var(--text-light) !important; }

.about-brand-section { margin-top: 0; }
.mini-card-image { height: 90px; margin-bottom: 12px; }

/* UPDATE: refined dropdown hover, collection cards, and modern cart */
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(0, 125, 146, 0.12);
  color: var(--black);
  font-weight: 700;
  padding-left: 12px;
}

.cart-link {
  gap: 7px;
  padding: 7px 8px 7px 10px;
  border-radius: 999px;
  transition: var(--transition);
}

.cart-link:hover,
.cart-link:focus-visible {
  background: rgba(0, 125, 146, 0.1);
  color: var(--teal);
}

.cart-icon {
  width: 30px;
  height: 30px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.cart-link:hover .cart-icon,
.cart-link:focus-visible .cart-icon {
  transform: translateY(-2px);
}

.collection-card {
  background: var(--white);
  border-width: 1.5px;
}

.collection-card:nth-child(1) {
  border-color: var(--teal);
}

.collection-card:nth-child(2) {
  border-color: var(--magenta);
}

.collection-card:nth-child(3) {
  border-color: var(--black);
}

.collection-accent {
  width: 100%;
  height: 10px;
  border-radius: 0;
  margin-bottom: 16px;
}

.collection-accent.yellow {
  background: var(--black);
}

.collection-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-card:nth-child(1) a {
  background: var(--teal);
}

.collection-card:nth-child(2) a {
  background: var(--magenta);
}

.collection-card:nth-child(3) a {
  background: var(--black);
}

.collection-card:nth-child(3) .collection-accent,
.collection-card:nth-child(3) .collection-accent.yellow {
  background: var(--black);
}

.collection-card:nth-child(3) h3,
.collection-card:nth-child(3) p,
.collection-card:nth-child(3) a {
  color: var(--white);
}

.collection-card:nth-child(3) h3,
.collection-card:nth-child(3) p {
  color: var(--black);
}

.product-actions .btn-outline {
  display: none;
}

#featured .section-heading h2 {
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .cart-link .cart-label {
    display: none;
  }
  .cart-icon {
    width: 28px;
    height: 28px;
  }
}

/* FINAL OVERRIDES FOR V5 */
.collection-card:nth-child(1) { border-color: var(--teal) !important; }
.collection-card:nth-child(2) { border-color: var(--magenta) !important; }
.collection-card:nth-child(3) { border-color: var(--black) !important; }
.collection-card:nth-child(3) .collection-accent,
.collection-card:nth-child(3) .collection-accent.yellow { background: var(--black) !important; }
.collection-card:nth-child(1) a,
.collection-card:nth-child(2) a,
.collection-card:nth-child(3) a {
  color: var(--white) !important;
}
.collection-card:nth-child(3) a { background: var(--black) !important; }
.collection-card:nth-child(3) h3 { color: var(--black) !important; }
.collection-card:nth-child(3) p { color: var(--text-light) !important; }

/* RESPONSIVE REPAIR PASS - prevents small-screen horizontal overflow */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body * {
  min-width: 0;
}

.container,
.section > .container,
.category-strip .container {
  max-width: 100%;
}

/* Header/mobile safety */
.header-wrap {
  width: 100%;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a:active {
  background: rgba(0, 125, 146, 0.14) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
}

/* Hero should fit tiny screens without creating side scroll */
.hero .container {
  width: min(calc(100% - 24px), var(--max-width));
}

.hero-frame,
.hero-image,
.hero-overlay {
  max-width: 100%;
}

.hero-overlay h1,
.hero-overlay p,
.section-heading h2,
.collection-card h3,
.collection-card p,
.product-info h3,
.page-hero h1,
.page-hero p {
  overflow-wrap: anywhere;
}

/* Collection category carousel: full items only on mobile, swipeable with arrows */
.category-strip {
  overflow: hidden;
}

.category-strip .container {
  width: 100% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.category-row {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) 36px !important;
  gap: 6px !important;
  align-items: center !important;
  justify-content: stretch !important;
}

.strip-arrow {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  padding: 0 !important;
}

.category-scroll {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 8px 0 14px !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-circle {
  flex: 0 0 calc((100% - 28px) / 3) !important;
  width: calc((100% - 28px) / 3) !important;
  min-width: calc((100% - 28px) / 3) !important;
  max-width: calc((100% - 28px) / 3) !important;
  scroll-snap-align: start;
}

.category-img,
.circle-image {
  width: min(100%, 96px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  margin-right: auto;
}

.category-circle span {
  display: block;
  width: 100%;
  text-align: center;
  white-space: normal;
}

@media (max-width: 430px) {
  .category-circle {
    flex-basis: calc((100% - 14px) / 2) !important;
    width: calc((100% - 14px) / 2) !important;
    min-width: calc((100% - 14px) / 2) !important;
    max-width: calc((100% - 14px) / 2) !important;
  }
}

@media (max-width: 335px) {
  .category-circle {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .category-img,
  .circle-image {
    width: 104px !important;
  }
}

@media (min-width: 768px) {
  .category-strip .container {
    width: min(calc(100% - 60px), var(--max-width)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .category-row {
    grid-template-columns: 42px minmax(0, 1fr) 42px !important;
    gap: 12px !important;
  }
  .category-circle {
    flex: 0 0 112px !important;
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
  }
  .category-img,
  .circle-image {
    width: 108px !important;
  }
}

/* Keep content sections inside the phone viewport */
@media (max-width: 767px) {
  .container,
  .section > .container {
    width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .header-wrap.container {
    width: calc(100% - 24px) !important;
  }

  .logo-image {
    max-width: 190px;
  }

  .hero-overlay {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    padding: 18px !important;
  }

  .hero-overlay h1 {
    font-size: clamp(1.55rem, 8vw, 1.95rem) !important;
  }

  .magenta-pop {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .magenta-pop .section-heading {
    width: 100% !important;
    display: block !important;
    padding: 16px !important;
  }

  .magenta-pop .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.25rem) !important;
    line-height: 1.08 !important;
  }

  .section-link {
    display: inline-block;
    margin-top: 12px;
    white-space: normal !important;
  }

  .collection-grid,
  .product-grid,
  .placeholder-grid,
  .shop-products.placeholder-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .collection-card,
  .product-card,
  .placeholder-card,
  .mini-card,
  .newsletter-box,
  .shop-filter {
    width: 100% !important;
    max-width: 100% !important;
  }

  .collection-card p {
    font-size: .78rem;
  }

  .page-hero {
    min-height: 210px;
    padding: 46px 0 38px !important;
  }
}

@media (max-width: 380px) {
  .logo-image {
    max-width: 170px;
  }
  .cart-icon {
    width: 24px !important;
    height: 24px !important;
  }
  .cart-count {
    min-width: 22px;
    height: 22px;
    font-size: .75rem;
  }
  .hero .container {
    width: 100% !important;
  }
  .hero-image {
    min-height: 390px !important;
  }
}

/* ===== Pottery-Barn-inspired responsive header refresh ===== */
.site-header {
  background: rgba(255,255,255,.98);
}
.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr minmax(260px, 390px);
  align-items: center;
  gap: 18px;
}
.header-logo {
  justify-self: center;
}
.header-logo .logo-image {
  max-height: 56px;
  width: auto;
}
.site-search {
  display: flex;
  height: 40px;
  border: 1px solid #cfcfcf;
  background: var(--white);
}
.site-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 0 10px;
  outline: 0;
  font-size: .82rem;
}
.site-search button {
  width: 42px;
  border: 0;
  border-left: 1px solid #e5e5e5;
  background: #fafafa;
  cursor: pointer;
}
.site-search svg,
.header-action svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-search svg { width: 22px; height: 22px; }
.header-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
}
.header-action {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--black);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: .66rem;
  line-height: 1.1;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.header-action svg,
.cart-icon {
  width: 21px;
  height: 21px;
  color: var(--black);
}
.cart-link {
  text-transform: none;
  color: var(--black);
  gap: 2px;
}
.cart-link .cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 19px;
  height: 19px;
  font-size: .68rem;
  border: 2px solid var(--white);
}
.account-menu { position: relative; }
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 230px;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 1100;
}
.account-dropdown.show { display: block; }
.account-dropdown a {
  display: block;
  padding: 12px 16px;
  color: var(--black);
  font-size: .86rem;
}
.account-dropdown a:hover,
.mobile-nav a:hover {
  background: rgba(0,125,146,.12);
  font-weight: 700;
}
.collection-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.collection-nav-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.collection-nav-inner::-webkit-scrollbar { display: none; }
.collection-nav a {
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  padding: 12px 0;
}
.collection-nav a:hover { color: var(--teal); }
.menu-toggle {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--black);
  margin: 4px auto;
}
.mobile-search {
  display: flex;
  gap: 8px;
  padding: 12px 0;
}
.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  padding: 10px;
}
.mobile-search button {
  border: 0;
  background: var(--teal);
  color: var(--white);
  padding: 0 14px;
  font-weight: 700;
}

/* NEW & FEATURED homepage strip */
.new-featured {
  padding: 28px 0 34px;
  background: var(--white);
  overflow: hidden;
}
.new-featured-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
}
.new-featured-title h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #5a554f;
}
.new-featured-title p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #5f5a55;
}
.feature-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 28vw);
  gap: 24px;
  overflow-x: auto;
  padding: 0 32px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.feature-scroller::-webkit-scrollbar { display: none; }
.feature-panel { scroll-snap-align: start; }
.feature-image {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.42);
  font-weight: 700;
  background: linear-gradient(135deg, #e8f7f9, #ffe5ef);
}
.gradient-two { background: linear-gradient(135deg, #fff5d2, #e6f6f8); }
.gradient-three { background: linear-gradient(135deg, #f2eeee, #e8fbff); }
.gradient-four { background: linear-gradient(135deg, #ffe5ef, #fff4c9); }
.feature-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: #333;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: .72rem;
  letter-spacing: .16em;
}
.feature-panel a {
  display: block;
  text-align: center;
  padding: 14px 8px 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: #56524f;
}

@media (max-width: 1024px) {
  .header-main {
    min-height: 68px;
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
  }
  .site-search,
  .optional-action,
  .collection-nav { display: none; }
  .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .header-logo { justify-self: center; }
  .header-logo .logo-image { max-height: 44px; }
  .header-actions { gap: 12px; }
  .header-action span:not(.cart-count) { display: none; }
  .account-dropdown { right: -46px; }
  .mobile-nav {
    width: min(100%, 340px);
    padding: 0 18px 18px;
    border-right: 1px solid var(--line);
  }
  .mobile-nav a { padding: 13px 0; }
  .new-featured-title { align-items: flex-start; flex-direction: column; gap: 2px; }
  .feature-scroller { grid-auto-columns: minmax(260px, 78vw); padding-left: 20px; padding-right: 20px; gap: 16px; }
  .feature-image { min-height: 300px; }
}

@media (max-width: 520px) {
  .header-main { min-height: 62px; grid-template-columns: 34px 1fr 58px; }
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-logo .logo-image { max-height: 36px; }
  .header-actions { justify-content: flex-end; }
  .account-menu { display: none; }
  .cart-link .cart-count { top: -7px; right: -9px; }
  .hero { padding-top: 0; }
  .new-featured { padding-top: 22px; }
  .new-featured-title h2 { font-size: 1.75rem; }
  .new-featured-title p { font-size: .9rem; }
  .feature-scroller { grid-auto-columns: minmax(238px, 84vw); padding-left: 14px; padding-right: 14px; }
  .feature-image { min-height: 240px; }
}


/* ===== v8 responsive header + new items refinements ===== */
.collection-nav {
  background: rgba(249, 221, 60, 0.22);
}
.collection-nav-inner {
  width: 100%;
  max-width: none;
  padding-left: clamp(14px, 2.5vw, 36px);
  padding-right: clamp(14px, 2.5vw, 36px);
  justify-content: center;
  gap: clamp(10px, 1.75vw, 26px);
  flex-wrap: wrap;
  overflow: visible;
}
.collection-nav a {
  color: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(.68rem, .78vw, .78rem);
}

.new-featured {
  background: var(--white);
}
.new-featured-title {
  display: block;
  margin-bottom: 14px;
  font-family: "Montserrat", Arial, sans-serif;
}
.new-featured-title .feature-eyebrow {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.new-featured-title h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: .01em;
}
.feature-carousel {
  position: relative;
}
.feature-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  background: rgba(255,255,255,.94);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.feature-arrow-left { left: 12px; }
.feature-arrow-right { right: 12px; }
.feature-scroller {
  scroll-behavior: smooth;
  font-family: "Montserrat", Arial, sans-serif;
}
.feature-panel a {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--black);
}

@media (max-width: 1180px) {
  .collection-nav-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .collection-nav a { scroll-snap-align: start; }
}

@media (max-width: 1024px) {
  .header-main {
    grid-template-columns: 34px 44px 1fr auto;
  }
  .site-search {
    display: flex;
    width: 40px;
    height: 40px;
    justify-self: start;
    border-color: transparent;
    background: transparent;
  }
  .site-search input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .site-search button {
    width: 40px;
    border: 0;
    background: transparent;
  }
  .collection-nav { display: none; }
  .mobile-search { display: none; }
}

@media (max-width: 520px) {
  .header-main { grid-template-columns: 32px 38px 1fr 44px; }
  .site-search, .site-search button { width: 36px; height: 36px; }
  .header-logo { justify-self: center; }
  .feature-arrow { width: 32px; height: 32px; font-size: 1.25rem; }
  .feature-arrow-left { left: 6px; }
  .feature-arrow-right { right: 6px; }
  .feature-scroller { grid-auto-columns: minmax(230px, 82vw); }
}

/* ===== v9 requested updates ===== */
/* Header/nav: white collection nav, reliable mobile hamburger + search on far left */
.collection-nav {
  background: var(--white) !important;
}

@media (max-width: 1024px) {
  .header-main {
    position: relative !important;
    grid-template-columns: 34px 42px 1fr auto !important;
    align-items: center !important;
  }
  .menu-toggle {
    display: inline-flex !important;
    grid-column: 1 !important;
    justify-self: start !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 4 !important;
  }
  .site-search {
    display: flex !important;
    grid-column: 2 !important;
    justify-self: start !important;
    z-index: 4 !important;
  }
  .header-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
  }
  .header-actions {
    grid-column: 4 !important;
    justify-self: end !important;
    z-index: 4 !important;
  }
  .account-menu { display: block !important; }
  .account-toggle { display: inline-flex !important; }
  .optional-action { display: none !important; }
}

@media (max-width: 520px) {
  .header-main {
    grid-template-columns: 32px 38px 1fr auto !important;
    column-gap: 6px !important;
  }
  .account-menu { display: block !important; }
  .header-actions { gap: 8px !important; }
  .header-action svg,
  .cart-icon { width: 21px !important; height: 21px !important; }
  .header-logo .logo-image { max-height: 34px !important; max-width: 168px !important; }
  .account-dropdown { right: -58px !important; }
}

/* Curated Collections under hero */
.curated-collections {
  background: var(--white);
  padding: 34px 0 42px !important;
}
.collections-heading {
  margin-bottom: 16px;
}
.collections-heading h2 {
  text-transform: uppercase;
}
.curated-collections .category-row {
  margin-top: 4px;
}

/* New Items: more cards, no shipping badge, branded gradients, mobile-safe carousel */
.feature-badge { display: none !important; }
.gradient-five { background: linear-gradient(135deg, #e6f6f8, #fff5d2); }
.gradient-six { background: linear-gradient(135deg, #ffe5ef, #e8f7f9); }
.gradient-seven { background: linear-gradient(135deg, #fff4c9, #f2eeee); }
.gradient-eight { background: linear-gradient(135deg, #e8fbff, #ffe5ef); }
.feature-scroller {
  grid-auto-columns: minmax(250px, 24vw) !important;
}
@media (max-width: 1024px) {
  .feature-scroller { grid-auto-columns: minmax(245px, 76vw) !important; }
}
@media (max-width: 520px) {
  .feature-scroller { grid-auto-columns: minmax(222px, 82vw) !important; }
}

/* ===== v10 requested alignment + NEW ITEMS background ===== */
/* Remove the small SHOP BY COLLECTION line above Curated Collections */
.curated-collections .collections-heading .eyebrow {
  display: none !important;
}

/* Make homepage section heading containers share the same left edge */
.curated-collections > .container,
.new-featured > .container,
#featured-products > .container {
  width: min(calc(100% - 140px), var(--max-width)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* New Items: keep eyebrow on white, add soft branded teal behind the headline and carousel */
.new-featured {
  padding-top: 30px !important;
  padding-bottom: 42px !important;
  background: linear-gradient(
    to bottom,
    var(--white) 0,
    var(--white) 42px,
    rgba(0, 125, 146, 0.13) 42px,
    rgba(0, 125, 146, 0.13) 100%
  ) !important;
}

.new-featured-title {
  margin-bottom: 18px !important;
}

.new-featured-title .feature-eyebrow {
  display: inline-block;
  background: rgba(243, 22, 107, 0.16);
  padding: 0 2px;
  margin-bottom: 14px !important;
}

.new-featured-title h2 {
  margin: 0 !important;
}

.feature-carousel {
  width: min(calc(100% - 140px), var(--max-width)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.feature-scroller {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.feature-arrow-left { left: -24px !important; }
.feature-arrow-right { right: -24px !important; }

@media (max-width: 1180px) {
  .curated-collections > .container,
  .new-featured > .container,
  #featured-products > .container,
  .feature-carousel {
    width: min(calc(100% - 80px), var(--max-width)) !important;
  }
  .feature-arrow-left { left: -18px !important; }
  .feature-arrow-right { right: -18px !important; }
}

@media (max-width: 767px) {
  .curated-collections > .container,
  .new-featured > .container,
  #featured-products > .container,
  .feature-carousel {
    width: calc(100% - 28px) !important;
  }
  .new-featured {
    background: linear-gradient(
      to bottom,
      var(--white) 0,
      var(--white) 40px,
      rgba(0, 125, 146, 0.13) 40px,
      rgba(0, 125, 146, 0.13) 100%
    ) !important;
  }
  .feature-arrow-left { left: -5px !important; }
  .feature-arrow-right { right: -5px !important; }
}

/* ===== v11 requested fixes: mobile hamburger, tighter collections, NEW FINDS ===== */
/* Make the responsive hamburger impossible to disappear: it sits first, left of search. */
@media (max-width: 1024px) {
  .header-main.container {
    display: grid !important;
    grid-template-columns: 40px 40px minmax(0, 1fr) auto !important;
    column-gap: 8px !important;
    align-items: center !important;
    min-height: 68px !important;
    position: relative !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    margin: 0 !important;
    padding: 8px !important;
    justify-self: start !important;
    align-self: center !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--black) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 50 !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    background: var(--black) !important;
    border-radius: 999px !important;
  }

  .site-search {
    display: flex !important;
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
    width: 38px !important;
    height: 38px !important;
    justify-self: start !important;
    align-self: center !important;
    border: 0 !important;
    background: transparent !important;
    z-index: 45 !important;
  }

  .site-search button {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .site-search svg {
    width: 22px !important;
    height: 22px !important;
  }

  .header-logo {
    grid-column: 3 / 4 !important;
    grid-row: 1 !important;
    position: static !important;
    transform: none !important;
    justify-self: center !important;
    align-self: center !important;
    z-index: 2 !important;
  }

  .header-actions {
    grid-column: 4 / 5 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    z-index: 45 !important;
  }
}

@media (max-width: 520px) {
  .header-main.container {
    grid-template-columns: 36px 36px minmax(0, 1fr) auto !important;
    column-gap: 5px !important;
    min-height: 64px !important;
  }
  .menu-toggle,
  .site-search,
  .site-search button {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }
  .menu-toggle span { width: 20px !important; }
  .site-search svg { width: 20px !important; height: 20px !important; }
  .header-logo .logo-image {
    max-width: 154px !important;
    max-height: 34px !important;
  }
}

/* Curated Collections: tighter spacing so more buttons fit without feeling crowded. */
.curated-collections .category-scroll {
  gap: clamp(8px, 1.1vw, 16px) !important;
}

@media (min-width: 768px) {
  .curated-collections .category-circle {
    flex: 0 0 98px !important;
    width: 98px !important;
    min-width: 98px !important;
    max-width: 98px !important;
  }
  .curated-collections .category-img,
  .curated-collections .circle-image {
    width: 92px !important;
  }
}

@media (max-width: 767px) {
  .curated-collections .category-scroll {
    gap: 8px !important;
  }
  .curated-collections .category-circle {
    flex: 0 0 calc((100% - 16px) / 3) !important;
    width: calc((100% - 16px) / 3) !important;
    min-width: calc((100% - 16px) / 3) !important;
    max-width: calc((100% - 16px) / 3) !important;
  }
}

@media (max-width: 430px) {
  .curated-collections .category-circle {
    flex-basis: calc((100% - 8px) / 2) !important;
    width: calc((100% - 8px) / 2) !important;
    min-width: calc((100% - 8px) / 2) !important;
    max-width: calc((100% - 8px) / 2) !important;
  }
}

/* New Finds: remove the small eyebrow line and lighten the teal background. */
.new-featured {
  background: linear-gradient(
    to bottom,
    var(--white) 0,
    var(--white) 38px,
    rgba(0, 125, 146, 0.055) 38px,
    rgba(0, 125, 146, 0.055) 100%
  ) !important;
}

.new-featured-title .feature-eyebrow {
  display: none !important;
}

.new-featured-title h2 {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .new-featured {
    background: linear-gradient(
      to bottom,
      var(--white) 0,
      var(--white) 34px,
      rgba(0, 125, 146, 0.055) 34px,
      rgba(0, 125, 146, 0.055) 100%
    ) !important;
  }
}

/* ===== v12 requested fixes ===== */
/* Keep responsive hamburger visible on every small screen, left of search. */
@media (max-width: 1024px) {
  .site-header .header-main.container {
    display: grid !important;
    grid-template-columns: 38px 38px minmax(0, 1fr) auto !important;
    column-gap: 6px !important;
    align-items: center !important;
    min-height: 64px !important;
    overflow: visible !important;
  }
  .site-header .menu-toggle {
    display: flex !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 7px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    border: 0 !important;
    background: transparent !important;
    z-index: 9999 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header .menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    background: var(--black) !important;
    border-radius: 999px !important;
  }
  .site-header .site-search {
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    justify-self: start !important;
    align-self: center !important;
    border: 0 !important;
    background: transparent !important;
    z-index: 9000 !important;
  }
  .site-header .site-search input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .site-header .site-search button {
    width: 36px !important;
    height: 36px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
  }
  .site-header .header-logo {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    min-width: 0 !important;
  }
  .site-header .header-actions {
    grid-column: 4 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    min-width: 34px !important;
  }
  .site-header .optional-action { display: none !important; }
}

@media (max-width: 380px) {
  .site-header .header-main.container {
    grid-template-columns: 34px 34px minmax(0, 1fr) 36px !important;
    column-gap: 4px !important;
    width: calc(100% - 14px) !important;
  }
  .site-header .menu-toggle,
  .site-header .site-search,
  .site-header .site-search button {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
  }
  .site-header .menu-toggle span { width: 19px !important; }
  .site-header .header-logo .logo-image { max-width: 142px !important; max-height: 32px !important; }
}

/* Curated collection arrows: no circles, larger arrows. */
.curated-collections .strip-arrow {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--black) !important;
  font-size: 2.4rem !important;
  width: 34px !important;
  height: 44px !important;
}
.curated-collections .category-row { gap: 4px !important; }
.curated-collections .category-scroll { gap: clamp(6px, .9vw, 12px) !important; }

/* New Finds: more light teal above headline and more space before Featured Products. */
.new-featured {
  background: rgba(0, 125, 146, 0.055) !important;
  padding-top: 40px !important;
  padding-bottom: 64px !important;
  margin-bottom: 34px !important;
}
.new-featured-title { margin-bottom: 18px !important; }
#featured-products { padding-top: 34px !important; }

/* Footer: branding blue background, five columns, white text. */
.site-footer {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 44px 0 42px !important;
  border-top: 0 !important;
}
.site-footer .footer-grid,
.site-footer .footer-grid-five {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(120px, 1fr)) !important;
  gap: clamp(18px, 3vw, 42px) !important;
  align-items: start !important;
}
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a {
  color: var(--white) !important;
}
.site-footer h4 {
  margin: 0 0 10px !important;
  font-size: .78rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.site-footer p {
  margin: 0 0 10px !important;
  font-size: .88rem !important;
  line-height: 1.45 !important;
  opacity: .96 !important;
}
.site-footer a {
  display: block !important;
  font-size: .82rem !important;
  line-height: 1.3 !important;
  padding: 3px 0 !important;
  opacity: .96 !important;
}
.site-footer a:hover { opacity: 1 !important; text-decoration: underline !important; }
.footer-logo { padding: 0 0 12px !important; }
.footer-logo-image {
  max-width: 190px !important;
  max-height: 58px !important;
  width: auto !important;
  background: var(--white) !important;
  padding: 8px 10px !important;
}
.footer-copy { margin-top: 16px !important; font-size: .76rem !important; }
.footer-social { text-align: center !important; }
.footer-social h4 { text-align: center !important; }
.social-icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
}
.social-icon {
  width: 34px !important;
  height: 34px !important;
  border: 1.5px solid var(--white) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  .site-footer .footer-grid,
  .site-footer .footer-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-social { text-align: left !important; }
  .footer-social h4 { text-align: left !important; }
  .social-icons { justify-content: flex-start !important; }
}

@media (max-width: 520px) {
  .site-footer .footer-grid,
  .site-footer .footer-grid-five {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .site-footer { padding: 34px 0 !important; }
  .footer-social,
  .footer-social h4 { text-align: left !important; }
  .social-icons { justify-content: flex-start !important; }
}

/* ===== v13 requested refinements ===== */
/* Top collection nav stays centered on all desktop widths before hamburger mode. */
@media (min-width: 1025px) {
  .collection-nav-inner {
    justify-content: center !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    gap: clamp(14px, 1.9vw, 30px) !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .collection-nav a {
    font-size: clamp(.66rem, .78vw, .78rem) !important;
    white-space: nowrap !important;
  }
}

/* Hero SHOP ALL button: 50% branding yellow. */
.hero-button {
  background: rgba(249, 221, 60, 0.5) !important;
  border-color: rgba(249, 221, 60, 0.5) !important;
  color: var(--black) !important;
}
.hero-button:hover,
.hero-button:focus-visible {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
}

/* Curated Collections arrows: centered with the circular images, not the label text. */
.curated-collections .category-row {
  align-items: start !important;
}
.curated-collections .strip-arrow {
  align-self: start !important;
  margin-top: 32px !important;
}
@media (max-width: 767px) {
  .curated-collections .strip-arrow { margin-top: 26px !important; }
}
@media (max-width: 430px) {
  .curated-collections .strip-arrow { margin-top: 28px !important; }
}

/* New Finds: grey background, darker than the prior pale teal, and more spacing below. */
.new-featured {
  background: #e7e7e7 !important;
  padding-top: 42px !important;
  padding-bottom: 66px !important;
  margin-bottom: 42px !important;
}
#featured-products { padding-top: 46px !important; }

/* New Finds arrows: squared side-tab style. */
.feature-arrow {
  width: 36px !important;
  height: 58px !important;
  border-radius: 0 !important;
  border: 1px solid #bdbdbd !important;
  background: var(--white) !important;
  color: var(--black) !important;
  font-size: 2rem !important;
  font-weight: 400 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.12) !important;
}
.feature-arrow-left { left: -18px !important; }
.feature-arrow-right { right: -18px !important; }
@media (max-width: 767px) {
  .feature-arrow { width: 32px !important; height: 52px !important; font-size: 1.7rem !important; }
  .feature-arrow-left { left: -8px !important; }
  .feature-arrow-right { right: -8px !important; }
}

/* Footer line spacing and icon refinements. */
.site-footer a {
  line-height: 1.05 !important;
  padding: 1px 0 !important;
  margin-bottom: 3px !important;
}
.site-footer p {
  line-height: 1.25 !important;
  margin-bottom: 7px !important;
}
.footer-tagline strong {
  font-weight: 800 !important;
}
.footer-copy {
  font-size: .58rem !important;
  line-height: 1.1 !important;
  margin-top: 12px !important;
}
.social-icon {
  background: var(--magenta) !important;
  border: 0 !important;
  color: var(--white) !important;
}
.social-icon svg {
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.social-icon[aria-label="Facebook"] svg {
  fill: currentColor !important;
  stroke: none !important;
}

/* ===== v14 requested refinements ===== */
/* Bring back top-right Recents and Favorites on desktop/tablet header. */
.optional-action {
  display: inline-flex;
}
.optional-action:hover,
.optional-action:focus-visible {
  color: var(--teal);
}
@media (max-width: 1024px) {
  .optional-action { display: none !important; }
}

/* Add HOME to top nav and keep the row centered until hamburger mode. */
@media (min-width: 1025px) {
  .collection-nav-inner {
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    gap: clamp(10px, 1.45vw, 24px) !important;
  }
  .collection-nav a {
    font-size: clamp(.62rem, .72vw, .76rem) !important;
  }
}

/* Curated Collections must never clip; keep it swipeable and reveal full buttons. */
.curated-collections,
.curated-collections .container,
.curated-collections .category-row {
  overflow: visible !important;
}
.curated-collections .category-row {
  grid-template-columns: 34px minmax(0, 1fr) 34px !important;
  align-items: start !important;
}
.curated-collections .category-scroll {
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  justify-content: flex-start !important;
  padding: 8px 2px 18px !important;
  scroll-padding-left: 2px !important;
  scroll-padding-right: 2px !important;
}
.curated-collections .category-circle {
  flex: 0 0 98px !important;
  width: 98px !important;
  min-width: 98px !important;
  max-width: 98px !important;
}
.curated-collections .category-img,
.curated-collections .circle-image {
  width: 92px !important;
  height: 92px !important;
}
@media (min-width: 1180px) {
  .curated-collections .category-scroll {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .curated-collections .category-circle {
    flex: 0 0 calc((100% - 16px) / 3) !important;
    width: calc((100% - 16px) / 3) !important;
    min-width: calc((100% - 16px) / 3) !important;
    max-width: calc((100% - 16px) / 3) !important;
  }
  .curated-collections .category-img,
  .curated-collections .circle-image {
    width: min(92px, 100%) !important;
    height: auto !important;
  }
}
@media (max-width: 430px) {
  .curated-collections .category-circle {
    flex: 0 0 calc((100% - 8px) / 2) !important;
    width: calc((100% - 8px) / 2) !important;
    min-width: calc((100% - 8px) / 2) !important;
    max-width: calc((100% - 8px) / 2) !important;
  }
}

/* Hero SHOP ALL button is 100% brand yellow. */
.hero-button,
.hero-button:hover,
.hero-button:focus-visible {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black) !important;
}

/* Subtle focusing/zoom movement on the homepage hero image. */
.hero-image {
  animation: heroFocusIn 16s ease-in-out infinite alternate;
  background-size: 100% auto, 100% auto;
  background-position: center center, center center;
}
@keyframes heroFocusIn {
  0% { background-size: 100% auto, 100% auto; background-position: center center, center center; }
  100% { background-size: 100% auto, 108% auto; background-position: center center, center center; }
}
@media (max-width: 767px) {
  .hero-image { background-size: auto 100%, auto 100%; }
  @keyframes heroFocusIn {
    0% { background-size: auto 100%, auto 100%; }
    100% { background-size: auto 110%, auto 110%; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none !important; }
}

/* Footer refinements. */
.footer-copy {
  font-size: .38rem !important;
  line-height: 1.05 !important;
  letter-spacing: .02em !important;
  opacity: .9 !important;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow) !important;
  text-decoration: none !important;
}

/* Collection pages: left-side filter like reference screenshot. */
.collection-page-layout {
  display: grid;
  grid-template-columns: minmax(180px, 245px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}
.collection-filter {
  position: sticky;
  top: 132px;
  align-self: start;
  background: var(--white);
  padding: 4px 0 16px;
}
.collection-filter h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 500;
}
.filter-block {
  margin: 0 0 20px;
}
.filter-block h3 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: .82rem;
  line-height: 1.25;
  font-weight: 800;
}
.filter-block a {
  display: block;
  color: var(--black);
  font-size: .78rem;
  line-height: 1.28;
  margin: 0 0 4px;
  font-weight: 400;
}
.filter-block a:hover,
.filter-block a:focus-visible {
  color: var(--teal);
  font-weight: 600;
}
@media (max-width: 900px) {
  .collection-page-layout {
    grid-template-columns: 1fr;
  }
  .collection-filter {
    position: static;
    border: 1px solid var(--line);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }
  .collection-filter h2 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }
}
@media (max-width: 520px) {
  .collection-filter {
    grid-template-columns: 1fr;
  }
}

/* ===== v15 updates ===== */
/* 1. Use uploaded footer social icons and keep them crisp/magenta-reversed. */
.social-icon {
  width: 34px !important;
  height: 34px !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.social-icon img { width: 34px !important; height: 34px !important; display:block !important; }
.site-footer a:hover { color: var(--yellow) !important; text-decoration: none !important; }
.site-footer .footer-copy { font-size: .34rem !important; line-height: 1 !important; letter-spacing: .02em !important; }

/* 2. Animated hero image: slow focus/zoom movement. */
.hero-image { position: relative; overflow: hidden; background: none !important; }
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.24), rgba(0,0,0,0.24)), url("../images/hero.png") center center / cover no-repeat;
  transform-origin: center;
  animation: heroFocusZoom 12s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay { z-index: 2; }
@keyframes heroFocusZoom { from { transform: scale(1); } to { transform: scale(1.095) translate3d(-1.5%, -1.2%, 0); } }
@media (prefers-reduced-motion: reduce) { .hero-image::before { animation: none; } }
.hero-button { background: var(--yellow) !important; border-color: var(--yellow) !important; color: var(--black) !important; }

/* 3. Center major homepage headings and eyebrow text. */
.curated-collections .section-heading,
.new-featured-title,
#featured-products .section-heading {
  justify-content: center !important;
  text-align: center !important;
  align-items: center !important;
}
#featured-products .section-heading { position: relative !important; }
#featured-products .section-heading .section-link { position: absolute !important; right: 0 !important; top: 10px !important; }
.curated-collections .section-heading > div,
#featured-products .section-heading > div { width: 100% !important; text-align: center !important; }
.new-featured-title { display: block !important; }

/* 4. Newsletter pop-up. */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(62,62,62,.38);
}
.newsletter-modal.show { display: flex; }
.newsletter-modal-card {
  position: relative;
  width: min(1040px, 100%);
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.newsletter-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.newsletter-modal-card h2 { color: var(--black); margin: 0 0 12px; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.05; }
.newsletter-modal-card p { margin: 0; color: var(--text-light); max-width: 60ch; }
@media (max-width: 760px) { .newsletter-modal-card { grid-template-columns: 1fr; } .newsletter-form { justify-content: flex-start; } .newsletter-form input { min-width: 0; width: 100%; } }

/* 5. Account/help pages. */
.page-shell { padding: clamp(34px, 5vw, 72px) 0; }
.page-title { text-align: center; margin-bottom: 28px; }
.page-title h1 { margin: 0; color: var(--black); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; }
.page-title p { max-width: 72ch; margin: 12px auto 0; color: var(--text-light); }
.account-layout { display: grid; grid-template-columns: 1fr 1px 1fr; gap: clamp(20px, 4vw, 42px); max-width: 1180px; margin: 0 auto; }
.account-divider { background: #d8d8d8; }
.account-panel h2 { display:flex; align-items:center; gap:10px; font-size:1.65rem; margin: 0 0 26px; color: var(--text); }
.form-stack { display:grid; gap:18px; }
.form-stack input { width:100%; min-height:68px; padding:0 24px; border:1px solid #d5d5d5; border-radius:6px; font-size:1.25rem; }
.check-row { display:flex; align-items:center; gap:12px; font-size:1rem; }
.check-row input { width:28px; height:28px; accent-color: var(--black); }
.wide-btn { min-height:62px; border-radius:10px; font-size:1.2rem; }
.account-note { text-align:center; color:var(--text-light); font-size:.95rem; }
.account-or { display:flex; align-items:center; gap:22px; max-width:1180px; margin:40px auto 24px; color:var(--text-light); }
.account-or::before,.account-or::after { content:""; height:1px; background:#d8d8d8; flex:1; }
.social-login { display:grid; gap:14px; max-width:560px; margin:0 auto; }
.social-login button { min-height:58px; background:#fff; border:1px solid #333; border-radius:10px; font-size:1.15rem; }
.preferences-form { max-width:1180px; margin:0 auto; }
.preferences-form label { font-weight:700; display:block; margin-bottom:10px; }
.preferences-form input[type=email] { width:min(520px,100%); min-height:54px; border:1px solid #ccc; border-radius:4px; padding:0 14px; }
.pref-block { padding:26px 0; border-bottom:1px solid #e5e5e5; }
.pref-block h2 { margin:0 0 4px; color:#777; }
.pref-options { display:flex; gap:clamp(30px, 10vw, 160px); background:#f6f6f6; padding:22px 34px; margin-top:18px; }
.pref-options label { font-weight:500; color:#777; display:flex; gap:10px; align-items:center; }
.pref-save { margin-top:28px; }
.help-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.help-card { border:1px solid #ddd; border-radius:14px; padding:22px; background:#fff; box-shadow:var(--shadow); }
.help-card h2,.help-card h3 { color:var(--black); margin-top:0; }
.help-card a { color:var(--teal); font-weight:700; }
.article-content { max-width: 900px; margin: 0 auto; font-size:1rem; color:var(--text); }
.article-content h2 { color:var(--black); margin-top:28px; }
.article-content ul { padding-left:1.2rem; }
@media (max-width: 800px) { .account-layout { grid-template-columns:1fr; } .account-divider { display:none; } .help-grid { grid-template-columns:1fr; } }

/* Header dropdown sublinks hover. */
.account-dropdown a:hover { background: rgba(0,125,146,.12) !important; font-weight: 800 !important; color: var(--black) !important; }

/* v16 split newsletter offer popup */
.newsletter-modal-card.newsletter-modal-split {
  width: min(980px, calc(100vw - 28px));
  padding: 0 !important;
  overflow: hidden;
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  border-radius: 12px;
  background: #fff;
}
.newsletter-modal-left {
  background: var(--teal);
  color: #fff;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 54px);
}
.newsletter-modal-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 10px 14px;
  border-radius: 2px;
}
.newsletter-modal-left .eyebrow {
  color: #fff !important;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.newsletter-modal-left h2 {
  color: #fff !important;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
}
.newsletter-modal-right {
  background: #f8f3eb;
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-offer-intro {
  color: var(--black) !important;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
  margin: 0 0 22px !important;
  max-width: 560px !important;
}
.modal-newsletter-form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  justify-content: stretch !important;
  width: 100%;
}
.modal-newsletter-form input {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 68px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  padding: 0 26px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  background: #fff;
}
.newsletter-offer-button {
  width: 100%;
  min-height: 70px;
  border-radius: 8px !important;
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: #fff !important;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  text-transform: none;
}
.newsletter-terms {
  color: var(--black) !important;
  text-align: center;
  font-size: clamp(.9rem, 1.7vw, 1.05rem);
  line-height: 1.55;
  margin: 10px 0 0 !important;
  max-width: none !important;
}
.newsletter-terms a {
  color: var(--black);
  text-decoration: underline;
  font-weight: 700;
}
.newsletter-close {
  z-index: 2;
}
@media (max-width: 760px) {
  .newsletter-modal-card.newsletter-modal-split { grid-template-columns: 1fr !important; max-height: calc(100vh - 28px); overflow-y: auto; }
  .newsletter-modal-left { gap: 18px; }
  .newsletter-modal-logo { max-width: 170px; }
  .newsletter-modal-right { padding: 24px; }
  .modal-newsletter-form input, .newsletter-offer-button { min-height: 58px; }
}

/* ===== v17 premium Shop by Collection cards ===== */
.shop-collection-cards {
  padding: clamp(44px, 6vw, 78px) 0;
  background: var(--white);
  overflow: hidden;
}
.shop-collection-cards .container {
  max-width: 1240px;
}
.collection-card-heading {
  justify-content: center !important;
  text-align: center !important;
  margin-bottom: 28px !important;
}
.collection-card-heading > div {
  width: 100%;
}
.collection-card-heading .eyebrow {
  color: var(--teal) !important;
  text-align: center !important;
  margin: 0 0 8px !important;
}
.collection-card-heading h2 {
  text-align: center !important;
  margin: 0 !important;
}
.collection-card-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
}
.collection-card-scroll {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px !important;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 18px !important;
  -webkit-overflow-scrolling: touch;
}
.collection-card-scroll::-webkit-scrollbar { display: none; }
.collection-shop-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: var(--white);
  border: 1px solid rgba(62,62,62,0.11);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  box-shadow: 0 12px 30px rgba(62,62,62,0.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.collection-shop-card:hover,
.collection-shop-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(62,62,62,0.14);
  border-color: rgba(0,125,146,0.45);
}
.collection-card-image-wrap {
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,125,146,.10), rgba(243,22,107,.10), rgba(255,222,45,.18));
}
.collection-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease;
}
.collection-shop-card:hover img,
.collection-shop-card:focus-visible img {
  transform: scale(1.07);
}
.collection-card-copy {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.collection-card-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  color: var(--black);
}
.collection-card-copy p {
  margin: 0 0 22px;
  color: var(--text-light);
  line-height: 1.45;
  font-size: .98rem;
}
.collection-card-copy span {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  transition: background .2s ease, transform .2s ease;
}
.collection-shop-card:hover span,
.collection-shop-card:focus-visible span {
  background: var(--magenta);
  transform: translateY(-1px);
}
.collection-card-arrow {
  position: static !important;
  transform: none !important;
  width: 34px !important;
  height: 54px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--black) !important;
  font-size: 2.7rem !important;
  line-height: 1 !important;
}
.collection-card-arrow:hover,
.collection-card-arrow:focus-visible {
  color: var(--teal) !important;
  background: transparent !important;
}
@media (max-width: 920px) {
  .collection-card-scroll {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px !important;
  }
  .collection-shop-card { min-height: 390px; }
  .collection-card-image-wrap { height: 215px; }
}
@media (max-width: 620px) {
  .shop-collection-cards {
    padding: 38px 0 48px;
  }
  .collection-card-row {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 4px;
  }
  .collection-card-scroll {
    grid-auto-columns: 100%;
    gap: 14px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .collection-shop-card { min-height: 370px; border-radius: 17px; }
  .collection-card-image-wrap { height: 210px; }
  .collection-card-copy { padding: 20px; }
  .collection-card-arrow {
    width: 24px !important;
    font-size: 2.2rem !important;
  }
}

/* ===== v18 Shop by Collection retail card redesign ===== */
.shop-collection-cards {
  padding: clamp(54px, 6vw, 88px) 0 clamp(58px, 6vw, 92px) !important;
}
.shop-collection-cards .container {
  width: min(calc(100% - 96px), 1240px) !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.collection-card-heading {
  margin-bottom: 30px !important;
}
.collection-card-heading .eyebrow {
  display: block !important;
  font-size: .72rem !important;
  letter-spacing: .18em !important;
}
.collection-card-row {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) 40px !important;
  align-items: center !important;
  gap: 18px !important;
  overflow: visible !important;
}
.collection-card-scroll {
  display: flex !important;
  gap: 24px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  padding: 12px 2px 24px !important;
  scrollbar-width: none !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}
.collection-card-scroll::-webkit-scrollbar { display: none !important; }
.collection-card-scroll .collection-shop-card {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  width: calc((100% - 48px) / 3) !important;
  min-width: calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}
.collection-card-image-wrap {
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  border-bottom: 1px solid rgba(62,62,62,.08) !important;
}
.collection-card-image-wrap img {
  object-fit: cover !important;
  object-position: center !important;
}
.collection-card-copy {
  min-height: 230px !important;
  padding: 24px 24px 26px !important;
}
.collection-card-copy h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem) !important;
  margin-bottom: 10px !important;
}
.collection-card-copy p {
  font-size: 1rem !important;
  line-height: 1.45 !important;
  margin-bottom: 24px !important;
}
.collection-card-copy span {
  width: 100% !important;
  align-self: stretch !important;
  min-height: 46px !important;
  border-radius: 999px !important;
  color: var(--white) !important;
  text-align: center !important;
  padding: 0 18px !important;
  letter-spacing: .1em !important;
}
.collection-card-arrow {
  width: 40px !important;
  min-width: 40px !important;
  height: 64px !important;
  font-size: 3rem !important;
  align-self: center !important;
}
@media (max-width: 1024px) {
  .shop-collection-cards .container {
    width: min(calc(100% - 56px), 960px) !important;
  }
  .collection-card-row {
    grid-template-columns: 34px minmax(0, 1fr) 34px !important;
    gap: 14px !important;
  }
  .collection-card-scroll .collection-shop-card {
    flex-basis: calc((100% - 20px) / 2) !important;
    width: calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
    max-width: calc((100% - 20px) / 2) !important;
  }
  .collection-card-scroll { gap: 20px !important; }
}
@media (max-width: 640px) {
  .shop-collection-cards .container {
    width: calc(100% - 28px) !important;
  }
  .collection-card-row {
    grid-template-columns: 26px minmax(0, 1fr) 26px !important;
    gap: 6px !important;
  }
  .collection-card-scroll {
    gap: 14px !important;
    padding: 8px 0 20px !important;
  }
  .collection-card-scroll .collection-shop-card {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .collection-card-copy {
    min-height: 205px !important;
    padding: 20px !important;
  }
  .collection-card-copy h3 {
    font-size: 1.45rem !important;
  }
  .collection-card-arrow {
    width: 26px !important;
    min-width: 26px !important;
    font-size: 2.3rem !important;
  }
}

/* ===== v19 Shop by Collection large image tiles ===== */
:root { --black: #3e3e3e; }
.shop-collection-cards {
  padding: clamp(52px, 6vw, 86px) 0 clamp(48px, 6vw, 82px) !important;
}
.shop-collection-cards .container {
  width: min(calc(100% - 88px), 1280px) !important;
  max-width: 1280px !important;
}
.collection-card-heading {
  text-align: center !important;
  justify-content: center !important;
  margin-bottom: 30px !important;
}
.collection-card-heading > div {
  width: 100% !important;
}
.collection-card-heading .eyebrow {
  display: block !important;
  color: var(--teal) !important;
  margin-bottom: 8px !important;
}
.collection-card-heading h2 {
  color: var(--black) !important;
}
.collection-card-row {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) 34px !important;
  align-items: center !important;
  gap: 20px !important;
  overflow: visible !important;
}
.collection-card-scroll {
  display: flex !important;
  gap: clamp(24px, 3vw, 36px) !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  padding: 8px 0 18px !important;
  scrollbar-width: none !important;
  align-items: flex-start !important;
}
.collection-card-scroll::-webkit-scrollbar { display: none !important; }
.collection-card-scroll .collection-shop-card {
  flex: 0 0 calc((100% - clamp(48px, 6vw, 72px)) / 3) !important;
  width: calc((100% - clamp(48px, 6vw, 72px)) / 3) !important;
  min-width: calc((100% - clamp(48px, 6vw, 72px)) / 3) !important;
  max-width: calc((100% - clamp(48px, 6vw, 72px)) / 3) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
  text-decoration: none !important;
  display: block !important;
  scroll-snap-align: start !important;
}
.collection-card-scroll .collection-shop-card:hover,
.collection-card-scroll .collection-shop-card:focus-visible {
  transform: none !important;
  box-shadow: none !important;
}
.collection-card-image-wrap {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #f6f6f6 !important;
}
.collection-card-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform .45s ease !important;
}
.collection-card-scroll .collection-shop-card:hover img,
.collection-card-scroll .collection-shop-card:focus-visible img {
  transform: scale(1.035) !important;
}
.collection-card-copy {
  min-height: 0 !important;
  padding: 20px 0 0 !important;
  text-align: center !important;
  display: block !important;
  background: transparent !important;
}
.collection-card-copy h3 {
  margin: 0 !important;
  color: #3e3e3e !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(.82rem, 1vw, .95rem) !important;
  line-height: 1.15 !important;
  letter-spacing: .18em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}
.collection-card-copy h3::after {
  content: ' ›';
  letter-spacing: .05em;
}
.collection-card-copy p,
.collection-card-copy span {
  display: none !important;
}
.collection-card-arrow {
  color: #3e3e3e !important;
  background: transparent !important;
  border: 0 !important;
  width: 34px !important;
  min-width: 34px !important;
  height: 54px !important;
  font-size: 3.1rem !important;
  line-height: 1 !important;
  box-shadow: none !important;
}
.collection-card-arrow:hover,
.collection-card-arrow:focus-visible {
  color: var(--teal) !important;
  background: transparent !important;
  transform: none !important;
}
@media (max-width: 1024px) {
  .shop-collection-cards .container { width: min(calc(100% - 56px), 940px) !important; }
  .collection-card-scroll .collection-shop-card {
    flex-basis: calc((100% - 28px) / 2) !important;
    width: calc((100% - 28px) / 2) !important;
    min-width: calc((100% - 28px) / 2) !important;
    max-width: calc((100% - 28px) / 2) !important;
  }
  .collection-card-scroll { gap: 28px !important; }
}
@media (max-width: 640px) {
  .shop-collection-cards .container { width: calc(100% - 32px) !important; }
  .collection-card-row {
    grid-template-columns: 24px minmax(0, 1fr) 24px !important;
    gap: 8px !important;
  }
  .collection-card-scroll .collection-shop-card {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .collection-card-copy h3 { font-size: .86rem !important; }
  .collection-card-arrow {
    width: 24px !important;
    min-width: 24px !important;
    font-size: 2.5rem !important;
  }
}

/* ===== v20 custom carousel progress bars ===== */
.scroll-progress {
  width: min(70%, 780px);
  margin: 22px auto 0;
  padding: 0 4px;
}
.scroll-progress-track {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: #d8d4cf;
  overflow: hidden;
}
.scroll-progress-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 28%;
  height: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  cursor: grab;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}
.scroll-progress-thumb:hover,
.scroll-progress-thumb:focus-visible {
  background: #006f82;
  transform: scaleY(1.08);
  outline: none;
}
.scroll-progress-thumb.dragging {
  cursor: grabbing;
  transition: none;
}
.feature-scroll-progress {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .scroll-progress {
    width: min(78%, 420px);
    margin-top: 16px;
  }
  .scroll-progress-track {
    height: 6px;
  }
}


/* ===== v21 refinements: tighter Shop by Collection, dark gray slider, elevated New Finds ===== */
.shop-collection-cards {
  padding-top: clamp(36px, 4.8vw, 58px) !important;
  padding-bottom: clamp(42px, 5vw, 68px) !important;
}
.collection-card-heading {
  margin-bottom: 12px !important;
}
.collection-card-heading .eyebrow {
  margin-bottom: 5px !important;
}
.collection-card-scroll {
  padding-top: 0 !important;
}
.scroll-progress-thumb {
  background: #3e3e3e !important;
}
.scroll-progress-thumb:hover,
.scroll-progress-thumb:focus-visible {
  background: #2f2f2f !important;
}

.editorial-finds {
  background: #f7f4ef !important;
  padding: clamp(46px, 6vw, 78px) 0 !important;
  margin-bottom: 44px !important;
}
.editorial-finds .new-featured-title {
  margin-bottom: 28px !important;
  text-align: center !important;
}
.editorial-finds .new-featured-title h2 {
  color: #3e3e3e !important;
  letter-spacing: .06em !important;
}
.editorial-carousel {
  width: min(calc(100% - 140px), 1280px) !important;
  margin: 0 auto !important;
  position: relative !important;
}
.editorial-scroller {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(360px, 38vw) !important;
  gap: clamp(22px, 3vw, 34px) !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  padding: 0 0 18px !important;
  scrollbar-width: none !important;
}
.editorial-scroller::-webkit-scrollbar { display: none !important; }
.editorial-panel {
  scroll-snap-align: start !important;
}
.editorial-panel,
.editorial-panel a {
  min-width: 0 !important;
}
.editorial-card {
  position: relative !important;
  display: block !important;
  min-height: 520px !important;
  overflow: hidden !important;
  background: #e9e5df !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 18px 42px rgba(62,62,62,.14) !important;
}
.editorial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 15%, rgba(0,0,0,.15) 48%, rgba(0,0,0,.62) 100%);
  z-index: 1;
}
.editorial-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform .55s ease !important;
}
.editorial-card:hover img,
.editorial-card:focus-visible img {
  transform: scale(1.045) !important;
}
.editorial-card .editorial-label,
.editorial-card h3,
.editorial-card p,
.editorial-card strong {
  position: relative !important;
  z-index: 2 !important;
}
.editorial-card {
  padding: clamp(24px, 3vw, 34px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}
.editorial-label {
  display: inline-block !important;
  margin-bottom: 12px !important;
  font-size: .72rem !important;
  font-weight: 900 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.editorial-card h3 {
  margin: 0 0 12px !important;
  max-width: 92% !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem) !important;
  line-height: 1.05 !important;
  color: #fff !important;
}
.editorial-card p {
  margin: 0 0 18px !important;
  max-width: 88% !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
}
.editorial-card strong {
  color: #fff !important;
  font-size: .78rem !important;
  letter-spacing: .18em !important;
  font-weight: 900 !important;
}
.editorial-finds .feature-arrow {
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.88) !important;
  color: #3e3e3e !important;
  width: 44px !important;
  height: 64px !important;
  font-size: 2.4rem !important;
  box-shadow: 0 12px 24px rgba(62,62,62,.13) !important;
}
.editorial-finds .feature-arrow-left { left: -22px !important; }
.editorial-finds .feature-arrow-right { right: -22px !important; }
.editorial-finds .feature-scroll-progress {
  margin-top: 12px !important;
}
@media (min-width: 1180px) {
  .editorial-scroller {
    grid-auto-columns: minmax(390px, calc((100% - 34px) / 2.25)) !important;
  }
}
@media (max-width: 1024px) {
  .editorial-carousel {
    width: min(calc(100% - 70px), 900px) !important;
  }
  .editorial-scroller {
    grid-auto-columns: minmax(310px, 72vw) !important;
  }
  .editorial-card { min-height: 460px !important; }
}
@media (max-width: 640px) {
  .editorial-finds { padding: 40px 0 54px !important; }
  .editorial-carousel {
    width: calc(100% - 36px) !important;
  }
  .editorial-scroller {
    grid-auto-columns: 100% !important;
    gap: 16px !important;
  }
  .editorial-card {
    min-height: 410px !important;
    padding: 24px !important;
  }
  .editorial-card h3 { font-size: 1.55rem !important; max-width: 100% !important; }
  .editorial-card p { max-width: 100% !important; }
  .editorial-finds .feature-arrow {
    width: 32px !important;
    height: 50px !important;
    font-size: 2rem !important;
  }
  .editorial-finds .feature-arrow-left { left: -14px !important; }
  .editorial-finds .feature-arrow-right { right: -14px !important; }
}

/* v22 homepage retail layout: matches the approved sample image while keeping the existing sticky header and hero unchanged. */
.retail-container {
  width: min(calc(100% - 6vw), 1440px);
  margin: 0 auto;
}

.retail-section-heading {
  margin: 0 0 14px;
}

.retail-left-heading,
.retail-section-heading {
  text-align: left !important;
}

.retail-section-heading h2 {
  margin: 0;
  color: #3e3e3e;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.retail-collection-strip {
  padding: 24px 0 18px;
  background: #fff;
}

.retail-carousel-wrap {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  gap: 10px;
  align-items: center;
}

.retail-card-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 4px;
}

.retail-card-strip::-webkit-scrollbar {
  display: none;
}

.retail-arrow {
  width: 30px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #3e3e3e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.retail-arrow:hover {
  opacity: .75;
  transform: scale(1.05);
}

.retail-collection-tile {
  scroll-snap-align: start;
  text-align: center;
  display: block;
  min-width: 0;
}

.retail-collection-tile img {
  width: 100%;
  aspect-ratio: 1 / .88;
  object-fit: cover;
  object-position: center;
  transition: transform .25s ease, filter .25s ease;
}

.retail-collection-tile:hover img {
  transform: translateY(-2px);
  filter: brightness(.98);
}

.retail-collection-tile span,
.retail-find-tile span,
.retail-bath-side span {
  display: block;
  margin-top: 8px;
  color: #3e3e3e;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(.62rem, .78vw, .78rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.retail-progress {
  width: min(520px, 44vw);
  margin: 14px auto 0;
}

.retail-progress .scroll-progress-track {
  height: 4px;
  background: #e3e0dd;
  border-radius: 999px;
  overflow: hidden;
}

.retail-progress .scroll-progress-thumb {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #3e3e3e !important;
  cursor: pointer;
  display: block;
}

.retail-full-width-feature {
  background: #fff;
}

.retail-outdoor-promo {
  padding: 14px 0 18px;
}

.retail-promo-banner {
  position: relative;
  min-height: clamp(330px, 31vw, 470px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: url("../images/outdoors.png") center center / cover no-repeat;
}

.retail-promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.22) 43%, rgba(0,0,0,.04) 72%);
  z-index: -1;
}

.retail-promo-content {
  width: min(46%, 520px);
  margin-left: clamp(38px, 8vw, 120px);
  color: #fff;
}

.retail-promo-content p {
  margin: 0 0 8px;
  font-size: clamp(.72rem, .85vw, .9rem);
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.retail-promo-content h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6vw, 6.35rem);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.04em;
}

.retail-promo-content span {
  display: block;
  font-size: clamp(.95rem, 1.1vw, 1.22rem);
  font-weight: 600;
  line-height: 1.36;
}

.retail-promo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.retail-promo-buttons strong,
.retail-bath-copy strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  background: var(--teal);
  color: #fff;
  font-size: .68rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.retail-promo-buttons .secondary {
  background: rgba(255,255,255,.94);
  color: #3e3e3e;
}

.retail-new-finds {
  padding: 0 0 20px;
  background: #fff;
}

.retail-new-finds .retail-section-heading {
  margin-bottom: 10px;
}

.retail-finds-wrap {
  grid-template-columns: 28px minmax(0, 1fr) 28px;
}

.retail-finds-scroll {
  grid-auto-columns: minmax(190px, 1fr);
  gap: 22px;
}

.retail-find-tile {
  scroll-snap-align: start;
  text-align: center;
}

.retail-find-tile img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform .25s ease;
}

.retail-find-tile:hover img {
  transform: translateY(-2px);
}

.retail-new-finds .retail-progress {
  margin-top: 10px;
}

.retail-bath-feature {
  padding: 10px 0 48px;
}

.retail-bath-grid {
  display: grid;
  grid-template-columns: 2.3fr .95fr .95fr;
  gap: 10px;
  min-height: clamp(330px, 31vw, 470px);
}

.retail-bath-main,
.retail-bath-side {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f4f2ef;
}

.retail-bath-main img,
.retail-bath-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease;
}

.retail-bath-main:hover img,
.retail-bath-side:hover img {
  transform: scale(1.025);
}

.retail-bath-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.76) 53%, rgba(255,255,255,.92) 78%);
}

.retail-bath-copy {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: min(42%, 430px);
  z-index: 2;
  color: #3e3e3e;
}

.retail-bath-copy h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.3vw, 4.8rem);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}

.retail-bath-copy p {
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: clamp(.82rem, 1vw, 1.05rem);
  line-height: 1.5;
  font-weight: 500;
}

.retail-bath-side {
  text-align: center;
}

.retail-bath-side img {
  height: calc(100% - 30px);
}

.retail-bath-side span {
  height: 30px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

@media (min-width: 1200px) {
  .retail-collection-scroll {
    grid-auto-columns: calc((100% - 126px) / 8);
  }
  .retail-finds-scroll {
    grid-auto-columns: calc((100% - 110px) / 6);
  }
}

@media (max-width: 1024px) {
  .retail-container { width: min(calc(100% - 5vw), 1440px); }
  .retail-card-strip { grid-auto-columns: 180px; gap: 14px; }
  .retail-finds-scroll { grid-auto-columns: 220px; }
  .retail-promo-content { width: min(70%, 520px); margin-left: clamp(26px, 6vw, 70px); }
  .retail-bath-grid { grid-template-columns: 1fr; min-height: 0; }
  .retail-bath-main { min-height: 390px; }
  .retail-bath-side { min-height: 250px; }
  .retail-bath-copy { width: min(54%, 430px); right: 5%; }
}

@media (max-width: 700px) {
  .retail-container { width: min(calc(100% - 24px), 1440px); }
  .retail-collection-strip { padding-top: 18px; }
  .retail-carousel-wrap { grid-template-columns: 22px minmax(0, 1fr) 22px; gap: 4px; }
  .retail-card-strip { grid-auto-columns: 140px; gap: 12px; }
  .retail-collection-tile img { aspect-ratio: 1 / .92; }
  .retail-progress { width: min(68vw, 420px); }
  .retail-promo-banner { min-height: 550px; align-items: flex-end; }
  .retail-promo-content { width: auto; margin: 0; padding: 0 24px 28px; }
  .retail-promo-content h2 { font-size: clamp(3.15rem, 13vw, 4.6rem); }
  .retail-promo-buttons { gap: 10px; }
  .retail-promo-buttons strong { min-height: 38px; padding: 0 16px; }
  .retail-finds-scroll { grid-auto-columns: 210px; gap: 14px; }
  .retail-bath-main { min-height: 430px; }
  .retail-bath-main::after { background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.92) 60%); }
  .retail-bath-copy { left: 24px; right: 24px; bottom: 26px; top: auto; transform: none; width: auto; }
  .retail-bath-copy h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
}

@media (max-width: 430px) {
  .retail-card-strip { grid-auto-columns: 124px; }
  .retail-find-tile span, .retail-collection-tile span, .retail-bath-side span { font-size: .58rem; }
  .retail-arrow { font-size: 1.55rem; }
}


/* ===== v24 final homepage correction to match approved mockup ===== */
/* Keep existing sticky header; correct homepage retail proportions and remove hero arrows. */
.hero { padding: 0 0 0 !important; }
.hero .container { width: 100% !important; max-width: none !important; padding: 0 !important; }
.hero-frame { width: 100% !important; }
.hero-image {
  min-height: clamp(620px, 54vw, 880px) !important;
  background: none !important;
}
.hero-image::before {
  background: linear-gradient(rgba(0,0,0,0.24), rgba(0,0,0,0.24)), url("../images/hero.png") center center / cover no-repeat !important;
}
.hero-overlay {
  left: 6.6% !important;
  top: 30% !important;
  width: min(48%, 680px) !important;
  padding: clamp(30px, 3vw, 54px) !important;
  box-shadow: none !important;
}
.hero-overlay h1 { font-size: clamp(2.6rem, 4vw, 4rem) !important; line-height: .98 !important; }
.hero-overlay p { font-size: clamp(1.1rem, 1.45vw, 1.45rem) !important; }
.hero-arrow, .hero-arrow-left, .hero-arrow-right { display: none !important; }

.retail-container { width: min(calc(100% - 56px), 1440px) !important; margin-left: auto !important; margin-right: auto !important; }
.retail-section-heading { margin: 0 0 14px !important; text-align: left !important; }
.retail-section-heading h2 { font-size: clamp(1rem, 1.45vw, 1.4rem) !important; color: #3e3e3e !important; }
.retail-collection-strip { padding: 28px 0 12px !important; }
.retail-carousel-wrap { grid-template-columns: 24px minmax(0, 1fr) 24px !important; gap: 12px !important; }
.retail-card-strip { padding: 0 !important; }
.retail-collection-scroll { grid-auto-columns: calc((100% - 126px) / 8) !important; gap: 18px !important; }
.retail-collection-tile img { width: 100% !important; aspect-ratio: .78 / 1 !important; object-fit: cover !important; object-position: center !important; border-radius: 0 !important; box-shadow: none !important; }
.retail-collection-tile span { margin-top: 10px !important; font-size: clamp(.62rem, .75vw, .76rem) !important; color: #3e3e3e !important; letter-spacing: .05em !important; }
.retail-arrow { color: #3e3e3e !important; width: 24px !important; height: 48px !important; font-size: 2.6rem !important; }
.retail-progress { width: min(410px, 34vw) !important; margin: 18px auto 0 !important; }
.retail-progress .scroll-progress-track, .retail-progress .scroll-progress-thumb { height: 4px !important; }
.retail-progress .scroll-progress-thumb { background: #3e3e3e !important; }

.retail-outdoor-promo { padding: 28px 0 18px !important; }
.retail-promo-banner {
  min-height: clamp(285px, 22vw, 390px) !important;
  background-image: url("../images/outdoor-feature-wide.png") !important;
  background-position: center center !important;
  background-size: cover !important;
}
.retail-promo-content { width: min(42%, 500px) !important; margin-left: clamp(52px, 7vw, 110px) !important; }
.retail-promo-content p { font-size: clamp(.68rem, .78vw, .84rem) !important; letter-spacing: .22em !important; }
.retail-promo-content h2 { font-family: Georgia, "Times New Roman", serif !important; font-size: clamp(3.1rem, 5.25vw, 5.4rem) !important; font-weight: 300 !important; line-height: .9 !important; letter-spacing: -.05em !important; }
.retail-promo-content span { font-size: clamp(.88rem, 1vw, 1.08rem) !important; font-weight: 500 !important; }
.retail-promo-buttons strong, .retail-bath-copy strong { min-height: 36px !important; font-size: .62rem !important; }

.retail-new-finds { padding: 14px 0 18px !important; }
.retail-new-finds .retail-container { width: min(calc(100% - 84px), 1360px) !important; }
.retail-new-finds .retail-section-heading { margin-bottom: 12px !important; }
.retail-finds-wrap { grid-template-columns: 0 minmax(0, 1fr) 0 !important; }
.retail-finds-wrap .retail-arrow { display: none !important; }
.retail-finds-scroll { grid-auto-columns: calc((100% - 110px) / 6) !important; gap: 22px !important; }
.retail-find-tile img { aspect-ratio: .92 / 1 !important; width: 100% !important; object-fit: cover !important; object-position: center !important; border-radius: 0 !important; }
.retail-find-tile span { display: none !important; }
.retail-new-finds .retail-progress { margin-top: 16px !important; }

.retail-bath-feature { padding: 22px 0 58px !important; }
.retail-bath-grid { grid-template-columns: 2.1fr 1fr !important; grid-template-rows: 1fr 1fr !important; gap: 12px !important; min-height: clamp(310px, 27vw, 430px) !important; }
.retail-bath-main { grid-row: 1 / span 2 !important; min-height: 0 !important; }
.retail-bath-side { min-height: 0 !important; }
.retail-bath-main img, .retail-bath-side img { height: 100% !important; object-fit: cover !important; object-position: center !important; border-radius: 0 !important; }
.retail-bath-side img { height: calc(100% - 34px) !important; }
.retail-bath-side span { height: 34px !important; font-size: .68rem !important; }
.retail-bath-copy { right: 10% !important; width: min(36%, 400px) !important; color: #3e3e3e !important; }
.retail-bath-copy h2 { font-family: Georgia, "Times New Roman", serif !important; font-size: clamp(2.3rem, 4.1vw, 4.5rem) !important; font-weight: 300 !important; line-height: 1.02 !important; letter-spacing: -.04em !important; }
.retail-bath-copy p { font-size: clamp(.82rem, .95vw, 1rem) !important; font-weight: 400 !important; }

@media (max-width: 1024px) {
  .hero-image { min-height: clamp(560px, 65vw, 760px) !important; }
  .hero-overlay { width: min(64%, 600px) !important; left: 6% !important; }
  .retail-container, .retail-new-finds .retail-container { width: min(calc(100% - 32px), 1440px) !important; }
  .retail-collection-scroll { grid-auto-columns: 160px !important; gap: 16px !important; }
  .retail-finds-scroll { grid-auto-columns: 180px !important; gap: 16px !important; }
  .retail-promo-content { width: min(58%, 520px) !important; margin-left: 54px !important; }
  .retail-bath-grid { grid-template-columns: 1.65fr 1fr !important; }
  .retail-bath-copy { right: 6% !important; width: min(42%, 360px) !important; }
}
@media (max-width: 700px) {
  .hero-image { min-height: 620px !important; }
  .hero-overlay { left: 20px !important; right: 20px !important; top: 30% !important; width: auto !important; }
  .retail-carousel-wrap { grid-template-columns: 18px minmax(0,1fr) 18px !important; gap: 5px !important; }
  .retail-collection-scroll { grid-auto-columns: 118px !important; gap: 12px !important; }
  .retail-finds-scroll { grid-auto-columns: 140px !important; gap: 12px !important; }
  .retail-promo-banner { min-height: 420px !important; align-items: flex-end !important; }
  .retail-promo-content { width: auto !important; margin: 0 !important; padding: 0 24px 28px !important; }
  .retail-promo-content h2 { font-size: clamp(3rem, 12vw, 4.2rem) !important; }
  .retail-bath-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .retail-bath-main { min-height: 420px !important; }
  .retail-bath-side { min-height: 210px !important; }
  .retail-bath-copy { left: 24px !important; right: 24px !important; bottom: 30px !important; top: auto !important; transform: none !important; width: auto !important; }
}


/* ===== v25 requested fixes: clean promo, aligned headings, restored New Finds carousel ===== */
/* Use a clean outdoor background with no baked-in words/buttons. */
.retail-promo-banner {
  background-image: url("../images/outdoor-feature-clean.png") !important;
  background-position: center center !important;
  background-size: cover !important;
}

/* Align the section headings directly above the first visible tile image, not the arrow. */
.retail-collection-strip .retail-section-heading,
.retail-new-finds .retail-section-heading {
  padding-left: 36px !important;
  margin-bottom: 14px !important;
}

/* Restore NEW FINDS as a real swipeable row with arrows and progress bar. */
.retail-new-finds {
  padding: 16px 0 22px !important;
  background: #fff !important;
  display: block !important;
  overflow: visible !important;
}
.retail-new-finds .retail-container {
  width: min(calc(100% - 56px), 1440px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.retail-finds-wrap {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) 24px !important;
  gap: 12px !important;
  align-items: center !important;
}
.retail-finds-wrap .retail-arrow {
  display: inline-flex !important;
}
.retail-finds-scroll {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 126px) / 8) !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x proximity !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 0 !important;
}
.retail-finds-scroll::-webkit-scrollbar { display: none !important; }
.retail-find-tile {
  display: block !important;
  min-width: 0 !important;
  text-align: center !important;
  scroll-snap-align: start !important;
}
.retail-find-tile img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: .78 / 1 !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.retail-find-tile span {
  display: block !important;
  margin-top: 10px !important;
  color: #3e3e3e !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: clamp(.62rem, .75vw, .76rem) !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
}
.retail-new-finds .retail-progress {
  display: block !important;
  width: min(410px, 34vw) !important;
  margin: 18px auto 0 !important;
}

/* Make serif promo typography more elegant and less heavy. */
.retail-promo-content h2,
.retail-bath-copy h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-weight: 300 !important;
  letter-spacing: -.035em !important;
}

@media (max-width: 1024px) {
  .retail-collection-strip .retail-section-heading,
  .retail-new-finds .retail-section-heading { padding-left: 28px !important; }
  .retail-finds-scroll { grid-auto-columns: 160px !important; gap: 16px !important; }
}
@media (max-width: 700px) {
  .retail-collection-strip .retail-section-heading,
  .retail-new-finds .retail-section-heading { padding-left: 23px !important; }
  .retail-finds-wrap { grid-template-columns: 18px minmax(0, 1fr) 18px !important; gap: 5px !important; }
  .retail-finds-scroll { grid-auto-columns: 118px !important; gap: 12px !important; }
  .retail-new-finds .retail-container { width: min(calc(100% - 24px), 1440px) !important; }
}

/* ===== v26 fixes requested: remove hero side arrows/slivers and duplicate Shop By Collection styling for New Finds ===== */
.hero,
.hero-frame,
.hero-image {
  overflow: hidden !important;
}
.hero [class*="arrow"],
.hero button:not(.hero-button),
.hero::before,
.hero::after,
.hero-frame::before,
.hero-frame::after {
  display: none !important;
  content: none !important;
}
.hero-image::before {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

/* keep section headings aligned directly over the first image in both rows */
.retail-collection-strip .retail-section-heading,
.retail-new-finds .retail-section-heading {
  padding-left: 36px !important;
  margin-bottom: 14px !important;
}

/* New Finds should use the same visual carousel setup as Shop By Collection */
.retail-new-finds {
  padding: 16px 0 22px !important;
  background: #fff !important;
  display: block !important;
  overflow: visible !important;
}
.retail-new-finds .retail-container {
  width: min(calc(100% - 56px), 1440px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.retail-new-finds .retail-carousel-wrap {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) 24px !important;
  gap: 12px !important;
  align-items: center !important;
}
.retail-new-finds .retail-card-strip,
.retail-new-scroll {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 126px) / 8) !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x proximity !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 0 !important;
}
.retail-new-scroll::-webkit-scrollbar { display: none !important; }
.retail-new-tile img {
  width: 100% !important;
  aspect-ratio: .78 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.retail-new-tile span {
  margin-top: 10px !important;
  font-size: clamp(.62rem, .75vw, .76rem) !important;
  color: #3e3e3e !important;
  letter-spacing: .05em !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
.retail-new-finds .retail-arrow {
  display: inline-flex !important;
  color: #3e3e3e !important;
  width: 24px !important;
  height: 48px !important;
  font-size: 2.6rem !important;
}
.retail-new-finds .retail-progress {
  display: block !important;
  width: min(410px, 34vw) !important;
  margin: 18px auto 0 !important;
}

/* lighter serif weight for the promotional headlines */
.retail-promo-content h2,
.retail-bath-copy h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-weight: 300 !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

@media (max-width: 1024px) {
  .retail-collection-strip .retail-section-heading,
  .retail-new-finds .retail-section-heading { padding-left: 28px !important; }
  .retail-new-scroll { grid-auto-columns: 160px !important; gap: 16px !important; }
}
@media (max-width: 700px) {
  .retail-collection-strip .retail-section-heading,
  .retail-new-finds .retail-section-heading { padding-left: 23px !important; }
  .retail-new-finds .retail-carousel-wrap { grid-template-columns: 18px minmax(0, 1fr) 18px !important; gap: 5px !important; }
  .retail-new-scroll { grid-auto-columns: 118px !important; gap: 12px !important; }
  .retail-new-finds .retail-container { width: min(calc(100% - 24px), 1440px) !important; }
}


/* ===== v28 collection storefront redesign ===== */
.collection-storefront {
  background: #fff;
}
.collection-store-section {
  padding-top: clamp(18px, 2.2vw, 34px);
}
.collection-store-wrap {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 38px);
  align-items: start;
}
.store-filter {
  position: sticky;
  top: 132px;
  align-self: start;
  padding: 4px 0 22px;
  color: var(--black);
}
.store-filter h1 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1;
  margin: 0 0 22px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.store-filter-block {
  margin-bottom: 22px;
}
.store-filter-block h2 {
  margin: 0 0 7px;
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--black);
}
.store-filter-block a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 0 4px;
  font-size: .68rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--black);
}
.store-filter-block a.active,
.store-filter-block a:hover,
.store-filter-block a:focus-visible {
  color: var(--magenta);
  font-weight: 700;
}
.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,.12);
}
.color-0 { background: var(--teal); }
.color-1 { background: var(--magenta); }
.color-2 { background: var(--yellow); }
.color-3 { background: #f4efe8; }
.color-4 { background: #b99062; }
.color-5 { background: #3e3e3e; }
.color-6 { background: #b7b2ad; }
.color-7 { background: linear-gradient(135deg, var(--teal), var(--magenta), var(--yellow)); }
.store-content {
  min-width: 0;
}
.store-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(150px, .72fr);
  gap: clamp(12px, 1.7vw, 22px);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.store-hero-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 38vw, 520px);
  background: #ede9e3;
  display: block;
}
.store-hero-card img,
.store-side-cards img,
.category-tile img,
.more-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-hero-card img {
  position: absolute;
  inset: 0;
}
.store-hero-copy {
  position: relative;
  z-index: 1;
  width: min(48%, 310px);
  margin: clamp(18px, 3vw, 42px);
  padding: clamp(14px, 2vw, 24px);
  background: rgba(255,255,255,.84);
  color: var(--black);
}
.store-hero-copy p {
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.store-hero-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1rem, 1.9vw, 1.55rem);
  line-height: 1.15;
  font-weight: 600;
}
.store-hero-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.store-side-cards {
  display: grid;
  gap: clamp(10px, 1.5vw, 18px);
}
.store-side-cards a {
  min-height: clamp(140px, 18vw, 250px);
  background: #f1eee7;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  text-align: center;
  overflow: hidden;
}
.store-side-cards span {
  padding: 10px 8px 12px;
  background: #f1eee7;
  color: var(--black);
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 700;
}
.store-panel {
  margin-bottom: clamp(22px, 3.4vw, 42px);
}
.store-panel h2 {
  margin: 0 0 14px;
  text-align: center;
  color: var(--black);
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.2;
}
.category-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}
.category-tile {
  display: block;
  background: #f7f6f3;
  text-align: center;
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-tile:hover,
.category-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-tile img {
  aspect-ratio: 1 / .78;
}
.category-tile span {
  display: block;
  padding: 8px 7px 10px;
  font-size: .68rem;
  line-height: 1.15;
  font-weight: 700;
}
.price-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}
.price-card {
  min-height: 100px;
  background: #6f6a62;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  transition: background .2s ease, transform .2s ease;
}
.price-card:hover,
.price-card:focus-visible {
  background: var(--teal);
  transform: translateY(-2px);
}
.price-card span {
  font-size: .68rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 3px;
}
.price-card strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
  color: #fff;
}
.more-product-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}
.more-product {
  display: block;
  text-align: center;
  color: var(--black);
}
.more-thumb {
  aspect-ratio: 1.05 / .72;
  background: #f7f6f3;
  overflow: hidden;
}
.more-product span {
  display: block;
  padding-top: 7px;
  font-size: .62rem;
  line-height: 1.15;
  font-weight: 600;
}
@media (max-width: 1020px) {
  .collection-store-wrap { grid-template-columns: 1fr; }
  .store-filter {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border: 1px solid var(--line);
    padding: 16px;
  }
  .store-filter h1 { grid-column: 1 / -1; margin-bottom: 2px; }
}
@media (max-width: 760px) {
  .store-hero-grid { grid-template-columns: 1fr; }
  .store-side-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .more-product-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .store-hero-copy { width: min(76%, 310px); }
}
@media (max-width: 520px) {
  .store-filter { grid-template-columns: 1fr; }
  .store-hero-card { min-height: 340px; }
  .store-hero-copy { width: calc(100% - 28px); margin: 14px; }
  .more-product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===== v29 collection page refinements ===== */
/* Extra breathing room below collection category labels */
.collection-storefront .category-tile span {
  padding: 10px 8px 20px !important;
  min-height: 42px;
}
.collection-storefront .more-product span {
  padding-top: 9px !important;
  padding-bottom: 12px !important;
}
/* Remove any stray carousel/progress bars from collection pages */
.collection-storefront .scroll-progress,
.collection-storefront .retail-progress,
.collection-storefront .feature-scroll-progress {
  display: none !important;
}
/* Big feature cards no longer use a SHOP NOW button */
.collection-storefront .store-hero-copy span {
  display: none !important;
}
/* Filter link color system */
.store-filter-block a.active {
  color: var(--magenta) !important;
  font-weight: 800 !important;
}
.store-filter-block a.favorites-filter {
  color: var(--teal) !important;
  font-weight: 800 !important;
}
.store-filter-block a.favorites-filter:hover,
.store-filter-block a.favorites-filter:focus-visible {
  color: var(--yellow) !important;
}
/* Softer branded grey for price squares */
.collection-storefront .price-card {
  background: #665f59 !important;
}
.collection-storefront .price-card:hover,
.collection-storefront .price-card:focus-visible {
  background: var(--teal) !important;
}


/* ===== v30 requested refinements ===== */
/* Hero teal panel set to 85% opacity. */
.hero-overlay {
  background: rgba(0, 125, 146, 0.85) !important;
}

/* Footer copy/tagline formatting requested. */
.site-footer .footer-tagline {
  line-height: 1.25 !important;
}
.site-footer .footer-copy {
  font-size: calc(var(--footer-copy-size, .58rem) * 1.45) !important;
  line-height: 1.25 !important;
  margin-top: 10px !important;
}

/* More breathing room between category labels and the row below on collection pages. */
.collection-storefront .category-tile-grid {
  row-gap: clamp(24px, 3vw, 42px) !important;
}
.collection-storefront .category-tile span {
  padding: 12px 8px 24px !important;
  min-height: 50px !important;
}
.collection-storefront .store-panel h2 {
  margin-bottom: 22px !important;
}

/* Price tiles behave as filter links for their specified price ranges. */
.collection-storefront .price-card {
  text-decoration: none !important;
  cursor: pointer;
}

/* ===== v31 requested refinements ===== */
/* 1) Make the homepage hero teal panel lighter than v30. */
.hero-overlay {
  background: rgba(0, 125, 146, 0.70) !important;
}

/* 2) More white space below category captions on every collection page. */
.collection-storefront .category-tile-grid {
  row-gap: clamp(36px, 4.5vw, 64px) !important;
}
.collection-storefront .category-tile span {
  padding: 12px 8px 44px !important;
  min-height: 72px !important;
}
.collection-storefront .store-panel h2 {
  margin-bottom: 24px !important;
}

/* 3) Price tiles stay as clickable filter links and use cooler brand-friendly grey. */
.collection-storefront .price-card {
  background: rgba(62, 62, 62, 0.30) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.collection-storefront .price-card:first-child {
  background: var(--teal) !important;
}
.collection-storefront .price-card:hover,
.collection-storefront .price-card:focus-visible {
  background: var(--magenta) !important;
  color: #ffffff !important;
}
.collection-storefront .price-card strong,
.collection-storefront .price-card span {
  color: #ffffff !important;
}

/* 4) Footer tagline/copyright formatting. */
.site-footer .footer-tagline strong {
  display: block !important;
  line-height: 1.2 !important;
}
.site-footer .footer-copy {
  font-size: 0.84rem !important;
  line-height: 1.18 !important;
  margin-top: 12px !important;
}

/* ===== v32 requested refinements ===== */
/* 1) Hero teal panel: make it about 15% lighter/less opaque than previous pass. */
.hero-overlay {
  background: rgba(0, 125, 146, 0.55) !important;
}

/* 2) Collection page category captions: add more white space beneath subheads. */
.collection-storefront .category-tile-grid {
  row-gap: clamp(48px, 5.5vw, 78px) !important;
}
.collection-storefront .category-tile span {
  padding: 14px 8px 58px !important;
  min-height: 90px !important;
}

/* 3) Price tiles: all four are the same darker brand-friendly gray; hover teal. */
.collection-storefront .price-card,
.collection-storefront .price-card:first-child {
  background: #5a5a5a !important;
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.collection-storefront .price-card:hover,
.collection-storefront .price-card:focus-visible {
  background: var(--teal) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}
.collection-storefront .price-card strong,
.collection-storefront .price-card span {
  color: #ffffff !important;
}

/* 4) Replace beige/brown category label/background blocks with soft gray at 25% opacity. */
.collection-storefront .category-tile,
.collection-storefront .store-side-cards a,
.collection-storefront .store-side-cards span,
.collection-storefront .more-thumb {
  background: rgba(62, 62, 62, 0.25) !important;
}
.collection-storefront .category-tile span,
.collection-storefront .store-side-cards span,
.collection-storefront .more-product span {
  color: #3e3e3e !important;
}


/* ===== v33 requested refinements ===== */
/* 1) Homepage hero: darken teal panel about 15% from the last version. */
.hero-overlay {
  background: rgba(0, 125, 146, 0.70) !important;
}
.hero-overlay h1 {
  line-height: .92 !important;
}
.hero-overlay p {
  max-width: 34ch !important;
}

/* 2) Collection page category/side label backgrounds: lighter cool gray, not brown. */
.collection-storefront .category-tile,
.collection-storefront .category-tile span,
.collection-storefront .store-side-cards a,
.collection-storefront .store-side-cards span,
.collection-storefront .more-thumb {
  background: rgba(62, 62, 62, 0.12) !important;
}
.collection-storefront .category-tile span,
.collection-storefront .store-side-cards span,
.collection-storefront .more-product span {
  color: #3e3e3e !important;
}

/* 3) Collection page price filter boxes: lighter gray, teal on hover. */
.collection-storefront .price-card,
.collection-storefront .price-card:first-child {
  background: #8f8f8f !important;
  color: #ffffff !important;
}
.collection-storefront .price-card:hover,
.collection-storefront .price-card:focus-visible {
  background: var(--teal) !important;
  color: #ffffff !important;
}

/* 4) Collection page feature overlay: teal panel with white type. */
.collection-storefront .store-hero-copy {
  background: rgba(0, 125, 146, 0.85) !important;
  color: #ffffff !important;
}
.collection-storefront .store-hero-copy h2 {
  color: #ffffff !important;
}
.collection-storefront .store-hero-copy p {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px !important;
  padding: 5px 9px !important;
  background: #ffffff !important;
  color: var(--teal) !important;
  font-weight: 900 !important;
}

/* 5) Keep a clean amount of breathing room below category captions. */
.collection-storefront .category-tile-grid {
  row-gap: clamp(42px, 5vw, 72px) !important;
}
.collection-storefront .category-tile span {
  padding: 12px 8px 38px !important;
  min-height: 70px !important;
}

/* ===== v34 requested refinements ===== */
/* 1) Collection category label areas should blend into the page, not sit on grey blocks. */
.collection-storefront .category-tile,
.collection-storefront .category-tile span,
.collection-storefront .store-side-cards a,
.collection-storefront .store-side-cards span,
.collection-storefront .more-thumb,
.collection-storefront .more-product span {
  background: transparent !important;
}
.collection-storefront .category-tile,
.collection-storefront .store-side-cards a,
.collection-storefront .more-thumb {
  box-shadow: none !important;
}
.collection-storefront .category-tile span,
.collection-storefront .store-side-cards span,
.collection-storefront .more-product span {
  color: #3e3e3e !important;
}

/* 2) Tighten the STYLE REFRESH label so there is less white above/below the words. */
.collection-storefront .store-hero-copy p {
  padding: 3px 8px !important;
  line-height: 1.05 !important;
  margin-bottom: 10px !important;
}

/* 3) Make collection-page teal rectangles about 10% lighter. */
.collection-storefront .store-hero-copy {
  background: rgba(0, 125, 146, 0.76) !important;
}


/* ===== v36 requested refinements ===== */
/* 1) Narrow the homepage hero teal panel now that the headline/tagline are broken into shorter lines. */
@media (min-width: 901px) {
  .hero-overlay {
    width: min(32%, 500px) !important;
    max-width: 500px !important;
  }
}
@media (max-width: 900px) {
  .hero-overlay {
    width: min(78%, 560px) !important;
  }
}

/* 2) Outdoor feature uses one teal button only. */
.retail-promo-buttons strong {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: #ffffff !important;
}
.retail-promo-buttons .secondary {
  display: none !important;
}

/* 3) Add more white space above each collection-page section heading. */
.collection-storefront .store-panel {
  margin-top: clamp(30px, 4.5vw, 70px) !important;
}
.collection-storefront .store-panel:first-of-type {
  margin-top: clamp(18px, 2.8vw, 42px) !important;
}
.collection-storefront .store-panel h2 {
  padding-top: 0 !important;
}

/* ===== v37 requested refinements ===== */
/* Keep the vertical spacing consistent above every collection-page section heading. */
.collection-storefront .store-panel,
.collection-storefront .store-panel:first-of-type,
.collection-storefront .price-panel {
  margin-top: clamp(46px, 5.5vw, 82px) !important;
}
.collection-storefront .store-panel h2 {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}


/* ===== v38 logo refresh + true centered sticky-header logo ===== */
.header-main {
  position: relative !important;
}

.header-logo {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  justify-self: auto !important;
  z-index: 2 !important;
}

.header-logo .logo-image {
  width: min(31vw, 345px) !important;
  max-width: 345px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

.site-search,
.header-actions {
  position: relative !important;
  z-index: 3 !important;
}

.footer-logo-image {
  max-width: 190px !important;
  max-height: 92px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.newsletter-modal-logo {
  max-width: 240px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

@media (max-width: 1024px) {
  .header-logo .logo-image {
    width: min(42vw, 250px) !important;
    max-height: 38px !important;
  }
}

@media (max-width: 520px) {
  .header-logo .logo-image {
    width: min(46vw, 175px) !important;
    max-height: 30px !important;
  }
}

/* ===== v39 header alignment + serif font update ===== */
@media (min-width: 1025px) {
  .site-header .header-main.container,
  .header-main {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(230px, 300px) minmax(260px, 1fr) minmax(230px, 300px) !important;
    align-items: center !important;
    gap: 18px !important;
    min-height: 78px !important;
    overflow: visible !important;
  }

  .site-header .site-search,
  .site-search {
    grid-column: 1 !important;
    justify-self: start !important;
    width: min(100%, 260px) !important;
  }

  .site-header .header-logo,
  .header-logo {
    position: static !important;
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    z-index: 2 !important;
  }

  .site-header .header-logo .logo-image,
  .header-logo .logo-image {
    width: auto !important;
    max-width: min(34vw, 345px) !important;
    max-height: 48px !important;
    object-fit: contain !important;
  }

  .site-header .header-actions,
  .header-actions {
    position: relative !important;
    grid-column: 3 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    width: auto !important;
    min-width: 0 !important;
    z-index: 5 !important;
  }
}

/* Use Cormorant Garamond anywhere a serif display font appears. */
.new-featured-title h2,
.retail-promo-content h2,
.retail-bath-copy h2,
[class*="serif"],
[class*="Serif"] {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-weight: 300 !important;
}

/* ===== v42 corrected Cormorant Garamond typography fixes ===== */
/* Homepage hero headline must use the logo serif, not the sans-serif. */
.hero-overlay h1,
.hero .hero-overlay h1,
.hero-overlay h1 * {
  font-family: "Cormorant Garamond", Garamond, Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Collection page teal feature overlay headline must stay visible and use Cormorant Garamond. */
.collection-storefront .store-hero-copy h2,
.collection-storefront .store-hero-copy h2 span,
.store-hero-copy h2,
.store-hero-copy h2 span {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Cormorant Garamond", Garamond, Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* Keep the small STYLE REFRESH label compact and readable. */
.collection-storefront .store-hero-copy p,
.store-hero-copy p {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--teal) !important;
  background: #ffffff !important;
  padding: 3px 8px !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.05 !important;
  width: fit-content !important;
  font-family: inherit !important;
}


/* ===== v43 requested typography + mobile filter drawer ===== */
/* Make the homepage hero serif headline three sizes larger. */
.hero-overlay h1,
.hero .hero-overlay h1,
.hero-overlay h1 * {
  font-family: "Cormorant Garamond", Garamond, Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  font-size: clamp(3.25rem, 5.2vw, 5.35rem) !important;
  line-height: .82 !important;
  letter-spacing: -0.02em !important;
}

/* Collection page teal panel headline: sentence case, Cormorant Garamond, two sizes larger. */
.collection-storefront .store-hero-copy h2,
.collection-storefront .store-hero-copy h2 span,
.store-hero-copy h2,
.store-hero-copy h2 span {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Cormorant Garamond", Garamond, Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  font-size: clamp(2.05rem, 3.15vw, 3.05rem) !important;
  line-height: .94 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* Keep STYLE REFRESH compact with less white space. */
.collection-storefront .store-hero-copy p,
.store-hero-copy p {
  display: inline-flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--teal) !important;
  background: #ffffff !important;
  padding: 2px 8px !important;
  margin: 0 0 9px 0 !important;
  line-height: 1 !important;
  width: fit-content !important;
  font-family: Montserrat, Arial, sans-serif !important;
  font-size: .68rem !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

/* Mobile filter/sort control for collection pages. */
.mobile-filter-bar,
.mobile-filter-backdrop,
.mobile-filter-close {
  display: none;
}

@media (max-width: 760px) {
  .collection-store-wrap {
    display: block !important;
  }

  .mobile-filter-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 0 0 16px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
  }

  .mobile-filter-toggle,
  .mobile-sort-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: #3e3e3e;
    font-family: Montserrat, Arial, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-filter-toggle:hover,
  .mobile-sort-button:hover,
  .mobile-filter-toggle:focus-visible,
  .mobile-sort-button:focus-visible {
    border-color: var(--teal);
    color: var(--teal);
  }

  .collection-storefront .store-filter {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: min(86vw, 360px) !important;
    max-width: 360px !important;
    height: 100vh !important;
    padding: 22px 20px 36px !important;
    background: #ffffff !important;
    border: 0 !important;
    border-right: 1px solid var(--line) !important;
    box-shadow: 18px 0 45px rgba(0, 0, 0, .18) !important;
    overflow-y: auto !important;
    transform: translateX(-105%) !important;
    transition: transform .25s ease !important;
    z-index: 9999 !important;
  }

  body.filter-drawer-open .collection-storefront .store-filter {
    transform: translateX(0) !important;
  }

  .mobile-filter-close {
    display: inline-flex !important;
    position: absolute;
    top: 14px;
    right: 14px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: #3e3e3e;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
  }

  .collection-storefront .store-filter h1 {
    padding-right: 40px;
    margin-bottom: 18px !important;
  }

  .mobile-filter-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .34);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 9998;
  }

  body.filter-drawer-open .mobile-filter-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.filter-drawer-open {
    overflow: hidden;
  }

  .collection-storefront .store-filter-block {
    margin-bottom: 22px !important;
  }

  .collection-storefront .store-filter-block h2 {
    font-size: .76rem !important;
    margin-bottom: 9px !important;
  }

  .collection-storefront .store-filter-block a {
    width: 100% !important;
    padding: 6px 0 !important;
    font-size: .78rem !important;
    line-height: 1.35 !important;
  }

  .hero-overlay h1,
  .hero .hero-overlay h1,
  .hero-overlay h1 * {
    font-size: clamp(3.25rem, 13vw, 4.9rem) !important;
    line-height: .82 !important;
  }

  .collection-storefront .store-hero-copy h2,
  .collection-storefront .store-hero-copy h2 span,
  .store-hero-copy h2,
  .store-hero-copy h2 span {
    font-size: clamp(2rem, 8vw, 2.85rem) !important;
  }
}


/* ===== v44 premium experience, accessibility, and editorial polish ===== */
:root {
  --luxury-cream: #f7f5f1;
  --soft-teal: rgba(0, 125, 146, .10);
  --ink: #3e3e3e;
}

/* Accessible focus states across the site */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow) !important;
  outline-offset: 3px !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* More high-end micro interactions */
.retail-collection-tile,
.retail-find-tile,
.retail-bath-main,
.retail-bath-side,
.category-tile,
.more-product,
.price-card,
.inspiration-card a,
.styled-card {
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease !important;
}

.retail-collection-tile:hover,
.retail-find-tile:hover,
.category-tile:hover,
.more-product:hover,
.inspiration-card a:hover,
.styled-card:hover {
  transform: translateY(-5px) !important;
}

.retail-collection-tile img,
.retail-find-tile img,
.category-tile img,
.more-product img,
.inspiration-card img,
.styled-card img {
  transition: transform .55s ease, filter .55s ease !important;
}

.retail-collection-tile:hover img,
.retail-find-tile:hover img,
.category-tile:hover img,
.more-product:hover img,
.inspiration-card a:hover img,
.styled-card:hover img {
  transform: scale(1.035) !important;
}

/* Keep homepage hero high-end but readable */
.hero-overlay {
  background: rgba(0, 125, 146, .76) !important;
}
.hero-overlay .hero-button,
.closing-button,
.room-picks a,
.retail-promo-buttons strong,
.retail-bath-copy strong {
  transition: transform .25s ease, background-color .25s ease, color .25s ease !important;
}
.hero-overlay .hero-button:hover,
.closing-button:hover,
.room-picks a:hover,
.retail-promo-buttons strong:hover,
.retail-bath-copy strong:hover {
  transform: translateY(-2px) !important;
}

/* Editorial homepage sections */
.editorial-room,
.inspiration-section,
.recently-styled,
.closing-editorial {
  padding: clamp(44px, 6vw, 88px) 0;
}

.editorial-room {
  background: linear-gradient(180deg, #fff 0%, var(--luxury-cream) 100%);
}

.editorial-room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .75fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.editorial-room-image {
  overflow: hidden;
  background: #eee;
}
.editorial-room-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.editorial-room-copy {
  max-width: 520px;
}
.editorial-eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.editorial-room-copy h2,
.editorial-heading h2,
.closing-editorial h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.035em;
}
.editorial-room-copy p,
.closing-editorial p {
  margin: 0 0 22px;
  color: var(--text-light);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}
.room-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-picks a,
.closing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.room-picks a:hover,
.room-picks a:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.inspiration-section {
  background: #fff;
}
.centered-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(24px, 4vw, 44px);
}
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
}
.inspiration-card a {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(0,0,0,.045);
  overflow: hidden;
}
.inspiration-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.inspiration-card div {
  padding: clamp(18px, 2.4vw, 28px);
}
.inspiration-card p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.inspiration-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.02;
}
.inspiration-card span {
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.recently-styled {
  background: var(--luxury-cream);
}
.recently-styled .editorial-heading {
  margin-bottom: 22px;
}
.styled-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  padding-bottom: 12px;
}
.styled-card {
  display: block;
  min-width: 0;
  background: #fff;
  scroll-snap-align: start;
}
.styled-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.styled-card span {
  display: block;
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
}

.closing-editorial {
  padding-top: clamp(58px, 7vw, 110px);
  padding-bottom: clamp(58px, 7vw, 110px);
  background: linear-gradient(rgba(0,125,146,.72), rgba(0,125,146,.72)), url("../images/home-decor-retail.png") center / cover no-repeat;
  color: #fff;
}
.closing-editorial-inner {
  display: grid;
  place-items: center;
  text-align: center;
}
.closing-editorial-inner > div {
  max-width: 780px;
  background: rgba(255,255,255,.92);
  padding: clamp(28px, 5vw, 70px);
}
.closing-editorial .editorial-eyebrow { color: var(--teal); }
.closing-editorial h2 { color: var(--ink); }
.closing-editorial p { color: var(--text-light); }
.closing-button {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.closing-button:hover,
.closing-button:focus-visible {
  background: var(--magenta);
  border-color: var(--magenta);
}

/* Collection pages: more editorial polish and clearer filters */
.collection-storefront .store-panel h2 {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.45rem, 2vw, 2.15rem) !important;
  letter-spacing: 0 !important;
}
.collection-storefront .category-tile,
.collection-storefront .more-product {
  overflow: hidden;
  background: transparent !important;
}
.collection-storefront .category-tile span,
.collection-storefront .more-product span {
  color: var(--ink) !important;
}
.price-card {
  background: #76736e !important;
}
.price-card:hover,
.price-card:focus-visible {
  background: var(--teal) !important;
  color: #fff !important;
}
.store-filter a:hover,
.store-filter a:focus-visible {
  color: var(--magenta) !important;
  font-weight: 800 !important;
}

/* Mobile: keep products visible and make filters a drawer experience */
@media (max-width: 760px) {
  .editorial-room-grid,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }
  .editorial-room-copy {
    max-width: none;
  }
  .editorial-room-image img {
    aspect-ratio: 4 / 3;
  }
  .centered-heading {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .styled-scroll {
    grid-auto-columns: 78%;
  }
  .closing-editorial-inner > div {
    width: 100%;
  }
  .room-picks a,
  .closing-button {
    width: 100%;
  }
  .collection-storefront .store-filter {
    width: min(88vw, 390px) !important;
  }
  .mobile-filter-bar {
    position: sticky;
    top: 0;
    z-index: 50;
  }
}

@media (max-width: 480px) {
  .editorial-room,
  .inspiration-section,
  .recently-styled,
  .closing-editorial {
    padding: 38px 0;
  }
  .editorial-room-copy h2,
  .editorial-heading h2,
  .closing-editorial h2 {
    font-size: clamp(2.15rem, 13vw, 3.6rem);
  }
  .inspiration-card h3 {
    font-size: 2.1rem;
  }
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .retail-collection-tile:hover,
  .retail-find-tile:hover,
  .category-tile:hover,
  .more-product:hover,
  .inspiration-card a:hover,
  .styled-card:hover {
    transform: none !important;
  }
}


/* v44 reveal states */
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready { opacity: 1 !important; transform: none !important; }
}


/* v46: Premium ecommerce + ready-for-backend components */
:root{--tt-teal:#007d92;--tt-pink:#f3166b;--tt-yellow:#f4c600;--tt-ink:#3f3f3c;--tt-soft:#f5f3ef;--tt-line:#dedbd4;}
.tt-collection-products,.shop-products{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;margin-top:22px}.tt-product-card{background:#fff;border:1px solid var(--tt-line);position:relative;overflow:hidden;transition:transform .28s ease,box-shadow .28s ease}.tt-product-card:hover{transform:translateY(-6px);box-shadow:0 18px 42px rgba(0,0,0,.12)}.tt-product-media{position:relative;aspect-ratio:1/1;background:#f4f4f2;overflow:hidden}.tt-product-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.tt-product-card:hover .tt-product-media img{transform:scale(1.045)}.tt-badge{position:absolute;top:12px;left:12px;background:#fff;color:var(--tt-ink);font-size:10px;text-transform:uppercase;letter-spacing:.12em;padding:7px 9px;font-weight:700}.tt-heart{position:absolute;top:10px;right:10px;width:38px;height:38px;border-radius:50%;border:1px solid var(--tt-line);background:#fff;color:var(--tt-pink);font-size:22px;cursor:pointer;transition:transform .2s ease,background .2s ease}.tt-heart.is-active{background:var(--tt-pink);color:#fff;transform:scale(1.05)}.tt-quick{position:absolute;left:14px;right:14px;bottom:14px;border:0;background:rgba(0,125,146,.94);color:#fff;text-transform:uppercase;letter-spacing:.12em;font-weight:700;padding:12px;opacity:0;transform:translateY(8px);transition:.25s ease;cursor:pointer}.tt-product-card:hover .tt-quick,.tt-quick:focus{opacity:1;transform:none}.tt-product-copy{padding:16px 16px 18px;display:flex;flex-direction:column;gap:10px}.tt-product-copy h3{font-size:16px;margin:0;color:var(--tt-ink)}.tt-product-copy p{margin:0;font-size:13px;line-height:1.5;color:#555}.tt-product-meta{display:flex;justify-content:space-between;gap:10px;align-items:center}.tt-compare{border:0;background:transparent;color:var(--tt-teal);font-size:12px;text-decoration:underline;cursor:pointer}.tt-add{border:0;background:var(--tt-ink);color:#fff;padding:12px 14px;text-transform:uppercase;letter-spacing:.12em;font-weight:700;cursor:pointer}.tt-add:hover,.tt-add:focus{background:var(--tt-teal)}.quick-view-modal{position:fixed;inset:0;background:rgba(0,0,0,.48);display:none;place-items:center;z-index:9999;padding:20px}.quick-view-modal.show{display:grid}.quick-view-card{background:#fff;width:min(920px,96vw);max-height:92vh;overflow:auto;position:relative;box-shadow:0 22px 70px rgba(0,0,0,.25)}.quick-view-close{position:absolute;top:10px;right:12px;z-index:2;border:0;background:#fff;font-size:32px;cursor:pointer}.quick-view-body{display:grid;grid-template-columns:1fr 1fr;gap:34px;padding:34px}.quick-view-body img{width:100%;height:100%;min-height:360px;object-fit:cover;background:#f5f5f2}.quick-view-body h2{font-family:'Cormorant Garamond',serif;font-size:clamp(34px,5vw,58px);font-weight:400;line-height:.95;margin:8px 0 14px;color:var(--tt-ink)}.quick-price{display:block;font-size:24px;margin:18px 0}.quick-actions{display:flex;gap:10px;flex-wrap:wrap}.quick-note{font-size:12px;color:#666;margin-top:20px}.text-heart{position:static;border-radius:0;width:auto;height:auto;padding:10px 14px;font-size:14px}.compare-drawer,.sticky-cart-bar{position:fixed;left:18px;right:18px;bottom:18px;background:#fff;border:1px solid var(--tt-line);box-shadow:0 12px 38px rgba(0,0,0,.16);z-index:9990;display:none;align-items:center;justify-content:space-between;gap:20px;padding:12px 16px}.compare-drawer.show,.sticky-cart-bar.show{display:flex}.compare-items{display:flex;gap:14px;overflow:auto}.compare-items div{display:flex;align-items:center;gap:8px;min-width:190px}.compare-items img{width:46px;height:46px;object-fit:cover}.compare-items span{font-size:12px}.compare-actions{display:flex;gap:8px}.search-suggestions{position:absolute;top:calc(100% + 6px);left:0;right:0;background:#fff;border:1px solid var(--tt-line);box-shadow:0 10px 30px rgba(0,0,0,.12);z-index:90;max-height:300px;overflow:auto}.site-search,.mobile-search{position:relative}.search-suggestions a{display:grid;grid-template-columns:42px 1fr auto;gap:10px;align-items:center;padding:9px 10px;color:var(--tt-ink);text-decoration:none}.search-suggestions a:hover,.search-suggestions a:focus{background:rgba(0,125,146,.08)}.search-suggestions img{width:42px;height:42px;object-fit:cover}.tt-toast{position:fixed;right:18px;bottom:92px;background:var(--tt-ink);color:#fff;padding:12px 16px;z-index:10000;opacity:0;transform:translateY(12px);transition:.2s ease}.tt-toast.show{opacity:1;transform:none}.editorial-room-image,.inspiration-card,.styled-card,.closing-editorial-inner{transition:transform .3s ease,box-shadow .3s ease}.inspiration-card:hover,.styled-card:hover{transform:translateY(-4px)}@media (max-width:980px){.tt-collection-products,.shop-products{grid-template-columns:repeat(2,minmax(0,1fr))}.quick-view-body{grid-template-columns:1fr}.quick-view-body img{min-height:260px}}@media (max-width:560px){.tt-collection-products,.shop-products{grid-template-columns:1fr;gap:18px}.tt-product-card{border-left:0;border-right:0}.compare-drawer,.sticky-cart-bar{left:0;right:0;bottom:0;flex-direction:column;align-items:stretch}.quick-view-card{width:100vw;max-height:100vh}.quick-view-body{padding:24px 18px}.tt-quick{opacity:1;transform:none}.search-suggestions{position:fixed;top:112px;left:12px;right:12px}.tt-product-copy h3{font-size:18px}}

/* ===== v48 requested visual refinements for Modalyst-ready build ===== */
:root{
  --brand-grey:#3f3f3c;
  --brand-grey-soft:rgba(63,63,60,.35);
  --brand-grey-light:rgba(63,63,60,.25);
}

/* 1) Closing editorial: swap dark teal wash for softer branding grey wash */
.closing-editorial{
  background: linear-gradient(rgba(63,63,60,.34), rgba(63,63,60,.34)), url("../images/home-decor-retail.png") center / cover no-repeat !important;
}

/* 2-4) Footer logo/text/copyright refinements */
.footer-logo-image{
  max-width:142px !important;
  max-height:44px !important;
  padding:6px 8px !important;
}
.site-footer .footer-tagline,
.site-footer .footer-tagline strong{
  font-size:.70rem !important;
  line-height:1.32 !important;
  font-weight:500 !important;
  letter-spacing:.01em !important;
}
.site-footer .footer-copy{
  font-size:.57rem !important;
  line-height:1.25 !important;
  margin-top:10px !important;
  opacity:.9 !important;
}

/* 5) Bath feature text panel: soft grey rectangle behind Reimagine area */
.retail-bath-copy{
  background:rgba(63,63,60,.35) !important;
  padding:clamp(18px,2.5vw,34px) !important;
  color:#fff !important;
}
.retail-bath-copy h2,
.retail-bath-copy p{
  color:#fff !important;
}
.retail-bath-copy strong{
  background:var(--teal) !important;
  color:#fff !important;
}
.retail-bath-copy strong:hover,
.retail-bath-copy strong:focus-visible{
  background:var(--magenta) !important;
}

/* 6) Design Inspiration: 25% teal background */
.inspiration-section{
  background:rgba(0,125,146,.25) !important;
}

/* 7) Recently Styled: remove the opaque background */
.recently-styled{
  background:var(--white) !important;
}

/* 8) Add to Cart / action boxes: teal, then magenta on hover/focus/press */
.tt-add,
.product-card button,
.product-card .btn,
.add-to-cart,
button.add-to-cart,
.btn-add,
.btn-primary.add-to-cart{
  background:var(--teal) !important;
  border-color:var(--teal) !important;
  color:#fff !important;
}
.tt-add:hover,
.tt-add:focus-visible,
.tt-add:active,
.product-card button:hover,
.product-card button:focus-visible,
.product-card .btn:hover,
.product-card .btn:focus-visible,
.add-to-cart:hover,
.add-to-cart:focus-visible,
.add-to-cart:active,
button.add-to-cart:hover,
button.add-to-cart:focus-visible,
.btn-add:hover,
.btn-add:focus-visible,
.btn-primary.add-to-cart:hover,
.btn-primary.add-to-cart:focus-visible{
  background:var(--magenta) !important;
  border-color:var(--magenta) !important;
  color:#fff !important;
}

/* 9) Collection-page headline typography: Cormorant Garamond */
.collection-storefront .store-panel h2,
.collection-storefront h1,
.collection-storefront .page-hero h1,
.collection-storefront .store-hero-copy h2,
.collection-storefront .store-hero-copy h2 span,
.collection-storefront .section-title,
.collection-storefront .collection-title,
.collection-storefront .product-listing-title,
.page-hero h1{
  font-family:"Cormorant Garamond", Garamond, Georgia, serif !important;
  font-weight:400 !important;
  letter-spacing:-.02em !important;
}

/* Preserve utility/filter headings in sans unless intentionally large */
.collection-storefront .store-filter h3,
.collection-storefront .store-filter a,
.collection-storefront .price-card span,
.collection-storefront .price-card strong{
  font-family:"Montserrat", Arial, sans-serif !important;
}

/* Mobile responsiveness for the new editorial grey panels */
@media (max-width: 760px){
  .retail-bath-copy{
    background:rgba(63,63,60,.40) !important;
  }
  .closing-editorial{
    background:linear-gradient(rgba(63,63,60,.40), rgba(63,63,60,.40)), url("../images/home-decor-retail.png") center / cover no-repeat !important;
  }
}

/* ===== v49 bath feature background refinement ===== */
/* Adds a soft Table & Trend brand-grey panel behind the full bath feature while preserving all existing image/copy shapes and colors. */
.retail-bath-feature{
  background:rgba(63,63,60,.08) !important;
  padding-top:34px !important;
  padding-bottom:58px !important;
  margin-top:0 !important;
}
.retail-bath-feature .retail-container{
  background:transparent !important;
}
.retail-bath-main,
.retail-bath-side,
.retail-bath-copy{
  /* Do not alter the internal shapes/colors from the approved screenshot. */
}
@media (max-width:700px){
  .retail-bath-feature{
    padding-top:24px !important;
    padding-bottom:42px !important;
  }
}

/* ===== v50 mobile responsiveness and final visual refinements ===== */
/* Homepage hero: keep button inside teal panel with breathing room on small screens */
@media (max-width: 700px){
  .hero-overlay{
    top: 18% !important;
    padding: 28px 28px 42px !important;
    max-height: none !important;
  }
  .hero-overlay .hero-button,
  .hero-overlay a.hero-button{
    margin-top: 22px !important;
    margin-bottom: 8px !important;
  }
}
@media (max-width: 430px){
  .hero-overlay{
    left: 16px !important;
    right: 16px !important;
    top: 15% !important;
    padding: 24px 24px 40px !important;
  }
}

/* Shop by Collection mobile: show exactly 3 full tiles, never clipped */
@media (max-width: 700px){
  .retail-collection-strip .retail-carousel-wrap{
    grid-template-columns: 22px minmax(0, 1fr) 22px !important;
    gap: 8px !important;
  }
  .retail-collection-strip .retail-card-strip,
  .retail-collection-strip .retail-collection-scroll{
    grid-auto-columns: calc((100% - 24px) / 3) !important;
    gap: 12px !important;
    padding: 0 !important;
    scroll-padding-left: 0 !important;
  }
  .retail-collection-strip .retail-collection-tile{
    min-width: 0 !important;
    width: auto !important;
    scroll-snap-align: start !important;
  }
  .retail-collection-strip .retail-collection-tile img{
    aspect-ratio: .82 / 1 !important;
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 360px){
  .retail-collection-strip .retail-card-strip,
  .retail-collection-strip .retail-collection-scroll{
    grid-auto-columns: calc((100% - 18px) / 3) !important;
    gap: 9px !important;
  }
  .retail-collection-tile span{font-size:.54rem !important;}
}

/* New Finds mobile: show 3-5 complete items without clipping */
@media (max-width: 700px){
  .retail-new-finds .retail-carousel-wrap,
  .retail-new-finds .retail-finds-wrap{
    grid-template-columns: 22px minmax(0, 1fr) 22px !important;
    gap: 8px !important;
  }
  .retail-new-finds .retail-card-strip,
  .retail-new-finds .retail-finds-scroll,
  .retail-new-scroll{
    grid-auto-columns: calc((100% - 32px) / 5) !important;
    gap: 8px !important;
    padding: 0 !important;
  }
  .retail-new-finds .retail-new-tile,
  .retail-new-finds .retail-find-tile{
    min-width: 0 !important;
    width: auto !important;
    scroll-snap-align: start !important;
  }
  .retail-new-finds .retail-new-tile img,
  .retail-new-finds .retail-find-tile img{
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  .retail-new-finds .retail-new-tile span,
  .retail-new-finds .retail-find-tile span{
    display: block !important;
    font-size: .52rem !important;
    line-height: 1.05 !important;
    letter-spacing: .04em !important;
    margin-top: 7px !important;
  }
}
@media (max-width: 430px){
  .retail-new-finds .retail-card-strip,
  .retail-new-finds .retail-finds-scroll,
  .retail-new-scroll{
    grid-auto-columns: calc((100% - 27px) / 4) !important;
    gap: 9px !important;
  }
}
@media (max-width: 350px){
  .retail-new-finds .retail-card-strip,
  .retail-new-finds .retail-finds-scroll,
  .retail-new-scroll{
    grid-auto-columns: calc((100% - 20px) / 3) !important;
    gap: 10px !important;
  }
}

/* Reimagine Your Bath copy panel: branding pink, all breakpoints */
.retail-bath-copy{
  background: rgba(243,22,107,.90) !important;
  color: #fff !important;
}
.retail-bath-copy h2,
.retail-bath-copy p{ color:#fff !important; }
.retail-bath-copy strong{
  background: var(--teal) !important;
  color: #fff !important;
}
.retail-bath-copy strong:hover,
.retail-bath-copy strong:focus-visible{
  background: var(--magenta) !important;
}

/* Shop the Room: make the entire editorial area readable and complete on mobile */
@media (max-width: 760px){
  .editorial-room{
    padding: 44px 0 !important;
  }
  .editorial-room-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .editorial-room-image,
  .editorial-room-copy{
    width: 100% !important;
    max-width: none !important;
  }
  .editorial-room-image img{
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }
  .editorial-room-copy{
    padding: 0 !important;
    text-align: left !important;
  }
  .editorial-room-copy h2{
    font-size: clamp(2.25rem, 11vw, 3.6rem) !important;
    line-height: .98 !important;
  }
  .room-picks{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .room-picks a{
    width: auto !important;
    min-height: 44px !important;
    padding: 12px 10px !important;
    text-align: center !important;
  }
}
@media (max-width: 380px){
  .room-picks{ grid-template-columns: 1fr !important; }
}

/* Recently Styled: mobile-friendly full cards */
@media (max-width: 760px){
  .recently-styled{
    padding: 44px 0 !important;
  }
  .styled-scroll{
    grid-auto-columns: minmax(72%, 1fr) !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x proximity !important;
    padding-bottom: 16px !important;
  }
  .styled-card{
    scroll-snap-align: start !important;
  }
  .styled-card img{
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }
}
@media (max-width: 430px){
  .styled-scroll{ grid-auto-columns: 84% !important; }
}

/* Footer: logo larger, and mobile links organized as compact grouped cards */
.footer-logo-image{
  max-width: 164px !important;
  max-height: 51px !important;
}
@media (max-width: 700px){
  .site-footer .footer-grid,
  .site-footer .footer-grid-five{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .site-footer .footer-brand{
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.28) !important;
  }
  .site-footer .footer-grid-five > div:not(.footer-brand),
  .site-footer .footer-grid > div:not(.footer-brand){
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    padding: 14px 16px !important;
  }
  .site-footer h4{
    margin-bottom: 8px !important;
    font-size: .76rem !important;
  }
  .site-footer a{
    display: inline-block !important;
    margin: 0 10px 6px 0 !important;
    padding: 2px 0 !important;
    font-size: .78rem !important;
    line-height: 1.22 !important;
  }
  .footer-social,
  .footer-social h4{ text-align: left !important; }
  .social-icons{ justify-content: flex-start !important; }
}

/* ===== v51 mobile layout fixes ===== */
/* Hero: keep teal panel intact and keep yellow button fully inside the panel on every screen */
.hero-frame{ overflow:hidden; }
.hero-overlay{ box-sizing:border-box; }
@media (max-width: 760px){
  .hero{ padding: 0 0 22px !important; }
  .hero .container{ width:100% !important; max-width:none !important; padding-left:0 !important; padding-right:0 !important; }
  .hero-image{
    min-height: 760px !important;
    background-position: center center !important;
  }
  .hero-overlay{
    left: clamp(18px, 6vw, 36px) !important;
    right: auto !important;
    top: 13% !important;
    width: min(88vw, 410px) !important;
    max-width: calc(100vw - 36px) !important;
    padding: clamp(26px, 7vw, 38px) clamp(24px, 7vw, 36px) clamp(32px, 8vw, 46px) !important;
    background: rgba(0,125,146,.86) !important;
    overflow: visible !important;
  }
  .hero-overlay h1{
    font-size: clamp(3.15rem, 15vw, 4.6rem) !important;
    line-height: .82 !important;
    margin-bottom: 20px !important;
  }
  .hero-overlay p{
    font-size: clamp(1rem, 4.7vw, 1.22rem) !important;
    line-height: 1.16 !important;
    margin-bottom: 24px !important;
    max-width: 22ch !important;
  }
  .hero-overlay .hero-button,
  .hero-overlay a.hero-button{
    margin: 0 !important;
    min-height: 52px !important;
    padding: 0 30px !important;
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: var(--black) !important;
  }
}
@media (max-width: 430px){
  .hero-image{ min-height: 710px !important; }
  .hero-overlay{
    left: 16px !important;
    top: 8% !important;
    width: calc(100vw - 32px) !important;
    padding: 28px 24px 36px !important;
  }
  .hero-overlay h1{ font-size: clamp(3rem, 16vw, 4rem) !important; }
}
@media (max-width: 350px){
  .hero-image{ min-height: 690px !important; }
  .hero-overlay h1{ font-size: 2.78rem !important; }
  .hero-overlay p{ font-size: .98rem !important; }
}

/* Shop by Collection: mobile shows exactly 3 full tiles, no clipped fourth */
@media (max-width: 700px){
  .retail-collection-strip .retail-container{
    width: min(calc(100% - 32px), 1440px) !important;
    margin-left:auto !important; margin-right:auto !important;
  }
  .retail-collection-strip .retail-carousel-wrap{
    grid-template-columns: 24px minmax(0, 1fr) 24px !important;
    gap: 7px !important;
    overflow: hidden !important;
  }
  .retail-collection-strip .retail-card-strip,
  .retail-collection-strip .retail-collection-scroll{
    display:grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 18px) / 3) !important;
    gap: 9px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    scroll-padding-left:0 !important;
    padding:0 !important;
  }
  .retail-collection-strip .retail-collection-tile{
    width:100% !important; min-width:0 !important;
    scroll-snap-align:start !important;
  }
  .retail-collection-strip .retail-collection-tile img{
    width:100% !important; height:auto !important;
    aspect-ratio:.82 / 1 !important;
    object-fit:cover !important;
  }
  .retail-collection-strip .retail-arrow{
    width:24px !important;
    min-width:24px !important;
  }
}

/* New Finds: larger mobile tiles, scaling to 5 on small screens without clipping */
@media (max-width: 700px){
  .retail-new-finds .retail-container{
    width: min(calc(100% - 32px), 1440px) !important;
    margin-left:auto !important; margin-right:auto !important;
  }
  .retail-new-finds .retail-carousel-wrap,
  .retail-new-finds .retail-finds-wrap{
    grid-template-columns: 24px minmax(0,1fr) 24px !important;
    gap: 7px !important;
    overflow:hidden !important;
  }
  .retail-new-finds .retail-card-strip,
  .retail-new-finds .retail-finds-scroll,
  .retail-new-scroll{
    display:grid !important;
    grid-auto-flow:column !important;
    grid-auto-columns: calc((100% - 32px) / 5) !important;
    gap: 8px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    padding:0 !important;
  }
  .retail-new-finds .retail-new-tile,
  .retail-new-finds .retail-find-tile{
    width:100% !important; min-width:0 !important;
    scroll-snap-align:start !important;
  }
  .retail-new-finds .retail-new-tile img,
  .retail-new-finds .retail-find-tile img{
    width:100% !important; height:auto !important;
    aspect-ratio:1 / 1 !important;
    object-fit:cover !important;
  }
}
@media (min-width:431px) and (max-width:700px){
  .retail-new-finds .retail-card-strip,
  .retail-new-finds .retail-finds-scroll,
  .retail-new-scroll{
    grid-auto-columns: calc((100% - 30px) / 4) !important;
    gap:10px !important;
  }
}

/* Reimagine Your Bath: brand pink copy block everywhere */
.retail-bath-copy{
  background: rgba(243,22,107,.88) !important;
  color:#fff !important;
}
.retail-bath-copy h2,
.retail-bath-copy p{ color:#fff !important; }
.retail-bath-copy strong{ background:var(--teal) !important; color:#fff !important; }
.retail-bath-copy strong:hover,.retail-bath-copy strong:focus-visible{ background:var(--magenta) !important; }

/* Shop the Room: keep image and copy grouped on phones with less gap above */
.editorial-room{ padding-top: clamp(32px, 5vw, 62px) !important; }
@media (max-width: 760px){
  .editorial-room{ padding: 28px 0 42px !important; }
  .editorial-room-grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }
  .editorial-room-image img{
    width:100% !important;
    aspect-ratio: 16 / 10 !important;
    object-fit:cover !important;
  }
  .editorial-room-copy{
    padding:0 !important;
  }
  .editorial-room-copy h2{
    font-size:clamp(2.35rem, 12vw, 3.9rem) !important;
  }
}

/* Recently Styled: one full swipe card on mobile */
@media (max-width: 760px){
  .recently-styled .container{ width:min(calc(100% - 24px), 1440px) !important; }
  .styled-scroll{
    display:grid !important;
    grid-auto-flow:column !important;
    grid-auto-columns: 88% !important;
    gap: 16px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    padding-bottom:18px !important;
  }
  .styled-card{ scroll-snap-align:start !important; width:100% !important; }
  .styled-card img{ width:100% !important; aspect-ratio:4/3 !important; object-fit:cover !important; }
}
@media (max-width:430px){ .styled-scroll{ grid-auto-columns: 94% !important; } }
