/* ============================================================
   MMD — Your Discount colour override (force brand pink)
   ============================================================ */
.mmd-mini-cart-savings,
.mmd-mini-cart-savings__label,
.mmd-mini-cart-savings__amount,
.mmd-your-discount-row th,
.mmd-your-discount-row td,
.mmd-savings-amount {
    color: #b92d5e !important;
}

/* ============================================================
   MINI-CART — hide quantity prefix "1 ×"
   ============================================================ */
.widget_shopping_cart .quantity,
.woocommerce-mini-cart .quantity {
    display: none !important;
}

/* ============================================================
   MINI-CART — compact item spacing
   ============================================================ */
.woocommerce-mini-cart__item.mini_cart_item {
    padding: 8px 0 !important;
}
.widget_shopping_cart .woocommerce-mini-cart__item + .woocommerce-mini-cart__item {
    border-top: 1px solid #f5f5f5;
}
.woocommerce-mini-cart__item img {
    width: 44px !important;
    margin-right: 10px !important;
}
.widget_shopping_cart .mini-cart-item-details,
.woocommerce-mini-cart__item > a + * {
    line-height: 1.3;
}
.woocommerce-mini-cart__item .remove_from_cart_button {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* ============================================================
   MY CHILDREN — account page  (card view + inline add form)
   ============================================================ */
.mommy-children-page { max-width: 700px; }

.mommy-children-title { font-size: 1.4rem; margin-bottom: 6px; }
.mommy-children-desc  { color: #888; font-size: 0.875rem; margin-bottom: 28px; line-height: 1.6; }

/* ── Cards grid ──────────────────────────────────────────────── */
.mommy-children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.mommy-children-grid.is-empty { display: none; margin-bottom: 0; }

.mommy-child-card {
    position: relative;
    background: #fff;
    border: 1px solid #f0e6ea;
    border-radius: 18px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.mommy-child-card:hover {
    box-shadow: 0 6px 20px rgba(185,45,94,0.10);
    transform: translateY(-2px);
}

/* Delete × button */
.mommy-child-delete {
    position: absolute;
    top: 10px; right: 12px;
    background: none; border: none;
    color: #ddd; cursor: pointer;
    font-size: 13px; line-height: 1;
    padding: 4px 6px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}
.mommy-child-delete:hover {
    background: #fff0f4;
    color: #b92d5e;
}

.mommy-child-card__emoji  { font-size: 3rem; display: block; margin-bottom: 12px; }
.mommy-child-card__name   { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; }

.mommy-child-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #999;
}
.mommy-gender-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.gender--boy  { background: #dbeafe; color: #1d4ed8; }
.gender--girl { background: #fce7f3; color: #be185d; }

/* ── Trigger button ──────────────────────────────────────────── */
.mommy-add-trigger {
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #b92d5e !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 24px;
    transition: opacity 0.15s;
}
.mommy-add-trigger:hover    { opacity: 0.7; }
.mommy-add-trigger.is-hidden { display: none; }

/* ── Add form ────────────────────────────────────────────────── */
.mommy-add-form-wrap.is-hidden { display: none; }

.mommy-add-form {
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 24px 24px 20px;
    max-width: 560px;
}
.mommy-add-form__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 18px;
    color: #1a1a1a;
}

.mommy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
.mommy-form-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aaa;
    margin-bottom: 6px;
}
.mommy-form-field input[type="text"],
.mommy-form-field input[type="date"] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.mommy-form-field input:focus {
    border-color: #b92d5e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(185,45,94,0.10);
}

/* Gender pills */
.mommy-gender-toggle { display: flex; gap: 8px; }
.mommy-gender-opt    { cursor: pointer; }
.mommy-gender-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.mommy-gender-opt span {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    background: #fff;
    transition: all 0.15s;
    user-select: none;
    white-space: nowrap;
}
.mommy-gender-opt input:checked + span { background: #b92d5e; border-color: #b92d5e; color: #fff; }
.mommy-gender-opt:hover span           { border-color: #b92d5e; }

/* Error */
.mommy-add-form__error { color: #b92d5e; font-size: 0.85rem; margin: -8px 0 12px; }

/* Form footer */
.mommy-add-form__footer { display: flex; align-items: center; gap: 16px; margin-top: 4px; }

.mommy-add-form__footer .button {
    background: #b92d5e !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 28px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.15s;
    box-shadow: none !important;
}
.mommy-add-form__footer .button:hover { background: #9e2450 !important; }

.mommy-cancel-btn {
    background: none; border: none;
    color: #aaa; font-size: 0.875rem;
    cursor: pointer; padding: 0;
    text-decoration: underline;
    transition: color 0.15s;
}
.mommy-cancel-btn:hover { color: #555; }

@media (max-width: 480px) {
    .mommy-children-grid { grid-template-columns: 1fr 1fr; }
    .mommy-form-row      { grid-template-columns: 1fr; }
}
/* ============================================================ */

/* ============================================================
   SEARCH AUTOCOMPLETE DROPDOWN
   ============================================================ */
/* Keyword autocomplete dropdown — appended to body, positioned via JS */
.mommy-suggest-box {
    position: fixed;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 2px solid #b92d5e;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
    z-index: 999999;
    display: none;
    max-height: 60vh;
    overflow-y: auto;
}
.mommy-suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: background 0.12s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mommy-suggest-item:hover,
.mommy-suggest-item.active {
    background: #fdf5f8;
    color: #b92d5e;
}
.mommy-suggest-item strong {
    font-weight: 600;
    color: inherit;
}
.mommy-suggest-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #bbb;
}
.mommy-suggest-item:hover .mommy-suggest-icon,
.mommy-suggest-item.active .mommy-suggest-icon {
    color: #b92d5e;
}
/* ============================================================ */

/* ============================================================
   SEARCH RESULTS — consistent with catalog, styled no-results
   ============================================================ */

/* Keep the product grid layout identical to the catalog */
.search-results .products,
.search-results ul.products {
    display: flex;
    flex-wrap: wrap;
}

/* "No results" block */
.mommy-no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 520px;
    margin: 0 auto;
}
.mommy-no-results p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.6;
}
.mommy-btn-catalog {
    display: inline-block;
    background-color: #b92d5e !important;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
}
.mommy-btn-catalog:hover {
    background-color: #9e2450 !important;
    color: #fff !important;
}

/* ============================================================ */

.handheld-only .handheld-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='butt' stroke-miterlimit='0' d='M4 7h22M4 15h22M4 23h23'/%3E%3C/svg%3E");
}

button.slick-prev.slick-arrow, button.slick-next.slick-arrow, .slick-dots {
    display: none!important;
}

.wpc-filters-widget-wrapper 
.wpc-term-selected .wpc-filter-link {
	color: #b92d5e !important;
	font-weight: 500;
}

.wpc-filters-widget-wrapper 
.wpc-term-selected input[type="checkbox"] {
	accent-color: #b92d5e;
}

.wpc-filters-widget-wrapper input[type="checkbox"] {
	accent-color: #b92d5e;
}

.wpc-filters-widget-wrapper input[type="checkbox"]:focus,
.wpc-filters-widget-wrapper input[type="checkbox"]:active {
	outline: none;
	box-shadow: none;
}

.grecaptcha-badge { 
visibility: hidden; 
}

/* Mobile logo: shift left to visually center between hamburger and cart icons */
@media (max-width: 767.98px) {
    .handheld-only .site-header__logo a {
        transform: translateX(-15px);
        display: inline-block;
    }
}

/* Mobile icon group: reset first icon, let siblings inherit parent spacing */
.handheld-only .header-icon:first-child {
    padding-left: 0 !important;
}

/* ── Header icons: uniform gap ───────────────────────────────────────────── */
.site-header--v2 .site-header__header-icons {
    gap: 4px;
}

/* Close gap between search column and icons column to match icon-to-icon spacing */
.site-header--v2 .site-header__header-icons.column {
    margin-left: -22px !important;
}

/* Each icon: fixed 40×40 hit area, badge anchors to its corner */
.site-header--v2 .site-header__header-icons .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 0;
}

/* Reset cart's hardcoded margin/padding */
.site-header--v2 .header-icon .header-cart-icon-dropdown {
    margin-right: 0;
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Center cart dropdown arrow under the cart icon */
.site-header--v2 .header-cart-dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}
.site-header--v2 .header-cart-dropdown-menu::after,
.site-header--v2 .header-cart-dropdown-menu::before {
    right: auto !important;
    left: 50% !important;
    margin-right: 0 !important;
    margin-left: -6px !important;
}

/* Reset account dropdown padding */
.site-header--v2 .mommy-account-icon .mommy-account-dropdown {
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.site-header--v2 .mommy-account-icon .mommy-account-dropdown .dropdown-menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-top: 2px solid #b92d5e;
}
.site-header--v2 .mommy-account-icon .mommy-account-dropdown .dropdown-menu::after,
.site-header--v2 .mommy-account-icon .mommy-account-dropdown .dropdown-menu::before {
    right: auto !important;
    left: 50% !important;
    margin-left: -8px !important;
}

/* Remove dropdown arrow next to account icon */
.mommy-account-dropdown.dropdown > a::after,
.mommy-account-dropdown.dropdown > a::before {
    display: none !important;
    content: none !important;
}

/* Sign in button — brand pink */
.mommy-account-icon .sign-in-button {
    display: inline-block;
    background-color: #b92d5e;
    color: #fff !important;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.mommy-account-icon .sign-in-button:hover {
    background-color: #9e2450;
    color: #fff !important;
}
.mommy-account-icon .sign-in-button:focus,
.mommy-account-icon .sign-in-button:focus-visible,
.mommy-account-icon .sign-in-button:active {
    outline: none !important;
    box-shadow: none !important;
    background-color: #9e2450 !important;
    color: #fff !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* All icon links: fill the 40px box and center their content */
.site-header--v2 .site-header__header-icons .header-icon-link,
.site-header--v2 .site-header__header-icons .header-cart-icon-dropdown > a,
.site-header--v2 .site-header__header-icons .header-icon .header-wishlist {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    color: inherit !important;
}

/* Uniform icon size */
.site-header--v2 .site-header__header-icons .header-icon i,
.site-header--v2 .site-header__header-icons .header-icon svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    line-height: 1;
}

/* Account icon: force regular (outline) weight */
.site-header--v2 .site-header__header-icons .mommy-account-icon i {
    font-weight: 400 !important;
}

/* Badges: identical size and pink color for both cart and wishlist */
.site-header--v2 .site-header__header-icons .count {
    width: 22px !important;
    height: 22px !important;
    font-size: 11px !important;
    line-height: 12px !important;
    top: 0px !important;
    right: -7px !important;
    left: auto !important;
    background-color: #b92d5e !important;
    color: #fff !important;
}

button.single_add_to_cart_button.button.alt.added {
    display: none !important;
}

.title-gbas {
  font-family: "Baloo", "Poppins", sans-serif;
}

.product__header {
    position: relative;
}

.yith-add-to-wishlist-button-block {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 1 !important;
}

.product__footer {
	position: static;
	display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

a.added_to_cart.wc-forward {
	width: 100%;
}

.single-product a.added_to_cart.wc-forward {
	margin-left: 20px;
  margin-right: 20px;
}

.product:hover .product__footer {
    transform: none !important;
    -webkit-transform: none !important;
    box-shadow: none !important;
}

.product__footer {
    transform: none !important;
    -webkit-transform: none !important;
    box-shadow: none !important;
}

.gift-item-checkbox-inline .gift-label {
	font-family: "Poppins", sans-serif !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: normal !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	color: #b92d5e !important;
}

.gift-item-checkbox-inline .gift-label-unchecked {
	color: #999 !important;
}

@media (max-width: 768px) {
    .product__footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 1199.98px) {
    .products li.product.product-type-variable form.variations_form {
        display: block !important;
    }
	
	td.product-quantity, td.product-subtotal {
    display: none !important;
}
	
}

.uneno-products-list-three-columns-block .list-view .product__footer {
    display: none !important;
}

div.wpforms-container-full .wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
    background: unset!important;
    border: 1px solid #b31963!important;
}

.product__body {
        padding: 15px 15px 0px!important;
    }

.product__inner,
.product__outer {
  min-height: 100%;
}

a.button.product_type_variable.add_to_cart_button {
	display: none!important;
}

td.product-price {
    display: none;
}

.payment_box.payment_method_WC_Ameria_Payment_Gateway_Pretty {
    display: none !important;
}

.elementor.elementor-1844 {
   min-width: 100%!important;
}

.product_meta > span {
    display: block;
    margin-bottom: 5px;
}

.product-sizes {
    margin-top: 5px;
    font-size: 13px;
    color: #555;
}

.product-sizes .sizes-label {
    font-weight: 600;
}

.product-sizes .sizes-values {
    color: #000;
}

.product__footer, 
.product__outer, 
.product__inner {
    overflow: hidden !important;
    box-sizing: border-box;
}

.variable-item.button-variable-item {
    flex: 0 0 auto !important;
}

.woo-variation-items-wrapper {
    width: 100% !important;
    max-width: 100%;
}

p.stock.in-stock {
	display: none;
}

.off-canvas-navigation {
	background-color: #fff;
}

.toggled .offcanvas-header-menu.header-menu li {
    clear: both;
    font-weight: 400;
    background-color: #fff;
    border: 0;
    display: -webkit-box;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.toggled .menu-item a {
	color: black;
}

.off-canvas-navigation ul li .dropdown-toggle::after, .off-canvas-navigation .yamm .yamm-content li .dropdown-toggle::after {
	color: black;
}



/* Product Size Slide Section */


.product__footer .quantity {
	margin-bottom: 0px!important;
	padding: 0px!important;
	display: none;
}

.wvs-swiper-wrapper {
    margin-top: 0;
}
.wvs-swiper-nav {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 0 18px;
}
.wvs-swiper-nav.no-nav {
    padding: 0;
}
.wvs-swiper {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 769px) {
    td.value.woo-variation-items-wrapper {
        max-width: 220px;
    }
}

/* Single product page — fill all available width */
.single-product td.value.woo-variation-items-wrapper {
    max-width: none !important;
    width: 100%;
}
.single-product .wvs-swiper-wrapper,
.single-product .wvs-swiper-nav {
    width: 100%;
}

.wvs-swiper .swiper-wrapper {
    display: flex;
}
.wvs-swiper .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wvs-swiper-button-prev,
.wvs-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    background: white;
    color: #b92d5e;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.wvs-swiper-button-prev {
    left: 0;
}
.wvs-swiper-button-next {
    right: 0;
}

/* .wvs-swiper-button-prev:hover,
.wvs-swiper-button-next:hover {
    background: 
#f5f5f5;
    border-color: #333;
} */

.wvs-swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.wvs-swiper-button-prev::before {
    content: '‹';
    font-size: 26px;
}
.wvs-swiper-button-next::before {
    content: '›';
    font-size: 26px;
}
.wvs-swiper-wrapper .variable-item.button-variable-item {
    padding: 0 8px!important;
	  height: 35px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
}
.wvs-swiper-wrapper .variable-item.button-variable-item:hover {
    border-color: #999;
    background: 
#f9f9f9;
    border-color: #000;
}
.wvs-swiper-wrapper .variable-item.button-variable-item.selected {
    border-color: #000;
}
.wvs-swiper-wrapper .variable-item-span-button {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
}
.wvs-swiper-wrapper .variable-item-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.woo-variation-items-wrapper {
    max-width: 70%;
}
@media (max-width: 480px) {
    .wvs-swiper-wrapper .variable-item.button-variable-item {

        height: 35px !important;
    }
    .wvs-swiper-button-prev,
    .wvs-swiper-button-next {
        width: 18px;
        height: 35px;
    }
}

.btn:focus, .btn.focus, input[type="submit"]:focus, input[type="submit"].focus, button:focus, button.focus, .button:focus, .button.focus, .add_to_cart_button:focus, .add_to_cart_button.focus, .added_to_cart:focus, .added_to_cart.focus, .product__footer .button:focus, .product__footer .button.focus, div.wpforms-container-full.contact-form .wpforms-form input[type=submit]:focus, div.wpforms-container-full.contact-form .wpforms-form input[type=submit].focus, div.wpforms-container-full.contact-form .wpforms-form button[type=submit]:focus, div.wpforms-container-full.contact-form .wpforms-form button[type=submit].focus, div.wpforms-container-full.contact-form .wpforms-form .wpforms-page-button:focus, div.wpforms-container-full.contact-form .wpforms-form .wpforms-page-button.focus {
    box-shadow: none;
}

span.variable-item-span.variable-item-span-button {
    text-transform: uppercase;
}

.variable-item.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.onsale.onsale-offer {
	 width: 55px;
   height: 55px;
   background: #b92d5e;
   color: #fff;
	 border: none;
	 font-size: 14px;
}

.product__header .onsale {
	top: 15px;
	left: 15px;
}

@media (max-width: 480px) {
	.swiper-wrapper {
     width: 80px;
	}
	
	.site-header--v1 .header-icon:last-child, .handheld-only .header-icon:last-child {
    position: relative;
    right: 8px;
}
}

.price del,
.price del .woocommerce-Price-amount {
    color: #9b9b9b !important;
    text-decoration: line-through !important;
    text-decoration-color: #9b9b9b !important;
}

.price ins,
.price ins .woocommerce-Price-amount {
    text-decoration: none !important;
}

.price {
        font-size: 16px;
    }

@media (max-width: 480px) {
	.product__header .onsale {
    top: 5px;
    left: 5px;
}
	.onsale.onsale-offer {
    width: 45px;
    height: 45px;
    font-size: 12.5px;
}
    .price del,
    .price ins {
        display: block;
    }
	
    div#content, tr.woocommerce-cart-form__cart-item.cart_item, .woocommerce-billing-fields__field-wrapper {
        padding-right: 15px;
    }
}

@media (max-width: 720px) {
		.woo-variation-items-wrapper {
max-width: 220px!important;
}
	.products li.product.product-type-variable form.variations_form .variations {
    position: relative;
    left: -10px;
}
	td.value.woo-variation-items-wrapper {
    position: relative;
    right: 5px;
}
}

.wpc-filter-product_brand .wpc-term-count-0 {
	display: none!important;
}

@media (min-width: 992px) {
    .single-product .summary .price {
        font-size: 37px;
    }
	
	}

a.--eael-wrapper-link-tag {
    background: transparent;
    border: none;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0px;
    left: 0px;
} 

@media (max-width: 991.98px) {
    #scrollUp {
        bottom: 38px;
    }
}

@media (max-width: 768px) {
    #scrollUp {
        bottom: calc(60px + 12px) !important;
    }
}

@media (max-width: 767.98px) {
  .gift-options-row ::before {
    content: none !important;
    display: none !important;
  }
	
	table.shop_table_responsive td.product-price,
  table.shop_table_responsive td.product-quantity {
    display: none !important;
  }

  table.shop_table_responsive th.product-price,
  table.shop_table_responsive th.product-quantity {
    display: none !important;
  }
	
	table.shop_table_responsive td.product-subtotal::before {
    content: "Total: " !important;
  }
}

/* Hide THWCFE "Full name (optional)" field in account pages */
[id="thwcfe-block/billing_name_field"] {
    display: none !important;
}

/* Filters button on mobile — brand color instead of blue */
.handheld-sidebar-toggle .sidebar-toggler,
.handheld-sidebar-toggle .sidebar-toggler i,
.handheld-sidebar-toggle .sidebar-toggler span {
    color: #b92d5e !important;
    border-color: transparent !important;
    background: transparent !important;
}

/* Logged-in account dropdown */
.mommy-user-greeting {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
.mommy-logout-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.mommy-account-icon .mommy-logout-btn {
    background-color: transparent !important;
    color: #888 !important;
    border: 1px solid #ddd !important;
    padding: 7px 20px !important;
}
.mommy-account-icon .mommy-logout-btn:hover {
    background-color: #f5f5f5 !important;
    color: #b92d5e !important;
    border-color: #b92d5e !important;
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */

/* Hidden on desktop by default */
.mommy-bottom-nav { display: none; }

@media (max-width: 768px) {

    /* Bar */
    .mommy-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: #fff;
        border-top: 0.5px solid #f0e6ea;
        display: flex;
        align-items: stretch;
        z-index: 99999;
    }

    /* Push page content above bar */
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)) !important;
    }

    /* Each icon item */
    .mommy-bottom-nav__item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ccc;
        font-size: 22px;
        text-decoration: none !important;
        position: relative;
        transition: color 0.15s;
        -webkit-tap-highlight-color: transparent;
    }

    .mommy-bottom-nav__item:hover {
        color: #b92d5e;
    }

    /* Active state */
    .mommy-bottom-nav__item.is-active {
        color: #b92d5e;
    }

    .mommy-bottom-nav__item.is-active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25%;
        right: 25%;
        height: 2px;
        background: #b92d5e;
        border-radius: 0 0 3px 3px;
    }

    /* SVG icon images */
    .mommy-bottom-nav__icon {
        width: 24px;
        height: 24px;
        display: block;
        filter: brightness(0) opacity(0.2);
        transition: filter 0.15s;
    }

    /* brand.svg (Designers) */
    .mommy-bottom-nav__item:nth-child(2) .mommy-bottom-nav__icon {
        width: 30px;
        height: 30px;
    }

    /* shopping-bag.svg (Cart) */
    .mommy-bottom-nav__item:nth-child(3) .mommy-bottom-nav__icon {
        width: 36px;
        height: 36px;
    }

    .mommy-bottom-nav__item:hover .mommy-bottom-nav__icon,
    .mommy-bottom-nav__item.is-active .mommy-bottom-nav__icon {
        filter: invert(26%) sepia(71%) saturate(1021%) hue-rotate(304deg) brightness(84%) contrast(97%);
    }

    /* Cart badge */
    .mommy-bottom-nav__badge--hidden {
        display: none !important;
    }

    .mommy-bottom-nav__badge {
        position: absolute;
        top: 8px;
        right: calc(50% - 22px);
        min-width: 16px;
        height: 16px;
        padding: 0 3px;
        background: #b92d5e;
        border-radius: 8px;
        font-size: 9px;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

}

/* ── WooFC floating cart count badge (all viewports) ── */
.woofc-count,
[class*="woofc-count"] {
    display: none !important;
}

/* ============================================================
   MY ACCOUNT — hide page title on mobile (shown in nav toggle)
   ============================================================ */
@media (max-width: 768px) {
    .woocommerce-account h1.page-title-area__inner--title,
    .woocommerce-account .page-title-area,
    .woocommerce-account .page-title-area__inner {
        display: none !important;
    }
}

/* ============================================================
   BREADCRUMBS — hide everywhere
   ============================================================ */
.woocommerce-breadcrumb,
.breadcrumb,
.breadcrumbs,
nav.woocommerce-breadcrumb,
.uneno-breadcrumb {
    display: none !important;
}

/* ============================================================
   MOBILE — compact page title spacing
   ============================================================ */
@media (max-width: 768px) {

    /* Page / archive title area */
    .woocommerce-products-header,
    .page-header,
    .entry-header,
    .woocommerce-products-header__title,
    .uneno-page-header {
        padding-top: 8px !important;
        padding-bottom: 4px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* The h1 title itself */
    .woocommerce-products-header__title,
    .woocommerce-products-header h1,
    .page-title,
    h1.entry-title,
    h1.page-title {
        font-size: 1.3rem !important;
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    /* Space between title block and page content */
    .entry-header + .entry-content,
    .page-header + *,
    .entry-header + *,
    h1.entry-title + *,
    h1.page-title + * {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* WP/Elementor page content wrapper top padding */
    .entry-content,
    .page .entry-content,
    .post-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Filters bar + result count row */
    .woocommerce-result-count,
    .woocommerce-ordering,
    .uneno-shop-control-bar,
    .uneno-toolbar {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    /* General content top padding */
    .site-main,
    #main,
    .content-area {
        padding-top: 0 !important;
    }

    /* Remove gap between page title and content */
    .site-content,
    #content.site-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .site-content .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .site-content__inner,
    .site-content__inner.row {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Page / entry header bottom gap */
    .page-header,
    .entry-header,
    .uneno-page-header,
    .uneno-breadcrumb-wrap {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    h1.page-title-area__inner--title {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    /* Elementor first container top padding + mb-50 bottom margin */
    .elementor .e-con:first-child,
    .elementor > .e-con:first-of-type {
        padding-top: 0 !important;
    }

    .mb-50 {
        margin-bottom: 20px !important;
    }
}

/* ============================================================ */

/* Remove underline from all save/submit buttons in my-account */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content .woocommerce-Button,
.mommy-btn-primary {
    text-decoration: none !important;
}
/* ============================================================
   PRODUCT CARDS — clean border style, no shadow (sitewide)
   ============================================================ */

/* Rounded corners + clean border */
.product__outer {
    border: 1px solid #e8e8e8 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: border-color 0.2s ease !important;
    box-shadow: none !important;
}

/* Hover: just darken the border, no shadows */
.products > .product:hover .product__outer {
    border-color: #c8c8c8 !important;
    box-shadow: none !important;
}

/* Kill the hover box-shadow on inner */
.products > .product:hover .product__inner {
    box-shadow: none !important;
}

/* Kill the footer slide-up animation on hover */
.products > .product:hover .product__footer {
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
}

/* ── end product card borders ── */

/* ── Checkout Order Summary — compact text ── */
.woocommerce-checkout-review-order-table,
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
    font-size: 0.8rem !important;
    white-space: nowrap;
}
.woocommerce-checkout-review-order-table .product-name {
    white-space: normal;
    max-width: 160px;
}
.mmd-your-discount-row th,
.mmd-your-discount-row td {
    font-size: 0.8rem !important;
    white-space: nowrap;
}

/* Account icon — scale up slightly to match other header icons */
.mommy-account-icon .header-icon-link svg {
    transform: scale(1.15) translateX(-2px);
    display: block;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content .button:focus,
.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-MyAccount-content button[type="submit"]:focus,
.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content .woocommerce-Button:focus,
.mommy-btn-primary:hover,
.mommy-btn-primary:focus {
    text-decoration: none !important;
}

/* ============================================================
   MY ACCOUNT — MOBILE ADAPTATIONS
   ============================================================ */

/* ── 1. Account navigation → horizontal scrollable tabs ────── */
@media (max-width: 767.98px) {
    .woocommerce-MyAccount-navigation {
        margin-bottom: 24px !important;
        padding: 0 !important;
    }

    .woocommerce-MyAccount-navigation ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 6px !important;
        padding: 4px 2px 8px !important;
        margin: 0 !important;
        list-style: none !important;
        /* hide scrollbar but keep scroll */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
        display: none;
    }

    .woocommerce-MyAccount-navigation ul li {
        flex: 0 0 auto !important;
        float: none !important;
        width: auto !important;
        border: none !important;
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .woocommerce-MyAccount-navigation ul li a {
        display: inline-block !important;
        white-space: nowrap !important;
        padding: 7px 16px !important;
        border-radius: 20px !important;
        border: 1.5px solid #e8e8e8 !important;
        font-size: .8rem !important;
        font-weight: 500 !important;
        color: #555 !important;
        background: #fff !important;
        text-decoration: none !important;
        transition: border-color .15s, color .15s, background .15s !important;
    }
    .woocommerce-MyAccount-navigation ul li a:hover {
        border-color: #b92d5e !important;
        color: #b92d5e !important;
    }
    .woocommerce-MyAccount-navigation ul li.is-active a {
        background: #b92d5e !important;
        border-color: #b92d5e !important;
        color: #fff !important;
        font-weight: 600 !important;
    }
}

/* ── 2. Page containers → full width on mobile ──────────────── */
@media (max-width: 767.98px) {
    .mommy-account-page,
    .mommy-children-page,
    .mommy-wishlist-page {
        max-width: 100% !important;
    }
}

/* ── 3. Submit buttons → full width on mobile ───────────────── */
@media (max-width: 767.98px) {
    .mommy-form-submit,
    .mommy-add-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .mommy-btn-primary,
    .mommy-form-submit .woocommerce-Button,
    .mommy-form-submit button[type="submit"],
    .mommy-add-form__footer .button {
        width: 100% !important;
        min-width: 0 !important;
        text-align: center !important;
        box-sizing: border-box;
    }

    .mommy-cancel-btn {
        text-align: center;
    }
}

/* ── 4. Contact fields → wrap icon+badge below on tiny screens ─ */
@media (max-width: 480px) {
    .mommy-contact-field {
        flex-wrap: wrap;
        gap: 6px;
    }

    .mommy-contact-field .woocommerce-Input {
        flex: 1 1 60%;
        min-width: 0;
    }

    .mommy-contact-field__badge {
        order: 4;
        flex: 0 0 auto;
        align-self: center;
    }

    .mommy-contact-field__icon {
        flex: 0 0 auto;
    }

    .mommy-contact-field--readonly .woocommerce-Input {
        flex: 1 1 50%;
    }

    .mommy-add-contact {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ── 5. My Children → single column + compact form on tiny screens ─ */
@media (max-width: 400px) {
    .mommy-children-grid {
        grid-template-columns: 1fr !important;
    }

    .mommy-add-form {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .mommy-add-form__title {
        font-size: .9rem !important;
    }
}

/* ── 6. WooCommerce form base fixes (all viewports) ─────────── */

/* Remove WC's negative margins and flex from our custom forms */
.mommy-form.woocommerce-EditAccountForm {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Remove WC's padding from direct children inside our forms */
.mommy-form.woocommerce-EditAccountForm > *,
.mommy-form .woocommerce-form-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Fix WC float conflict inside mommy-field-row (all viewports) */
.mommy-form .mommy-field-row {
    display: flex !important;
    gap: 16px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mommy-form .mommy-field-row .woocommerce-form-row {
    float: none !important;
    clear: none !important;
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
}

/* Stack on mobile */
@media (max-width: 600px) {
    .mommy-form .mommy-field-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .mommy-form .mommy-field-row .woocommerce-form-row {
        width: 100% !important;
        flex: none !important;
    }
}

/* ── 6b. Padding/spacing on mobile ─────────────────────────── */
@media (max-width: 767.98px) {
    .woocommerce-account .woocommerce-MyAccount-content {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    /* Section padding reduction */
    .mommy-account-section {
        margin-bottom: 28px !important;
        padding-bottom: 28px !important;
    }
}