/** Shopify CDN: Minification failed

Line 1025:19 Unexpected "*"

**/
/* ═══════════════════════════════════════════════════════
   CLEAN GIRL THEME OVERRIDES — v90
   Only affects CG custom sections & Dawn defaults
   Colors: BG #FEFBF3 | Hero Pink #F46ED9 | Bright Pink #FB48C4
           Light Pink #FDDCF5 | Blue #5BC2E7 | Orange #FE8101
   Fonts: H1=new-spirit-condensed | H2=gelica | H3+Body=menco
   ═══════════════════════════════════════════════════════ */

/* ===== HIDE DAWN DEFAULT HEADER ===== */
.shopify-section-header,
.shopify-section-group-header-group .header-wrapper,
.shopify-section-group-header-group .announcement-bar-section,
#shopify-section-announcement-bar,
.shopify-section-announcement-bar {
  display: none !important;
}

.cg-header-section {
  display: block !important;
}

.shopify-section-group-header-group + .shopify-section--main-content,
.shopify-section-group-header-group + main,
#MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===== HIDE DAWN DEFAULT FOOTER ===== */
.shopify-section-footer,
.shopify-section-group-footer-group .footer,
.shopify-section-group-footer-group .footer__content-top,
.shopify-section-group-footer-group .footer__content-bottom {
  display: none !important;
}

.cg-footer-section {
  display: block !important;
}

/* ===== CG SECTION OVERRIDES (scoped to CG sections only) ===== */
[class*="cg-"] .page-width,
.cg-section .page-width {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide Dawn page title ONLY on pages using CG templates */
.template-page .page-width > h1.page-title {
  display: none !important;
}

/* ───── GLOBAL CG TYPOGRAPHY ───── */
body,
.shopify-section,
.cart-notification,
button,
input,
select,
textarea {
  font-family: 'menco', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

h1 {
  font-family: 'new-spirit-condensed', 'Playfair Display', serif !important;
  color: #5BC2E7 !important;
  font-weight: 600 !important;
}

h2 {
  font-family: 'gelica', 'Playfair Display', serif !important;
  color: #5BC2E7 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

h3, h4, h5 {
  font-family: 'menco', 'DM Sans', sans-serif !important;
  color: #5BC2E7 !important;
  font-weight: 700 !important;
}

p, li, td, th, label, span {
  color: #2C2627;
}

/* ───── PAGE WIDTH CONTAINER ───── */
body:not(.template-page) .page-width,
.template-cart .page-width,
.template-search .page-width,
.template-collection .page-width,
.template-customers .page-width,
.template-404 .page-width {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}

@media (max-width: 767px) {
  body:not(.template-page) .page-width,
  .template-cart .page-width,
  .template-search .page-width,
  .template-collection .page-width,
  .template-customers .page-width,
  .template-404 .page-width {
    padding: 0 20px !important;
  }
}

/* ───── DAWN BUTTONS → CG DESIGN SYSTEM ───── */
.shopify-section .button,
.shopify-section .btn,
.cart__checkout-button,
.shopify-payment-button button,
button.button,
.customer .button,
.template-404 .button {
  font-family: 'menco', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 30px !important;
  padding: 16px 40px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  border: none !important;
}

/* Primary buttons → BRIGHT PINK */
.button--primary,
.cart__checkout-button,
.shopify-payment-button__button--unbranded,
.customer .button,
.template-404 .button {
  background-color: #FB48C4 !important;
  color: white !important;
  border: none !important;
}

.button--primary:hover,
.cart__checkout-button:hover,
.shopify-payment-button__button--unbranded:hover,
.customer .button:hover,
.template-404 .button:hover {
  background-color: #F46ED9 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(44, 38, 39, 0.18) !important;
}

/* Secondary/outline buttons → BLUE */
.button--secondary {
  background-color: #5BC2E7 !important;
  color: white !important;
  border: none !important;
}
.button--secondary:hover {
  background-color: #4AAED0 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(44, 38, 39, 0.12) !important;
}

/* Links → BRIGHT PINK */
a:not([class]) {
  color: #FB48C4;
  transition: color 0.3s ease;
}
a:not([class]):hover {
  color: #F46ED9;
}

/* ───── FORM FIELDS → PREMIUM STYLING ───── */
.field__input,
.customer .field input,
.customer .field textarea,
.search__input,
input[type="email"],
input[type="text"],
input[type="password"],
input[type="tel"],
textarea,
select {
  font-family: 'menco', sans-serif !important;
  font-size: 14px !important;
  border: 1.5px solid #E0DDD8 !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  background: white !important;
  color: #2C2627 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.field__input:focus,
.customer .field input:focus,
.customer .field textarea:focus,
.search__input:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: #FB48C4 !important;
  box-shadow: 0 0 0 3px rgba(44, 38, 39, 0.08) !important;
  outline: none !important;
}

.field__label,
.customer label {
  font-family: 'menco', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  color: #7A7072 !important;
}

/* ═══════════════════════════════════════════
   CART PAGE — PREMIUM SHOPPING EXPERIENCE
   ═══════════════════════════════════════════ */

.template-cart {
  background: #FEFBF3 !important;
}

.template-cart .title-wrapper-with-link {
  padding: 48px 0 32px !important;
  border-bottom: 1px solid #E0DDD8 !important;
  margin-bottom: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.template-cart h1 {
  font-family: 'new-spirit-condensed', serif !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  letter-spacing: -0.5px !important;
}

.template-cart .underlined-link {
  font-family: 'menco', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #FB48C4 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #FB48C4 !important;
  padding-bottom: 2px !important;
  transition: color 0.3s ease, border-color 0.3s ease !important;
}
.template-cart .underlined-link:hover {
  color: #FB48C4 !important;
  border-color: #FB48C4 !important;
}

/* Cart table */
.template-cart .cart-items {
  border-collapse: collapse !important;
  width: 100% !important;
}

.template-cart .cart-items th {
  font-family: 'menco', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #7A7072 !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid #E0DDD8 !important;
}

.template-cart .cart-items td {
  font-family: 'menco', sans-serif !important;
  padding: 24px 12px !important;
  border-bottom: 1px solid #F0EDE8 !important;
  vertical-align: middle !important;
}

.template-cart .cart-item__image-container {
  border-radius: 12px !important;
  overflow: hidden !important;
}

.template-cart .cart-item__image {
  border-radius: 12px !important;
}

.template-cart .cart-item__name {
  font-family: 'menco', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #2C2627 !important;
  text-decoration: none !important;
}
.template-cart .cart-item__name:hover {
  color: #FB48C4 !important;
}

.template-cart .price,
.template-cart .cart-item__price {
  font-family: 'menco', sans-serif !important;
  font-weight: 700 !important;
  color: #2C2627 !important;
}

.template-cart quantity-input input {
  font-family: 'menco', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
  border: none !important;
  text-align: center !important;
}

.template-cart .cart__footer {
  padding: 32px 0 48px !important;
}

.template-cart .totals {
  font-family: 'menco', sans-serif !important;
}

.template-cart .totals__subtotal {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #7A7072 !important;
}

.template-cart .totals__subtotal-value {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #2C2627 !important;
}

.template-cart .tax-note {
  font-size: 12px !important;
  color: #999 !important;
}

.template-cart .cart__note .text-area {
  border-radius: 8px !important;
  border: 1.5px solid #E0DDD8 !important;
  font-family: 'menco', sans-serif !important;
  resize: vertical !important;
}
.template-cart .cart__note .text-area:focus {
  border-color: #FB48C4 !important;
  box-shadow: 0 0 0 3px rgba(44, 38, 39, 0.08) !important;
}

.template-cart .cart__checkout-button {
  width: 100% !important;
  padding: 20px 40px !important;
  font-size: 13px !important;
  letter-spacing: 3px !important;
  border-radius: 30px !important;
  border: none !important;
  background: #FB48C4 !important;
  color: white !important;
}
.template-cart .cart__checkout-button:hover {
  background: #F46ED9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(44, 38, 39, 0.18) !important;
}

/* All cart buttons — clean pill shape, no borders */
.template-cart .button,
.template-cart button,
.template-cart a.button,
.template-cart .shopify-payment-button button,
.template-cart .shopify-payment-button__button,
.template-cart .cart__dynamic-checkout-buttons button,
.template-cart [role="button"] {
  border-radius: 30px !important;
  border: none !important;
  font-family: 'menco', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

/* Dynamic checkout (Shop Pay, Apple Pay) — pill shape */
.template-cart .shopify-payment-button__button {
  border-radius: 30px !important;
  overflow: hidden !important;
}
.template-cart .cart__dynamic-checkout-buttons {
  border-radius: 30px !important;
  overflow: hidden !important;
}

/* Quantity selector — refined */
.template-cart quantity-input {
  border-radius: 30px !important;
  border: 1.5px solid #E0DDD8 !important;
  overflow: hidden !important;
}
.template-cart quantity-input button {
  border: none !important;
  background: transparent !important;
  color: #2C2627 !important;
  padding: 8px 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border-radius: 0 !important;
}
.template-cart quantity-input button:hover {
  background: #FDDCF5 !important;
  color: #FB48C4 !important;
  transform: none !important;
  box-shadow: none !important;
}

.template-cart .cart__empty-text {
  font-family: 'gelica', serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  font-style: italic !important;
  color: #F46ED9 !important;
  margin-bottom: 20px !important;
}

.template-cart .cart__warnings .button {
  margin-top: 12px !important;
  background: #FB48C4 !important;
  color: white !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 18px 48px !important;
}

.template-cart .cart__warnings .button:hover {
  background: #F46ED9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(44, 38, 39, 0.18) !important;
}

/* "Have an account?" login prompt */
.template-cart .cart__login-title {
  font-family: 'gelica', serif !important;
  font-weight: 700 !important;
  font-style: italic !important;
  color: #2C2627 !important;
  font-size: 20px !important;
}

.template-cart .cart__login-paragraph a {
  color: #FB48C4 !important;
  font-weight: 600 !important;
}

.template-cart .cart__login-paragraph {
  color: #7A7072 !important;
  font-family: 'menco', sans-serif !important;
  font-size: 14px !important;
}

.template-cart .discounts__discount {
  font-family: 'menco', sans-serif !important;
  font-size: 12px !important;
  color: #FB48C4 !important;
}

.template-cart cart-remove-button a,
.template-cart .cart-item__remove {
  font-family: 'menco', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  transition: color 0.3s ease !important;
}
.template-cart cart-remove-button a:hover,
.template-cart .cart-item__remove:hover {
  color: #FB48C4 !important;
}

/* ═══════════════════════════════════════════
   COLLECTION PAGES — EDITORIAL SHOPPING
   ═══════════════════════════════════════════ */

.template-collection {
  background: #FEFBF3 !important;
}

.template-collection h1 {
  font-family: 'new-spirit-condensed', serif !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  letter-spacing: -0.5px !important;
  text-align: center !important;
  padding: 48px 0 16px !important;
}

.template-collection .collection-hero__description {
  font-family: 'menco', sans-serif !important;
  font-size: 15px !important;
  color: #7A7072 !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto 40px !important;
  line-height: 1.7 !important;
}

.template-collection .card-wrapper,
.shopify-section .card-wrapper {
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease !important;
}
.template-collection .card-wrapper:hover,
.shopify-section .card-wrapper:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(44, 38, 39, 0.06) !important;
}

.template-collection .card__heading a,
.shopify-section .card__heading a {
  font-family: 'menco', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #2C2627 !important;
  text-decoration: none !important;
}

.template-collection .price-item,
.shopify-section .price-item {
  font-family: 'menco', sans-serif !important;
  font-weight: 700 !important;
  color: #2C2627 !important;
}

.template-collection .facets__heading,
.facets__heading {
  font-family: 'menco', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

.template-collection .facet-checkbox__text {
  font-family: 'menco', sans-serif !important;
}

.template-collection .facet-filters__sort select,
.facet-filters__sort select {
  font-family: 'menco', sans-serif !important;
  border-radius: 8px !important;
  border: 1.5px solid #E0DDD8 !important;
}

/* ═══════════════════════════════════════════
   SEARCH PAGE — ELEGANT DISCOVERY
   ═══════════════════════════════════════════ */

.template-search {
  background: #FEFBF3 !important;
}

.template-search h1 {
  font-family: 'new-spirit-condensed', serif !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  text-align: center !important;
}

.template-search .search__input,
.search-modal .search__input {
  font-family: 'menco', sans-serif !important;
  font-size: 16px !important;
  border: 1.5px solid #E0DDD8 !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  background: white !important;
}
.template-search .search__input:focus,
.search-modal .search__input:focus {
  border-color: #FB48C4 !important;
  box-shadow: 0 0 0 3px rgba(44, 38, 39, 0.08) !important;
}

.template-search .search__button,
.search-modal .search__button {
  color: #FB48C4 !important;
}

.predictive-search {
  border-radius: 12px !important;
  border: 1px solid #E0DDD8 !important;
  box-shadow: 0 16px 48px rgba(44, 38, 39, 0.06) !important;
  font-family: 'menco', sans-serif !important;
}

/* ═══════════════════════════════════════════
   404 PAGE — BRANDED & HELPFUL
   ═══════════════════════════════════════════ */

.template-404 {
  background: #FEFBF3 !important;
}

.template-404 .page-margin {
  padding: 100px 48px !important;
}

.template-404 h1.title {
  font-family: 'new-spirit-condensed', serif !important;
  font-size: 48px !important;
  font-weight: 600 !important;
  color: #5BC2E7 !important;
  margin-bottom: 16px !important;
}

.template-404 p {
  font-family: 'menco', sans-serif !important;
  font-size: 16px !important;
  color: #7A7072 !important;
  margin-bottom: 32px !important;
}

.template-404 .button {
  margin-top: 8px !important;
}

/* ═══════════════════════════════════════════
   CUSTOMER PAGES (LOGIN, REGISTER, ACCOUNT, ORDERS)
   ═══════════════════════════════════════════ */

.template-customers-login,
.template-customers-register,
.template-customers-account,
.template-customers-order,
.template-customers-addresses,
.template-customers-reset-password {
  background: #FEFBF3 !important;
}

.customer.login,
.customer.register,
.customer.account,
.customer.order {
  max-width: 560px !important;
  margin: 0 auto !important;
  padding: 60px 48px 80px !important;
}

.customer.account {
  max-width: 1000px !important;
}

.customer h1 {
  font-family: 'new-spirit-condensed', serif !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin-bottom: 8px !important;
}

.customer h2 {
  font-family: 'gelica', serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.customer a:not(.button) {
  color: #FB48C4 !important;
  font-family: 'menco', sans-serif !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
.customer a:not(.button):hover {
  color: #F46ED9 !important;
  text-decoration: underline !important;
}

.customer .button {
  width: 100% !important;
  margin-top: 16px !important;
}

.customer .form__message {
  font-family: 'menco', sans-serif !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
}

.customer .order-history {
  width: 100% !important;
  border-collapse: collapse !important;
}

.customer .order-history th {
  font-family: 'menco', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #7A7072 !important;
  padding: 0 12px 16px !important;
  border-bottom: 1px solid #E0DDD8 !important;
  text-align: left !important;
}

.customer .order-history td {
  font-family: 'menco', sans-serif !important;
  padding: 20px 12px !important;
  border-bottom: 1px solid #F0EDE8 !important;
  font-size: 14px !important;
}

.customer .order-history td a {
  font-weight: 700 !important;
}

.customer.order h1 {
  text-align: left !important;
}

.customer.account > div:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 32px !important;
  border-bottom: 1px solid #E0DDD8 !important;
  margin-bottom: 32px !important;
}

.customer.account > div:first-child a {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.customer.account > div:first-child svg {
  width: 16px !important;
  height: 16px !important;
}

.customer.addresses .button {
  width: auto !important;
}

/* ═══════════════════════════════════════════
   CART DRAWER — PREMIUM SLIDE-OUT
   ═══════════════════════════════════════════ */

.cart-drawer {
  font-family: 'menco', sans-serif !important;
}

.cart-drawer__overlay {
  background: rgba(44, 38, 39, 0.2) !important;
}

drawer-cart .drawer {
  border-radius: 16px 0 0 16px !important;
  box-shadow: -20px 0 60px rgba(44, 38, 39, 0.1) !important;
}

.cart-drawer h2 {
  font-family: 'gelica', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.cart-notification {
  font-family: 'menco', sans-serif !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(44, 38, 39, 0.1) !important;
}

/* ═══════════════════════════════════════════
   FEATURED COLLECTION SECTION (all pages)
   ═══════════════════════════════════════════ */

.shopify-section .collection .page-width,
.shopify-section--featured-collection .page-width,
section.shopify-section .page-width:not(.cg-section .page-width) {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 767px) {
  .shopify-section .collection .page-width,
  .shopify-section--featured-collection .page-width,
  section.shopify-section .page-width:not(.cg-section .page-width) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.shopify-section--featured-collection h2,
.section-header h2 {
  font-family: 'gelica', serif !important;
  font-size: 28px !important;
  color: #5BC2E7 !important;
  font-style: italic !important;
}

.shopify-section .collection-list,
.shopify-section .product-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 767px) {
  .shopify-section .collection-list,
  .shopify-section .product-grid {
    padding: 0 20px !important;
  }
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE REFINEMENTS
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
  .template-cart .title-wrapper-with-link {
    padding: 32px 0 20px !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .template-cart h1 {
    font-size: 28px !important;
  }

  .template-collection h1 {
    font-size: 28px !important;
    padding: 32px 0 12px !important;
  }

  .template-search h1 {
    font-size: 28px !important;
  }

  .template-404 .page-margin {
    padding: 60px 20px !important;
  }

  .template-404 h1.title {
    font-size: 36px !important;
  }

  .customer.login,
  .customer.register,
  .customer.account,
  .customer.order {
    padding: 40px 20px 60px !important;
  }

  .customer h1 {
    font-size: 26px !important;
  }

  .customer .order-history {
    font-size: 13px !important;
  }
}

/* ═══════════════════════════════════════════
   SELECTION & SCROLLBAR STYLING
   ═══════════════════════════════════════════ */

::selection {
  background: rgba(251, 72, 196, 0.15);
  color: #2C2627;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #FEFBF3;
}
::-webkit-scrollbar-thumb {
  background: #FDDCF5;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FB48C4;
}

/* ═══════════════════════════════════════════
   SHOPIFY PAYMENT BUTTONS (Apple Pay, etc.)
   ═══════════════════════════════════════════ */

.shopify-payment-button {
  margin-top: 12px !important;
}

.shopify-payment-button button {
  border-radius: 30px !important;
  border: none !important;
}

.shopify-payment-button__more-options {
  font-family: 'menco', sans-serif !important;
  font-size: 12px !important;
  color: #7A7072 !important;
}

/* ═══════════════════════════════════════════
   LOADING / SPINNER → BRIGHT PINK
   ═══════════════════════════════════════════ */

.loading__spinner circle {
  stroke: #FB48C4 !important;
}

/* ═══════════════════════════════════════════
   BUTTON TEXT COLOR SAFETY NET
   ═══════════════════════════════════════════ */

[class*="cg-"] a[class*="btn-dark"],
[class*="cg-"] a[class*="btn-pink"],
[class*="cg-"] a[class*="button"],
.cg-home a.btn-dark,
.cg-home a.btn-pink,
a.cg-howto-button,
a.cg-find-btn,
a.cg-ship-btn,
a.cg-btn-trial {
  color: white !important;
  text-decoration: none !important;
}
[class*="cg-"] a[class*="btn-dark"]:hover,
[class*="cg-"] a[class*="btn-pink"]:hover,
[class*="cg-"] a[class*="button"]:hover,
.cg-home a.btn-dark:hover,
.cg-home a.btn-pink:hover,
a.cg-howto-button:hover,
a.cg-find-btn:hover,
a.cg-ship-btn:hover,
a.cg-btn-trial:hover {
  color: white !important;
  text-decoration: none !important;
}

/* Outline buttons: blue text base, white on hover */
.cg-home a.btn-outline {
  color: #5BC2E7 !important;
  text-decoration: none !important;
}
.cg-home a.btn-outline:hover {
  background: #5BC2E7 !important;
  color: white !important;
}

/* White outline buttons: white text base, blue bg on hover */
.cg-home a.btn-outline-white {
  color: white !important;
  text-decoration: none !important;
}
.cg-home a.btn-outline-white:hover {
  background: white !important;
  color: #5BC2E7 !important;
}

/* ═══════════════════════════════════════════════════════
   SIMON'S FEEDBACK FIXES — 2026-03-30
   ═══════════════════════════════════════════════════════ */

/* ── FIX 1: Cream background on ALL pages ── */
/* Ensures every page has the #FEFBF3 warm white, not Dawn's default white */
body,
.shopify-section,
#MainContent,
main,
.main-content,
.template-page,
.template-product,
.template-collection,
.template-list-collections,
.template-cart,
.template-search,
.template-blog,
.template-article,
.template-customers-login,
.template-customers-account,
.template-customers-order,
.template-customers-addresses,
.template-customers-register,
.template-customers-reset-password,
.template-404,
.template-gift_card {
  background-color: #FEFBF3 !important;
}

/* Dawn color scheme backgrounds → cream */
.color-background-1,
.color-background-2,
[class*="color-"] {
  --color-background: 254, 251, 243 !important;
}

/* ── FIX 2: Dropshadow overflow clipping ── */
/* Allow hover shadows to render outside parent sections */
.cg-worlds,
.cg-worlds-section,
.cg-toys-grid,
.cg-toys-section,
.cg-featured,
.section-template--*,
.shopify-section:has(.cg-world),
.shopify-section:has(.cg-toy-card) {
  overflow: visible !important;
}

/* Fix: editorial section clips hover shadows on desktop */
.editorial {
  overflow: visible !important;
}

/* Ensure CG world cards show full shadow on hover */
.cg-world {
  overflow: visible;
}
.cg-world .cg-world-img {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

/* Product showcase benefits — allow left border accent on hover */
.product-showcase {
  overflow: visible !important;
}
.showcase-benefits {
  overflow: visible !important;
}

/* ── FIX 3: Social share / OG image ── */
/* Handled in meta-tags.liquid — Magic_Foam_Social.png fallback */
