/* CINDERELLA YOGA — MAIN DESIGN FILE
   All custom presentation lives here. See CINDERELLA-DESIGN-HANDOVER.txt.
   Vendor theme/plugin stylesheets remain upstream dependencies. */
/* Contact content */
#cy-contact {
  --ink: #29232d;
  --muted: #756b76;
  --plum: #7d2f69;
  --mauve: #a85f91;
  --rose: #d59aba;
  --cream: #fff8fb;
  --line: #eadce5;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  overflow: hidden;
}
#cy-contact * {
  box-sizing: border-box;
}
#cy-contact a {
  text-decoration: none;
}
#cy-contact .cc-full {
  margin-left: 0;
  width: 100%;
}
#cy-contact .cc-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
#cy-contact .cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
#cy-contact .cc-eyebrow:before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--mauve);
}
#cy-contact .cc-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #5f5863;
  max-width: 700px;
  margin: 0;
}
#cy-contact .cc-main {
  padding: 90px 0;
  background: var(--cream);
}
#cy-contact .cc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}
#cy-contact .cc-photo {
  position: relative;
  margin-bottom: 28px;
}
#cy-contact .cc-photo img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 28px;
  filter: saturate(0.88);
  box-shadow: 0 22px 50px rgba(70, 35, 59, 0.13);
}
#cy-contact .cc-photo:after {
  content: "Cinderella Yoga community";
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#cy-contact .cc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#cy-contact .cc-detail {
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 18px;
  min-height: 105px;
}
#cy-contact .cc-detail i {
  display: block;
  color: var(--mauve);
  font-size: 20px;
  margin-bottom: 12px;
}
#cy-contact .cc-detail strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--plum);
  margin-bottom: 6px;
}
#cy-contact .cc-detail a,
#cy-contact .cc-detail span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
#cy-contact .cc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 20px 55px rgba(75, 34, 63, 0.09);
}
#cy-contact .cc-card h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
}
#cy-contact .cc-card > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
}
#cy-contact .wpcf7 p {
  margin: 0 0 15px;
}
#cy-contact .wpcf7 input[type="text"],
#cy-contact .wpcf7 input[type="email"],
#cy-contact .wpcf7 input[type="tel"],
#cy-contact .wpcf7 textarea {
  width: 100%;
  border: 1px solid #dfd1da !important;
  background: #fffafd !important;
  border-radius: 12px !important;
  padding: 15px 17px !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}
#cy-contact .wpcf7 textarea {
  height: 150px !important;
  resize: vertical;
}
#cy-contact .wpcf7 input[type="submit"] {
  width: 100%;
  min-height: 52px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #7d2f69, #a85f91) !important;
  color: white !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 28px rgba(125, 47, 105, 0.22);
}
#cy-contact .cc-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
#cy-contact .cc-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1e1ea;
  color: var(--plum) !important;
  transition: 0.2s;
}
#cy-contact .cc-map {
  padding: 0 0 90px;
  background: var(--cream);
}
#cy-contact .cc-map-head {
  text-align: center;
  margin-bottom: 35px;
}
#cy-contact .cc-map-head h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  margin: 5px 0 12px;
}
#cy-contact .cc-map-box {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(65, 31, 53, 0.11);
}
#cy-contact .cc-map-box iframe {
  width: 100% !important;
  display: block;
}
@media (max-width: 850px) {
  #cy-contact .cc-grid {
    grid-template-columns: 1fr;
  }
  #cy-contact .cc-card {
    padding: 30px;
  }
}
@media (max-width: 520px) {
  #cy-contact .cc-wrap {
    width: calc(100% - 26px);
  }
  #cy-contact .cc-details {
    grid-template-columns: 1fr;
  }
  #cy-contact .cc-photo img {
    height: 300px;
  }
}

/* Team content */
#cy-pride {
  --ink: #29232d;
  --muted: #716873;
  --plum: #7d2f69;
  --mauve: #a85f91;
  --cream: #fff8fb;
  --line: #eadce5;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  overflow: hidden;
}
#cy-pride * {
  box-sizing: border-box;
}
#cy-pride .cp-full {
  margin-left: 0;
  width: 100%;
}
#cy-pride .cp-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
#cy-pride .cp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
#cy-pride .cp-kicker:before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--mauve);
}
#cy-pride .cp-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #5f5863;
  max-width: 700px;
  margin: 0;
}
#cy-pride .cp-list-section {
  padding: 88px 0;
  background: var(--cream);
}
#cy-pride .cp-intro {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 42px;
}
#cy-pride .cp-intro h2 {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  margin: 4px 0 14px;
}
#cy-pride .cp-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
#cy-pride .cp-list {
  display: grid;
  gap: 18px;
}
#cy-pride .cp-profile {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 13px 38px rgba(72, 34, 60, 0.06);
  transition: 0.25s;
}
#cy-pride .cp-profile.is-open {
  box-shadow: 0 20px 48px rgba(72, 34, 60, 0.12);
  border-color: #d5b4c8;
}
#cy-pride .cp-profile-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr 58px;
  align-items: center;
  gap: 28px;
  padding: 0;
  text-align: left;
  border: 0;
  background: white;
  cursor: pointer;
  color: var(--ink);
}
#cy-pride .cp-profile-toggle img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
#cy-pride .cp-name {
  padding: 22px 0;
}
#cy-pride .cp-name strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(31px, 4vw, 47px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 9px;
}
#cy-pride .cp-name span {
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#cy-pride .cp-plus {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1e0e9;
  color: var(--plum);
  font-size: 24px;
  line-height: 1;
  transition: 0.25s;
}
#cy-pride .is-open .cp-plus {
  transform: rotate(45deg);
  background: var(--plum);
  color: white;
}
#cy-pride .cp-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
#cy-pride .cp-details {
  border-top: 1px solid var(--line);
  padding: 34px 42px 40px 192px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 38px;
  background: #fffafd;
}
#cy-pride .cp-details h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
}
#cy-pride .cp-details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
#cy-pride .cp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: start;
}
#cy-pride .cp-tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f0dfe8;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
}
#cy-pride .cp-note {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 700px) {
  #cy-pride .cp-profile-toggle {
    grid-template-columns: 95px 1fr 42px;
    gap: 16px;
  }
  #cy-pride .cp-profile-toggle img {
    width: 95px;
    height: 112px;
  }
  #cy-pride .cp-details {
    padding: 28px;
    grid-template-columns: 1fr;
  }
  #cy-pride .cp-name strong {
    font-size: 29px;
  }
}
@media (max-width: 520px) {
  #cy-pride .cp-wrap {
    width: calc(100% - 26px);
  }
  #cy-pride .cp-name span {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  #cy-pride .cp-plus {
    width: 32px;
    height: 32px;
  }
}
#cy-pride .cp-avatar {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ead0df, #c48aaa);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 40px;
  letter-spacing: 1px;
}
#cy-pride .cp-list {
  grid-template-columns: 1fr 1fr;
}
#cy-pride .cp-profile.is-open {
  grid-column: 1/-1;
}
@media (max-width: 850px) {
  #cy-pride .cp-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  #cy-pride .cp-avatar {
    width: 95px;
    height: 112px;
    font-size: 30px;
  }
}

/* Home */
#cy-home {
  --ink: #25202a;
  --muted: #6e6470;
  --plum: #7d2f69;
  --rose: #c879a7;
  --cream: #fff8fb;
  --line: #eadfe5;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  overflow: hidden;
}
#cy-home * {
  box-sizing: border-box;
}
#cy-home a {
  text-decoration: none;
}
#cy-home .cy-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
#cy-home .cy-hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  background: linear-gradient(112deg, #fffdf8 0%, #fff0f7 48%, #efd4e5 100%);
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(111, 37, 95, 0.14);
  border-radius: 50%;
  right: -120px;
  top: -110px;
}
#cy-home .cy-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}
#cy-home .cy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 22px;
}
#cy-home .cy-kicker:before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--rose);
}
#cy-home h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin: 0 0 24px;
  font-weight: 700;
  color: #22202a;
}
#cy-home h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--plum);
}
#cy-home .cy-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #505565;
  max-width: 620px;
  margin: 0 0 32px;
}
#cy-home .cy-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
#cy-home .cy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
}
#cy-home .cy-btn-main {
  background: var(--plum);
  color: white !important;
  box-shadow: 0 12px 30px rgba(111, 37, 95, 0.24);
}
#cy-home .cy-btn-ghost {
  border: 1px solid #cdb9c3;
  color: var(--plum) !important;
  background: rgba(255, 255, 255, 0.45);
}
#cy-home .cy-portrait {
  position: relative;
  align-self: end;
  transform: translateY(-85px);
}
#cy-home .cy-portrait img {
  display: block;
  width: min(410px, 88%);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(65, 28, 53, 0.14));
}
#cy-home .cy-seal {
  position: absolute;
  left: -22px;
  bottom: 70px;
  background: white;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(38, 24, 35, 0.14);
  font-size: 13px;
  line-height: 1.45;
}
#cy-home .cy-seal strong {
  display: block;
  font-size: 26px;
  color: var(--plum);
}
#cy-home .cy-trust {
  background: linear-gradient(90deg, #6f285f, #9d4d83);
  color: white;
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 29px 0;
}
#cy-home .cy-trust-item {
  padding: 4px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
#cy-home .cy-trust-item:last-child {
  border: 0;
}
#cy-home .cy-trust-item strong {
  font-family: Georgia, serif;
  display: block;
  font-size: 27px;
  font-weight: 400;
  color: #f4c7d2;
}
#cy-home .cy-trust-item span {
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #d9d3dc;
}
#cy-home .cy-section {
  padding: 105px 0;
}
#cy-home .cy-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
#cy-home .cy-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}
#cy-home h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  margin: 12px 0 16px;
  color: #26202a;
  font-weight: 400;
}
#cy-home .cy-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
#cy-home .cy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
#cy-home .cy-card {
  position: relative;
  padding: 38px 32px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  min-height: 320px;
  transition: 0.25s;
}
#cy-home .cy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(57, 31, 48, 0.1);
  border-color: #d8bcc9;
}
#cy-home .cy-num {
  font-family: Georgia, serif;
  font-size: 44px;
  color: #e9ccd7;
}
#cy-home .cy-card h3 {
  font-size: 22px;
  margin: 28px 0 13px;
}
#cy-home .cy-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 25px;
}
#cy-home .cy-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--plum) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#cy-home .cy-story {
  background: var(--cream);
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}
#cy-home .cy-story-visual {
  background: linear-gradient(155deg, #b96f9c, #71315f);
  border-radius: 28px;
  padding: 50px 44px;
  color: white;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#cy-home .cy-story-visual img {
  width: 210px;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: auto;
}
#cy-home .cy-quote {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.28;
  margin: 30px 0 18px;
}
#cy-home .cy-story-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: #5f606c;
}
#cy-home .cy-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}
#cy-home .cy-point {
  padding: 16px 18px;
  border-left: 3px solid var(--rose);
  background: white;
  font-size: 14px;
  font-weight: 700;
}
#cy-home .cy-shop {
  background: linear-gradient(120deg, #7c2f68, #b76494);
  color: white;
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-shop h2 {
  color: white;
}
#cy-home .cy-shop .cy-sub {
  color: #cfc7d1;
}
#cy-home .cy-shop-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}
#cy-home .cy-product-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#cy-home .cy-product {
  text-align: center;
  background: transparent;
  padding: 6px;
}
#cy-home .cy-mat-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-position: center;
  background-size: 230%;
  box-shadow:
    0 15px 35px rgba(43, 15, 38, 0.25),
    inset 0 0 0 8px rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}
#cy-home .cy-mat-circle:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(60, 20, 50, 0.12));
}
#cy-home .cy-product strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}
#cy-home .cy-gallery {
  background: #fff8fb;
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-gallery-shell {
  padding: 86px 0;
}
#cy-home .cy-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#cy-home .cy-catalog-card {
  background: #fff8fb;
  border: 1px solid #dec4d5;
  border-radius: 22px;
  padding: 14px 14px 25px;
  box-shadow: 0 14px 40px rgba(88, 38, 73, 0.07);
  overflow: hidden;
}
#cy-home .cy-catalog-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff8fb;
  padding: 22px;
  mix-blend-mode: multiply;
  filter: saturate(0.92) contrast(0.97);
}
#cy-home .cy-catalog-info {
  padding: 20px 8px 0;
}
#cy-home .cy-catalog-info h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 8px;
  color: #2c2530;
}
#cy-home .cy-catalog-info p {
  color: var(--muted);
  margin: 0 0 18px;
}
#cy-home .cy-price {
  color: var(--plum);
  font-size: 17px;
  font-weight: 700;
}
#cy-home .cy-shop-link {
  float: right;
  color: var(--plum) !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
#cy-home .cy-video {
  background: #fff8fb;
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-video-shell {
  padding: 80px 0;
  max-width: 1040px;
}
#cy-home .cy-final {
  text-align: center;
  background: linear-gradient(120deg, #f8e9ef, #fff8f4);
  margin-left: 0;
  width: 100%;
}
#cy-home .cy-final .cy-wrap {
  max-width: 800px;
}
#cy-home .cy-final h2 {
  font-size: clamp(40px, 5vw, 66px);
}
@media (max-width: 850px) {
  #cy-home .cy-grid,
  #cy-home .cy-story-grid,
  #cy-home .cy-shop-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  #cy-home .cy-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  #cy-home .cy-portrait {
    transform: translateY(-35px);
  }
  #cy-home .cy-hero {
    padding-top: 85px;
    min-height: auto;
  }
  #cy-home .cy-hero .cy-grid {
    text-align: center;
  }
  #cy-home .cy-kicker {
    justify-content: center;
  }
  #cy-home .cy-lead {
    margin-left: auto;
    margin-right: auto;
  }
  #cy-home .cy-actions {
    justify-content: center;
  }
  #cy-home .cy-portrait img {
    max-height: 470px;
    object-fit: contain;
  }
  #cy-home .cy-seal {
    left: 10px;
    bottom: 30px;
    text-align: left;
  }
  #cy-home .cy-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  #cy-home .cy-trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  #cy-home .cy-cards {
    grid-template-columns: 1fr;
  }
  #cy-home .cy-section {
    padding: 75px 0;
  }
}
@media (max-width: 520px) {
  #cy-home .cy-wrap {
    width: min(100% - 26px, 1180px);
  }
  #cy-home h1 {
    font-size: 47px;
    letter-spacing: -2px;
  }
  #cy-home .cy-trust-grid {
    grid-template-columns: 1fr;
  }
  #cy-home .cy-trust-item {
    border-right: 0;
  }
  #cy-home .cy-points,
  #cy-home .cy-product-stack,
  #cy-home .cy-catalog-grid {
    grid-template-columns: 1fr;
  }
  #cy-home .cy-product img {
    height: 220px;
  }
}
body .mini-cart .btn-primary,
body .noo-footer .wpcf7-submit,
body #cy-home .noo-video-slider .icon,
body #cy-home .noo-video-slider .loop-item-content,
body #cy-home .noo-video-slider [class*="icon"] {
  background-color: #9d4f83 !important;
  border-color: #9d4f83 !important;
}
body .noo-footer .wpcf7-submit:hover,
body .mini-cart .btn-primary:hover,
body #cy-home .noo-video-slider .loop-item-content:hover {
  background-color: #7d2f69 !important;
  border-color: #7d2f69 !important;
}
body .button.pull-left.btn-primary,
body .wpcf7-submit,
body #cy-home .icon,
body #cy-home .loop-item-content {
  background: #9d4f83 !important;
  background-color: #9d4f83 !important;
  border-color: #9d4f83 !important;
}
body .button.pull-left.btn-primary:hover,
body .wpcf7-submit:hover,
body #cy-home .loop-item-content:hover {
  background: #7d2f69 !important;
  background-color: #7d2f69 !important;
  border-color: #7d2f69 !important;
}
body #cy-home .videos .icon {
  background: #fff !important;
  background-color: #fff !important;
  border-color: #fff !important;
}
body #cy-home .videos .icon .fa {
  color: #7d2f69 !important;
}
body #cy-home .videos .loop-item-content,
body #cy-home .videos .loop-item-content:hover {
  background: rgba(38, 32, 42, 0.82) !important;
  background-color: rgba(38, 32, 42, 0.82) !important;
  border-color: transparent !important;
}

/* Programs content */
#cy-programs {
  --ink: #29232d;
  --muted: #716873;
  --plum: #7d2f69;
  --mauve: #a85f91;
  --cream: #fff8fb;
  --line: #eadce5;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  overflow: hidden;
}
#cy-programs * {
  box-sizing: border-box;
}
#cy-programs .pg-full {
  margin-left: 0;
  width: 100%;
}
#cy-programs .pg-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
#cy-programs .pg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
#cy-programs .pg-kicker:before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--mauve);
}
#cy-programs .pg-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #5f5863;
  max-width: 760px;
  margin: 0;
}
#cy-programs .pg-school {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
#cy-programs .pg-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dfc5d5;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
}
#cy-programs .pg-section {
  padding: 88px 0;
  background: var(--cream);
}
#cy-programs .pg-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
#cy-programs .pg-intro h2 {
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  margin: 5px 0 15px;
}
#cy-programs .pg-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
#cy-programs .pg-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
#cy-programs .pg-program {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 13px 38px rgba(72, 34, 60, 0.06);
  transition: 0.25s;
}
#cy-programs .pg-program.is-open {
  box-shadow: 0 20px 48px rgba(72, 34, 60, 0.12);
  border-color: #d5b4c8;
}
#cy-programs .pg-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 170px 1fr 58px;
  align-items: center;
  gap: 30px;
  padding: 0;
  text-align: left;
  border: 0;
  background: white;
  cursor: pointer;
  color: var(--ink);
}
#cy-programs .pg-hour-art {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8cada, #b9759f);
  color: white;
}
#cy-programs .pg-hour-art strong {
  font-family: Georgia, serif;
  font-size: 57px;
  font-weight: 400;
  line-height: 0.9;
}
#cy-programs .pg-hour-art span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 9px;
}
#cy-programs .pg-name {
  padding: 22px 0;
}
#cy-programs .pg-name strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(29px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 9px;
}
#cy-programs .pg-name span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
#cy-programs .pg-plus {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1e0e9;
  color: var(--plum);
  font-size: 24px;
  transition: 0.25s;
}
#cy-programs .is-open .pg-plus {
  transform: rotate(45deg);
  background: var(--plum);
  color: white;
}
#cy-programs .pg-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
#cy-programs .pg-details {
  border-top: 1px solid var(--line);
  padding: 36px 46px 40px 200px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  background: #fffafd;
}
#cy-programs .pg-details h3 {
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  margin: 0 0 12px;
}
#cy-programs .pg-details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
#cy-programs .pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: start;
}
#cy-programs .pg-tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f0dfe8;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 700px) {
  #cy-programs .pg-toggle {
    grid-template-columns: 105px 1fr 42px;
    gap: 16px;
  }
  #cy-programs .pg-hour-art {
    height: 120px;
  }
  #cy-programs .pg-hour-art strong {
    font-size: 43px;
  }
  #cy-programs .pg-details {
    padding: 28px;
    grid-template-columns: 1fr;
  }
  #cy-programs .pg-name strong {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  #cy-programs .pg-wrap {
    width: calc(100% - 26px);
  }
  #cy-programs .pg-hour-art {
    width: 90px;
  }
  #cy-programs .pg-toggle {
    grid-template-columns: 90px 1fr 34px;
  }
  #cy-programs .pg-name span {
    font-size: 10px;
  }
}

/* Shared header, footer and controls */
@media (min-width: 992px) {
  .colophon.wigetized .container-boxed > .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    justify-content: center;
  }
  .colophon.wigetized .container-boxed > .row > .col-md-3 {
    width: auto !important;
    max-width: none !important;
    float: none !important;
  }
  .colophon.wigetized .container-boxed > .row > .col-md-3:nth-child(2) {
    display: none !important;
  }
  .colophon.wigetized .widget {
    width: 100%;
    max-width: 300px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Shared header, footer and controls */
@media (min-width: 992px) {
  .colophon.wigetized .container-boxed > .row > .col-md-3:nth-child(1) {
    grid-column: 1 !important;
  }
  .colophon.wigetized .container-boxed > .row > .col-md-3:nth-child(3) {
    grid-column: 2 !important;
  }
  .colophon.wigetized .container-boxed > .row > .col-md-3:nth-child(4) {
    grid-column: 3 !important;
  }
}

/* Shared header, footer and controls */

#noo-header .navbar-brand {
  font-family: "Style Script", "Segoe Script", cursive !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  line-height: 75px !important;
  text-transform: none !important;
  white-space: nowrap !important;
}
@media (min-width: 992px) {
  #noo-header .member-links.header-right {
    display: flex !important;
    flex-flow: row nowrap !important;
    justify-content: flex-end !important;
    align-items: stretch !important;
    float: right !important;
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 75px !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
  }
  #noo-header .member-info,
  #noo-header .noo-menu-item-cart {
    position: relative !important;
    display: block !important;
    float: none !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 75px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #noo-header .member-info > a,
  #noo-header .noo-menu-item-cart > a.cart-button {
    display: block !important;
    box-sizing: border-box !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 75px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    text-align: center !important;
  }
  #noo-header .member-info > .sub-menu,
  #noo-header .noo-menu-item-cart > .noo-minicart {
    position: absolute !important;
    top: 75px !important;
    right: 0 !important;
    left: auto !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
    z-index: 9999 !important;
  }
  #noo-header .noo-menu-item-cart > .noo-minicart {
    display: none !important;
  }
  #noo-header .noo-menu-item-cart:hover > .noo-minicart {
    display: block !important;
  }
}

/* Shared header, footer and controls */

@media (min-width: 992px) {
  #noo-header .noo-minicart,
  #noo-header .noo-minicart .minicart-footer,
  #noo-header .noo-minicart .minicart-actions {
    box-sizing: border-box !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    margin: 0 !important;
    transform: none !important;
    transition: none !important;
  }
  #noo-header .noo-minicart .minicart-actions {
    display: block !important;
    float: none !important;
    position: static !important;
    padding: 0 !important;
  }
  #noo-header .noo-minicart .minicart-actions .btn-primary,
  #noo-header .noo-minicart .minicart-actions .btn-primary:hover,
  #noo-header .noo-minicart .minicart-actions .btn-primary:focus,
  #noo-header .noo-minicart .minicart-actions .btn-primary:active {
    box-sizing: border-box !important;
    display: block !important;
    float: none !important;
    position: static !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border-width: 0 !important;
    line-height: 44px !important;
    text-align: center !important;
    transform: none !important;
    translate: none !important;
    transition:
      background-color 0.25s ease,
      color 0.25s ease !important;
    box-shadow: none !important;
  }
  #noo-header .noo-minicart .minicart-actions .btn-primary .text {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 44px !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Shared header, footer and controls */

body.page-id-165 .main-content h3 {
  font-family: "DM Sans" !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-variation-settings: "opsz" 14 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.18 !important;
}

/* Shared header, footer and controls */

body.home .cy-hero:after,
body.page-id-165 .noo-main:before,
body.page-id-1202 #cy-pride .cp-hero:after,
body.page-id-3367 #cy-programs .pg-hero:after,
body.page-id-167 #cy-contact .cc-hero:after {
  opacity: 0.32 !important;
  filter: brightness(1.07) saturate(0.72) contrast(0.82)
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.16)) drop-shadow(0 7px 18px rgba(76, 39, 64, 0.08)) !important;
  mix-blend-mode: normal !important;
  transition: none !important;
  pointer-events: none !important;
}
body.home .cy-hero:after {
  opacity: 0.44 !important;
  filter: brightness(1.12) saturate(0.78) contrast(0.84)
    drop-shadow(0 0 28px rgba(210, 157, 69, 0.22)) !important;
}

/* Shared header, footer and controls */

@media (max-width: 767px) {
  body.post-type-archive-product .shop-loop-quickview,
  body.woocommerce-page .shop-loop-quickview {
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
    line-height: 1.2 !important;
  }
}

/* Legacy plugin brand palette */

:root {
  --lp-primary-color: #7d2f69 !important;
  --lp-secondary-color: #c879a7 !important;
}

body .learn-press-course-tab-filters .active,
body .learn-press-pagination .page-numbers.current,
body .learn-press-pagination .page-numbers:hover,
body .lp-button,
body button.lp-button,
body input.lp-button {
  background-color: #7d2f69 !important;
  border-color: #7d2f69 !important;
  color: #fff !important;
}

body .lp-button:hover,
body button.lp-button:hover,
body input.lp-button:hover {
  background-color: #6f285f !important;
  border-color: #6f285f !important;
}

body .course-title a:hover,
body .learn-press-course-results-progress .items-progress__heading,
body .learn-press-course-results-progress .course-progress__heading {
  color: #7d2f69 !important;
}

/* Mobile navigation */

@media (max-width: 991px) {
  /* Actual hamburger icon */
  body .noo-header .navbar-toggle .fa-bars {
    color: #c879a7 !important;
    -webkit-text-fill-color: #c879a7 !important;
  }

  /* Actual main mobile drawer */
  body .noo-header .noo-navbar-collapse,
  body .noo-header .noo-navbar-collapse.in,
  body .noo-header .noo-navbar-collapse.collapsing,
  body .noo-header .noo-navbar-collapse > ul.navbar-nav,
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li,
  body .noo-header .noo-navbar-collapse ul.sub-menu,
  body .noo-header .noo-navbar-collapse ul.sub-menu > li {
    background: #111111 !important;
    background-color: #111111 !important;
  }

  /* Main menu text */
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li > a,
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li > a span,
  body .noo-header .noo-navbar-collapse ul.sub-menu > li > a {
    color: #c879a7 !important;
    -webkit-text-fill-color: #c879a7 !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
  }

  /* Current / hover */
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li > a:hover,
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li > a:focus,
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li.current-menu-item > a,
  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li.current-menu-parent > a,
  body .noo-header .noo-navbar-collapse ul.sub-menu > li > a:hover {
    color: #efd4e5 !important;
    -webkit-text-fill-color: #efd4e5 !important;
    background: #1b1b1b !important;
  }

  body .noo-header .noo-navbar-collapse > ul.navbar-nav > li {
    border-bottom: 1px solid rgba(200, 121, 167, 0.28) !important;
  }
}

/* Community content */
.cy-community section:not(.cy-banner) {
  padding: 76px 0;
}

.cy-community .intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.cy-community .intro .eyebrow {
  justify-content: center;
}

.cy-community .gallery-section {
  background: #fff8fb !important;
}
.cy-community .moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cy-community .moment {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(72, 34, 60, 0.09);
}

.cy-community .moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cy-community .moment:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(40, 20, 35, 0.86) 100%);
}

.cy-community .moment-copy {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.cy-community .moment-copy,
.cy-community .moment-copy span,
.cy-community .moment-copy h3 {
  color: #fff !important;
}

.cy-community .photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.cy-community figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #eadce5;
  border-radius: 16px;
  background: #fff;
}

.cy-community figure:nth-child(1),
.cy-community figure:nth-child(4),
.cy-community figure:nth-child(7) {
  grid-column: span 7;
}

.cy-community figure:nth-child(2),
.cy-community figure:nth-child(3),
.cy-community figure:nth-child(5),
.cy-community figure:nth-child(6),
.cy-community figure:nth-child(8) {
  grid-column: span 5;
}

.cy-community figure img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.cy-community figcaption,
.cy-community .review-source {
  color: #7d2f69 !important;
}
.cy-community .review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.cy-community .review-card {
  padding: 10px;
  border: 1px solid #eadce5;
  border-radius: 16px;
  background: #fff;
}

.cy-community .review-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.cy-community .closing {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 70px !important;
  padding: 68px 40px !important;
  text-align: center !important;

  background: linear-gradient(125deg, #633052 0%, #81506f 55%, #a56f8e 100%) !important;
}

.cy-community .closing h2,
.cy-community .closing p {
  color: #fff !important;
}

.cy-community .cta {
  display: inline-block;
  padding: 13px 25px;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 999px;
  color: #fff !important;
  background: transparent !important;
  text-decoration: none !important;
}

.cy-community .cta:hover {
  color: #7d2f69 !important;
  background: #fff !important;
}

@media (max-width: 900px) {
  .cy-community .moment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cy-community .moment:last-child {
    grid-column: 1/-1;
  }

  .cy-community figure:nth-child(n) {
    grid-column: span 6;
  }

  .cy-community .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .cy-community .moment-grid {
    grid-template-columns: 1fr;
  }

  .cy-community .moment:last-child {
    grid-column: auto;
  }

  .cy-community figure:nth-child(n) {
    grid-column: 1/-1;
  }

  .cy-community .closing {
    width: calc(100% - 26px);
    padding: 55px 22px !important;
  }
}

/* Shop catalogue */

body.woocommerce-shop .noo-page-heading,
body.tax-product_cat .noo-page-heading,
body.tax-product_tag .noo-page-heading {
  display: none !important;
}

#cy-shop-v2,
#cy-shop-v2 * {
  box-sizing: border-box;
}
#cy-shop-v2 {
  --ink: #29232d;
  --muted: #716873;
  --plum: #7d2f69;
  --mauve: #a85f91;
  --line: #eadce5;
  width: 100%;
  padding: 38px 0 80px;
  color: var(--ink);
  font-family: "DM Sans", "Trebuchet MS", Arial, sans-serif;
}
#cy-shop-v2 .cy-shop-width {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
#cy-shop-v2 .cy-shop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#cy-shop-v2 .cy-shop-kicker:before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--mauve);
}
#cy-shop-v2 .cy-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 42px 0 28px;
}
#cy-shop-v2 .woocommerce-result-count,
#cy-shop-v2 .woocommerce-ordering {
  float: none !important;
  margin: 0 !important;
}
#cy-shop-v2 .woocommerce-ordering select {
  min-width: 220px;
  padding: 11px 14px;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: #fff !important;
}
#cy-shop-v2 .cy-shop-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#cy-shop-v2 .cy-product-card {
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(72, 34, 60, 0.07) !important;
}

#cy-shop-v2 .cy-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
#cy-shop-v2 .cy-product-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 22px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

#cy-shop-v2 .onsale {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: var(--plum) !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

#cy-shop-v2 .cy-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
#cy-shop-v2 .cy-product-title {
  margin: 0 0 10px !important;
  font-family: "DM Sans", "Trebuchet MS", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}
#cy-shop-v2 .cy-product-title a {
  color: #332b34 !important;
  text-decoration: none !important;
}
#cy-shop-v2 .cy-product-price {
  margin: 0 0 18px !important;
  color: var(--plum) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}
#cy-shop-v2 .cy-product-actions {
  margin-top: auto;
}
#cy-shop-v2 .cy-product-actions .button {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #9d4f83 !important;
  color: #fff !important;
  text-align: center !important;
  text-decoration: none !important;
  font-family: "DM Sans", "Trebuchet MS", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

@media (max-width: 900px) {
  #cy-shop-v2 .cy-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  #cy-shop-v2 .cy-shop-width {
    width: calc(100% - 26px);
  }
  #cy-shop-v2 .cy-shop-grid {
    grid-template-columns: 1fr !important;
  }
  #cy-shop-v2 .cy-shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  #cy-shop-v2 .woocommerce-ordering select {
    width: 100% !important;
  }
}

/* Design system, shared banner and page layout */
/* Brand tokens and the legacy theme boundary. */
:root {
  --cy-ink: #29232d;
  --cy-muted: #716873;
  --cy-plum: #7d2f69;
  --cy-mauve: #a85f91;
  --cy-cream: #fff8fb;
  --cy-line: #eadce5;
  --cy-banner-width: 1400px;
  --cy-banner-height: 470px;
  --cy-banner-gutter: 40px;
}
body .noo-header .navbar-header,
body .noo-header .navbar-brand {
  background: var(--cy-plum);
}
#noo-header {
  display: flow-root;
}
#noo-header .navbar {
  display: flow-root;
  height: auto;
  min-height: 75px;
}
@media (min-width: 992px) {
  /* The Yogi shrink script writes the total header height onto each row item. */
  #noo-header .navbar-brand,
  #noo-header .navbar-nav > li > a {
    height: 75px !important;
    line-height: 75px !important;
  }
  #noo-header .navbar:not(.navbar-fixed-top) {
    background: linear-gradient(to bottom, #282828 75px, #fff 75px);
  }
  #noo-header .navbar.navbar-fixed-top {
    background: #fff;
  }
}
#noo-header .navbar-brand,
#noo-header .navbar-brand a {
  color: #fff;
}
#noo-header .navbar-nav > li > a,
body.page-menu-white .navbar .navbar-nav > li > a {
  color: #3d2c3a;
  opacity: 1;
  visibility: visible;
}
#noo-header .navbar-nav > li > a:hover,
#noo-header .navbar-nav > li > a:focus,
#noo-header .navbar-nav > li.current-menu-item > a,
#noo-header .navbar-nav > li.current-menu-parent > a {
  color: var(--cy-plum);
}
.noo-header .navbar-nav > li > a::before {
  background: var(--cy-plum);
}
body .button.pull-left.btn-primary,
body .wpcf7-submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #9d4f83;
  border-color: #9d4f83;
  color: #fff;
}
body .button.pull-left.btn-primary:hover,
body .wpcf7-submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--cy-plum);
  border-color: var(--cy-plum);
}

/* Owned page containers use parent width instead of viewport-width breakout hacks. */
body.cy-internal-page .noo-page-heading,
body.cy-home-page .noo-page-heading,
body.woocommerce-shop .noo-page-heading,
body.tax-product_cat .noo-page-heading,
body.tax-product_tag .noo-page-heading {
  display: none;
}
body.cy-internal-page .main-content,
body.cy-home-page .main-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
body.cy-internal-page .main-content > .row,
body.cy-home-page .main-content > .row {
  margin: 0;
}
body.cy-internal-page .main-content > .row > .noo-main,
body.cy-home-page .main-content > .row > .noo-main {
  float: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
}
#cy-about-force {
  margin: 0;
  padding: 0;
  width: 100%;
}
#cy-shop-v2 {
  padding-top: 0;
}

/* One banner component. Height grows with content; no fixed max-height or JS wrappers. */
body .cy-banner {
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: calc(100% - var(--cy-banner-gutter));
  max-width: var(--cy-banner-width);
  min-height: var(--cy-banner-height);
  margin: 20px auto 0;
  padding: 52px clamp(24px, 5vw, 72px);
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(118deg, #fffdf9 0%, #fff0f7 52%, #ead0e1 100%);
  color: var(--cy-ink);
  font-family: "DM Sans", Arial, sans-serif;
  text-align: left;
}
body .cy-banner::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 12px;
  right: 22px;
  width: 310px;
  height: 310px;
  background: url("/wp-content/uploads/2026/09/cinderella-mandala-gold25-v4-web.png") center /
    contain no-repeat;
  opacity: 0.32;
  pointer-events: none;
}
body .cy-banner--plain::after {
  content: none;
}
body .cy-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
body .cy-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cy-plum);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body .cy-banner__kicker::before {
  content: "";
  flex: 0 0 38px;
  width: 38px;
  height: 2px;
  background: var(--cy-mauve);
}
body .cy-banner h1 {
  margin: 0 0 22px;
  color: var(--cy-ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2px;
  text-transform: none;
  overflow-wrap: break-word;
}
body .cy-banner h1 em {
  color: var(--cy-plum);
  font-family: Georgia, serif;
  font-weight: 400;
}
body .cy-banner__lead {
  max-width: 760px;
  margin: 0;
  color: #5f5863;
  font-size: 19px;
  line-height: 1.7;
}

/* About content: replace abandoned WPBakery patches with the actual page's classes. */
#cy-about-clean {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--cy-ink);
}
#cy-about-clean * {
  box-sizing: border-box;
}
#cy-about-clean .ca-wrap {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}
#cy-about-clean .ca-section {
  padding: 76px 0;
}
#cy-about-clean .ca-story {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
}
#cy-about-clean h2 {
  margin: 0 0 22px;
  font:
    400 42px/1.18 Georgia,
    serif;
  color: var(--cy-ink);
}
#cy-about-clean h3 {
  margin: 0 0 16px;
  font:
    500 24px/1.25 "DM Sans",
    Arial,
    sans-serif;
  color: var(--cy-ink);
}
#cy-about-clean p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cy-muted);
}
#cy-about-clean .ca-soft {
  background: var(--cy-cream);
}
#cy-about-clean .ca-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
#cy-about-clean .ca-cards article {
  padding: 30px;
  background: white;
  border: 1px solid var(--cy-line);
  border-radius: 18px;
}
#cy-about-clean .ca-school {
  padding: 76px 0;
  text-align: center;
}
#cy-about-clean .ca-school p {
  max-width: 840px;
  margin: 0 auto 28px;
}
#cy-about-clean .ca-school a {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--cy-plum);
  color: white;
}

/* Community content foundation; the original stylesheet had unclosed banner rules. */
.cy-community {
  --ink: var(--cy-ink);
  --muted: var(--cy-muted);
  --plum: var(--cy-plum);
  --mauve: var(--cy-mauve);
  --cream: var(--cy-cream);
  --line: var(--cy-line);
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--cy-ink);
}
.cy-community * {
  box-sizing: border-box;
}
.cy-community .wrap {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}
.cy-community .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cy-plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cy-community .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--cy-mauve);
}
.cy-community h2 {
  margin: 0 0 20px;
  font:
    400 42px/1.18 Georgia,
    serif;
  color: var(--cy-ink);
}
.cy-community p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cy-muted);
}
.cy-community figcaption {
  padding: 16px 20px;
}
.cy-community .moment-copy h3 {
  margin: 8px 0 0;
}

/* Intrinsic sizing protects the content grids and long contact details. */
#cy-home .cy-grid > *,
#cy-contact .cc-grid > *,
#cy-contact .cc-details > *,
#cy-pride .cp-profile-toggle > *,
#cy-programs .pg-toggle > * {
  min-width: 0;
}
#cy-contact .cc-detail {
  overflow-wrap: anywhere;
}
#cy-contact .cc-card input,
#cy-contact .cc-card textarea {
  max-width: 100%;
}
#cy-home .cy-video .posts-loop-content.row {
  margin-left: 0;
  margin-right: 0;
}
#cy-home .cy-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 22px;
  width: 330px;
  height: 285px;
  border-left: 1px solid rgba(185, 138, 84, 0.62);
  background: url("/wp-content/uploads/2026/09/cinderella-asian-lotus-mandala-v3-web.png") right
    top / 285px auto no-repeat;
  opacity: 0.34;
  pointer-events: none;
  filter: saturate(0.92);
}
#cy-home .cy-hero > .cy-wrap {
  position: relative;
  z-index: 1;
}
#cy-shop-v2 .cy-product-card {
  position: relative;
}

@media (max-width: 1024px) {
  :root {
    --cy-banner-height: 423px;
    --cy-banner-gutter: 32px;
  }
  body .cy-banner {
    padding: 44px 36px;
  }
  body .cy-banner::after {
    width: 260px;
    height: 260px;
    right: 16px;
  }
}
@media (max-width: 991px) {
  #noo-header .navbar-brand {
    box-sizing: border-box;
    max-width: 100%;
    font-size: clamp(20px, 7vw, 32px) !important;
    white-space: normal !important;
    overflow-wrap: break-word;
    line-height: 1.3 !important;
    height: auto;
    min-height: 72px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .noo-header .navbar-wrapper,
  .noo-header .navbar-wrapper .navbar {
    background: #111;
  }
}
@media (max-width: 767px) {
  :root {
    --cy-banner-height: 375px;
    --cy-banner-gutter: 26px;
  }
  body .cy-banner {
    margin-top: 16px;
    padding: 38px 24px;
  }
  body .cy-banner::after {
    width: 205px;
    height: 205px;
    top: 8px;
    right: 8px;
    opacity: 0.25;
  }
  body .cy-banner h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  body .cy-banner__lead {
    font-size: 17px;
    line-height: 1.65;
  }
  body .cy-banner__kicker {
    font-size: 11px;
    letter-spacing: 1.4px;
  }
  #cy-about-clean .ca-wrap,
  .cy-community .wrap {
    width: calc(100% - 28px);
  }
  #cy-about-clean .ca-section,
  #cy-about-clean .ca-school {
    padding: 52px 0;
  }
  #cy-about-clean .ca-story,
  #cy-about-clean .ca-cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  #cy-about-clean h2,
  .cy-community h2 {
    font-size: 34px;
  }
  #cy-home .cy-wrap {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  #cy-home .cy-hero::after {
    width: 225px;
    height: 205px;
    right: 8px;
    background-size: 205px auto;
  }
}
