/*
Theme Name: Mimi's Astra Child
Template: astra
Version: 1.0.0
*/

/* =========================================================
   1) Design Tokens
   ========================================================= */
:root {
  --mimi-cream: #fff8f8;
  --mimi-rose-50: #f7e6e8;
  --mimi-rose-200: #ebb8c0;
  --mimi-rose-400: #d78494;
  --mimi-rose-500: #c96f81;
  --mimi-rose-600: #b75a6f;
  --mimi-wine: #7d4b57;
  --mimi-ink: #3c3034;
  --mimi-card: #fffdfd;
  --mimi-border: #e8d5d9;
  --mimi-shadow: 0 10px 24px rgba(114, 61, 73, 0.12);
  --mimi-radius: 16px;
  --mimi-header-floral-left: url("/wp-content/uploads/2026/03/header-left.png");
  --mimi-header-floral-right: url("/wp-content/uploads/2026/03/header-right.png");
  --mimi-header-corner-width: 40vw;
  --mimi-header-corner-max-width: 600px;
  --mimi-header-corner-height: 360px;
  --mimi-header-overlay-opacity: 0.88;
}

/* =========================================================
   2) Base Styles
   ========================================================= */
body {
  background:
    radial-gradient(circle at 8% 16%, rgba(240, 178, 189, 0.18), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(234, 182, 194, 0.2), transparent 30%),
    linear-gradient(180deg, #fff5f7 0%, #fff9fa 100%);
  color: var(--mimi-ink);
  font-family: "Playfair Display", serif;
}

p,
li {
  color: #67545a;
}

h1,
h2,
h3,
h4 {
  color: #523942;
  font-family: "Playfair Display", serif;
}

a {
  color: var(--mimi-rose-600);
}

a:hover {
  color: #9a4f61;
}

.ast-container,
.site-content .ast-container {
  padding-top: 20px;
  padding-bottom: 48px;
}

/* =========================================================
   3) Header and Navigation
   ========================================================= */
.site-header {
  position: relative;
  z-index: 30;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 247, 248, 0.92), rgba(255, 247, 248, 0.72)) !important;
  border-bottom: 1px solid #eddde0;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(var(--mimi-header-corner-width), var(--mimi-header-corner-max-width));
  height: var(--mimi-header-corner-height);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: var(--mimi-header-overlay-opacity);
  pointer-events: none;
  z-index: 0;
}

.site-header::before {
  left: 0;
  background-image: var(--mimi-header-floral-left);
  background-position: left top;
}

.site-header::after {
  right: 0;
  background-image: var(--mimi-header-floral-right);
  background-position: right top;
}

.site-header .main-header-container,
.site-header .main-header-bar-wrap,
.site-header .main-header-bar {
  position: relative;
  z-index: 1;
}

.site-header .main-header-bar {
  border-top: 8px solid #f1d5da;
  border-bottom: 1px solid #ead7dc;
  background: linear-gradient(180deg, rgba(255, 251, 251, 0.9), rgba(250, 237, 240, 0.58));
}

.site-title a,
.ast-site-title-wrap .site-title a {
  font-family: "Great Vibes", cursive !important;
  color: var(--mimi-rose-600) !important;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.6px;
}

.ast-builder-menu-1 .menu-item > .menu-link {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: #6b5058;
  border-radius: 999px;
  padding: 8px 14px !important;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ast-builder-menu-1 .menu-item > .menu-link:hover {
  background: rgba(217, 138, 155, 0.16);
  color: #8f4c5d !important;
  box-shadow: 0 6px 14px rgba(143, 76, 93, 0.14);
  transform: translateY(-1px);
}

.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link,
.ast-builder-menu-1 .menu-item.current_page_item > .menu-link {
  background: linear-gradient(180deg, #e8b2be, #d98a9b);
  color: #fff !important;
  box-shadow: 0 8px 16px rgba(138, 72, 88, 0.22);
}

/* =========================================================
   4) Homepage Layout and Sections
   ========================================================= */
.mimi-home {
  max-width: 1200px;
  margin: 0 auto;
}

.mimi-panel {
  background: var(--mimi-card);
  border: 1px solid var(--mimi-border);
  border-radius: var(--mimi-radius);
  box-shadow: var(--mimi-shadow);
}

.mimi-page-intro {
  margin-bottom: 20px;
  padding: 24px 30px;
  background: linear-gradient(180deg, #fffafb 0%, #fff2f5 100%);
}

.mimi-page-intro h1 {
  margin: 0 0 6px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.04;
  color: #6c3f4a;
}

.mimi-page-intro p {
  margin: 0;
  color: #7a5c64;
  font-size: 18px;
}

.mimi-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 42px 30px;
  background: linear-gradient(180deg, #fffafb 0%, #fff3f5 100%);
}

.mimi-hero::before,
.mimi-hero::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(54vw, 630px);
  height: 375px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.52;
  z-index: 0;
}

.mimi-hero::before {
  left: 0;
  background-image: var(--mimi-header-floral-left);
  background-position: left top;
}

.mimi-hero::after {
  right: 0;
  background-image: var(--mimi-header-floral-right);
  background-position: right top;
}

.mimi-hero > * {
  position: relative;
  z-index: 1;
}

.mimi-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.02;
  color: #6c3f4a;
}

.mimi-script {
  font-family: "Great Vibes", cursive;
  color: var(--mimi-rose-500);
}

.mimi-subtitle {
  font-size: 21px;
  color: #7b6169;
  margin-bottom: 22px;
}

.mimi-hero-image img {
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 4px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #f7dbe1 0%, #d98a9b 50%, #f7dbe1 100%) border-box;
  box-shadow: 0 14px 28px rgba(102, 56, 67, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.mimi-hero-image img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 36px rgba(102, 56, 67, 0.24);
  filter: saturate(1.04);
}

.mimi-ribbon-btn .wp-block-button__link,
.mimi-soft-btn .wp-block-button__link,
.ast-button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: linear-gradient(180deg, #d88795, #ba6072) !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: "Playfair Display", serif;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  text-transform: none !important;
  box-shadow: 0 8px 18px rgba(165, 79, 95, 0.24);
  padding: 11px 22px !important;
}

.mimi-ribbon-btn .wp-block-button__link:hover,
.mimi-soft-btn .wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.mimi-category-grid {
  margin-top: 22px;
  gap: 20px;
}

.mimi-category-card {
  overflow: hidden;
  padding: 8px;
}

.mimi-category-card .wp-block-cover {
  border-radius: 12px;
  overflow: hidden;
  min-height: 210px;
}

.mimi-category-card .wp-block-cover::after {
  opacity: 0.25;
}

.mimi-category-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 8px rgba(62, 24, 34, 0.35);
}

.mimi-category-card .wp-block-button__link {
  background: rgba(201, 111, 129, 0.92) !important;
  box-shadow: 0 6px 14px rgba(57, 16, 26, 0.28);
}

.mimi-featured-products {
  margin-top: 26px;
  padding: 20px 20px 26px;
}

.mimi-feature-head {
  margin-bottom: 8px;
}

.mimi-feature-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.mimi-featured-products .products {
  margin-top: 10px !important;
}

.mimi-featured-products .products li.product {
  background: #fff;
  border: 1px solid #e6d4d9;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(84, 35, 47, 0.09);
  overflow: hidden;
  padding: 10px !important;
}

.mimi-featured-products .products li.product img {
  border-radius: 9px;
}

.mimi-featured-products .products li.product .woocommerce-loop-product__title {
  font-size: 18px !important;
  color: #4d343d !important;
  margin-top: 10px !important;
}

.mimi-featured-products .products li.product .price {
  color: #7a4d58 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}

.mimi-preowned-banner {
  margin-top: 26px;
  overflow: hidden;
  padding: 20px 28px;
  background:
    linear-gradient(90deg, rgba(255, 245, 247, 0.98) 0%, rgba(255, 245, 247, 0.8) 54%, rgba(255, 240, 244, 0.28) 100%),
    url("/wp-content/uploads/2026/03/purses.png") center right / cover no-repeat;
}

.mimi-preowned-banner h2 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: "Great Vibes", cursive;
  color: #9a5767;
  font-size: clamp(38px, 5vw, 56px);
}

.mimi-preowned-banner p {
  color: #7b5d65;
  font-size: 18px;
}

.mimi-reviews {
  margin-top: 26px;
  padding: 26px;
  background: linear-gradient(180deg, #fff9fa, #fff3f5);
}

/* Hide placeholder homepage reviews until real customer content is ready. */
.home .mimi-reviews {
  display: none !important;
}

.mimi-reviews h2 {
  text-align: center;
  font-family: "Great Vibes", cursive;
  color: #9a5564;
  font-size: clamp(42px, 5vw, 58px);
  margin-bottom: 0;
}

.mimi-reviews .mimi-reviews-subtitle {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 20px;
  color: #71535c;
}

.mimi-review-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #e9d9dd;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 16px rgba(95, 44, 56, 0.08);
}

.mimi-review-card p {
  margin: 0;
  color: #664f55;
}

.mimi-review-name {
  margin-top: 10px !important;
  font-weight: 700;
  color: #80505c !important;
}

/* =========================================================
   5) WooCommerce Global
   ========================================================= */
.woocommerce .woocommerce-breadcrumb {
  color: #85616d;
}

.woocommerce span.onsale {
  background: var(--mimi-rose-600) !important;
  border-radius: 999px !important;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  background: #fff;
  border: 1px solid #e8d8dc;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(98, 46, 58, 0.1);
}

/* =========================================================
   6) WooCommerce Cart Controls
   ========================================================= */
.wc-block-cart-item__quantity {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap;
}

.wc-block-components-quantity-selector {
  display: inline-flex;
  align-items: center;
  height: 40px;
  border: 1px solid #e6cfd4 !important;
  border-radius: 999px !important;
  background: #fff8fa;
  overflow: visible;
  margin: 0 !important;
  flex: 0 0 auto;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0 !important;
  border: 0 !important;
  background: linear-gradient(180deg, #d88795, #ba6072) !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 40px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--minus {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--plus {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  filter: brightness(1.05);
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
  width: 44px !important;
  min-width: 44px !important;
  border: 0 !important;
  background: transparent !important;
  color: #7a4d58 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.wc-block-cart-item__remove-link,
.wc-block-cart-item__remove-link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 34px;
  height: 34px;
  margin: 0 !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  border-radius: 999px;
  background: #f2c8d1;
  color: #9f4c5e !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
}

.wc-block-cart-item__remove-link:hover {
  background: #e9afbb;
  color: #8f4052 !important;
}

.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  width: auto !important;
  min-width: 124px !important;
}

.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-components-quantity-selector__button {
  min-width: 40px !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
}

.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  line-height: 0 !important;
}

.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link svg {
  width: 14px !important;
  height: 14px !important;
}

.wc-block-cart .wc-block-components-button,
.wc-block-checkout .wc-block-components-button {
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #d88795, #ba6072) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(165, 79, 95, 0.24);
  font-family: "Playfair Display", serif;
  font-weight: 600 !important;
  text-transform: none !important;
}

.wc-block-cart .wc-block-components-button:hover,
.wc-block-checkout .wc-block-components-button:hover {
  filter: brightness(1.04);
}

/* =========================================================
   7) WooCommerce Checkout Form
   ========================================================= */
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #ead7dc;
  border-radius: 12px;
  padding: 14px;
}

.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkout-step .wc-block-components-title,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkout-step h2,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkout-step h3 {
  color: #734854;
  font-family: "Playfair Display", serif;
}

.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-text-input.is-active input,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-select select,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-blocks-components-select__select,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-address-form input,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-address-form select,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-combobox-control input,
.wp-block-woocommerce-checkout .wc-block-components-main textarea {
  border: 1px solid #dfc2ca !important;
  border-radius: 10px !important;
  background: #fffafb !important;
  color: #6d4f59 !important;
  min-height: 44px;
  box-shadow: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-select label,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-checkbox label {
  color: #7b5a64 !important;
  font-weight: 600;
}

.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-text-input input:focus,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-block-components-select select:focus,
.wp-block-woocommerce-checkout .wc-block-components-main .wc-blocks-components-select__select:focus,
.wp-block-woocommerce-checkout .wc-block-components-main textarea:focus {
  border-color: #ca7b8c !important;
  box-shadow: 0 0 0 2px rgba(202, 123, 140, 0.16) !important;
  outline: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-notice-banner {
  border-radius: 10px;
  border-width: 1px !important;
}

.wp-block-woocommerce-checkout .wc-block-components-notice-banner.is-error {
  background: #fff3f5;
  border-color: #e4a0af !important;
  color: #915160;
}

/* Keep order summary close to Woo default appearance. */
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary-item,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-item,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-coupon,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel__content,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel__button {
  border-color: transparent !important;
  box-shadow: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-select select,
.wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-blocks-components-select__select {
  border-radius: 4px !important;
  background: #fff !important;
  min-height: 36px;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
  min-height: 44px;
  font-size: 17px !important;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  color: #9a5d6d !important;
}

/* =========================================================
   8) Contact Form 7
   ========================================================= */
.wpcf7 form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #ead7dc;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(98, 46, 58, 0.08);
  padding: 18px;
}

.wpcf7 p {
  margin: 0 0 12px;
}

.wpcf7 label {
  display: block;
  color: #734854;
  font-weight: 600;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
  width: 100%;
  border: 1px solid #dfc2ca;
  border-radius: 10px;
  background: #fffafb;
  color: #6d4f59;
  min-height: 44px;
  padding: 10px 12px;
  box-shadow: none;
}

.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #ca7b8c;
  box-shadow: 0 0 0 2px rgba(202, 123, 140, 0.16);
  outline: none;
}

.wpcf7 .wpcf7-submit {
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #d88795, #ba6072) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(165, 79, 95, 0.24);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 22px;
}

.wpcf7 .wpcf7-submit:hover {
  filter: brightness(1.04);
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #b54b62;
  font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 10px 12px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #b8dcc3;
  background: #f4fff8;
  color: #3f6d4f;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid #e4a0af;
  background: #fff3f5;
  color: #915160;
}

.mimi-cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mimi-cf7-col-full {
  grid-column: 1 / -1;
}

/* =========================================================
   9) Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid #ebdce0;
  background: linear-gradient(0deg, rgba(252, 238, 241, 0.95), rgba(255, 247, 248, 0.94));
}

/* =========================================================
   10) Responsive
   ========================================================= */
@media (max-width: 921px) {
  .site-header::before,
  .site-header::after {
    width: min(46vw, 430px);
    height: 300px;
  }

  .mimi-page-intro {
    padding: 20px 22px;
  }

  .mimi-page-intro p {
    font-size: 17px;
  }

  .mimi-hero::before,
  .mimi-hero::after {
    width: min(66vw, 480px);
    height: 270px;
    opacity: 0.46;
  }

  .site-title a,
  .ast-site-title-wrap .site-title a {
    font-size: 44px;
  }

  .mimi-hero {
    padding: 28px 20px 20px;
  }

  .mimi-hero-image {
    margin-top: 18px;
  }

  .mimi-featured-products {
    padding: 16px;
  }

  .mimi-reviews {
    padding: 18px;
  }

  .mimi-cf7-grid {
    grid-template-columns: 1fr;
  }

  .ast-header-break-point .main-header-menu,
  .ast-header-break-point .main-header-menu .sub-menu {
    background: linear-gradient(180deg, #fff8fa 0%, #fff0f3 100%) !important;
  }

  .ast-header-break-point .main-navigation ul .menu-item .menu-link {
    border: 0 !important;
    margin: 6px 12px;
    padding: 12px 16px !important;
    border-radius: 14px;
    color: #6b5058 !important;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 6px 14px rgba(143, 76, 93, 0.1);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .ast-header-break-point .main-navigation ul .menu-item .menu-link:hover {
    background: rgba(217, 138, 155, 0.2);
    color: #8f4c5d !important;
    transform: translateY(-1px);
  }

  .ast-header-break-point .main-navigation ul .menu-item.current-menu-item > .menu-link,
  .ast-header-break-point .main-navigation ul .menu-item.current_page_item > .menu-link {
    background: linear-gradient(180deg, #e8b2be, #d98a9b);
    color: #fff !important;
  }

  .ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link {
    padding-left: 26px !important;
    font-size: 14px;
  }

  .ast-button-wrap .menu-toggle.main-header-menu-toggle {
    border-radius: 999px !important;
    padding: 8px 12px !important;
    background: rgba(255, 248, 250, 0.9) !important;
    box-shadow: 0 6px 14px rgba(143, 76, 93, 0.14);
  }
}


@media (max-width: 544px) {
  .site-header::before,
  .site-header::after {
    width: min(52vw, 320px);
    height: 220px;
  }

  .mimi-page-intro {
    padding: 16px 16px 14px;
  }

  .mimi-page-intro h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .mimi-page-intro p {
    font-size: 16px;
  }

  .mimi-hero::before,
  .mimi-hero::after {
    width: min(69vw, 315px);
    height: 195px;
    opacity: 0.42;
  }

  .site-title a,
  .ast-site-title-wrap .site-title a {
    font-size: 36px;
  }

  .mimi-hero h1 {
    font-size: 42px;
  }

  .mimi-subtitle {
    font-size: 18px;
  }
}
