/* --- 8. Order Details Page Thumbnails --- */
.maie-order-item-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
 
img.maie-order-thumb {
    border-radius: 6px;
    border: 1px solid #ebebeb;
    width: 80px;
    height: 120px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin: 0 !important; /* Stops theme from moving the image */
}

    

/* --- Account's Page --- */

/* 1. The Unified Card Layout (Desktop) */
.woocommerce-account .woocommerce {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex !important;
    align-items: stretch; 
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); 
    border: 1px solid #ebebeb;
    overflow: hidden; 
}

/* 2. Sidebar Navigation */
.woocommerce-MyAccount-navigation {
    width: 28%;
    background-color: #fafafa; 
    border-right: 1px solid #ebebeb; 
    padding: 0 !important;
    margin: 0 !important;
}

/* HIDES THE DASHBOARD TAB */
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard {
    display: none !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.woocommerce-MyAccount-navigation li {
    padding: 0 !important; 
    margin: 0 !important;  
    border-bottom: 1px solid #ebebeb;
    width: 100%;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    display: block; 
    padding: 22px 25px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box; 
}

.woocommerce-MyAccount-navigation li a:hover {
    background-color: #f0f0f0;
    color: #000;
}

.woocommerce-MyAccount-navigation li.is-active a {
    background-color: #ebd0d6 !important;
    color: #000;
    font-weight: 600;
    border-left: 4px solid #d4a3b0;
}

/* 3. Main Content Area */
.woocommerce-MyAccount-content {
    width: 72%;
    padding: 50px;
    background: #ffffff;
    box-sizing: border-box;
}

.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-message {
    display: none !important;
}

/* Hides Display Name Input Block */
.woocommerce-MyAccount-content form p:has(input#account_display_name) {
    display: none !important;
}

.woocommerce-MyAccount-content form .form-row {
    margin-bottom: 20px;
}
.woocommerce-MyAccount-content form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: capitalize; 
    color: #555;
    font-weight: 500;
}

/* Scoped inputs to prevent Payment forms from squishing */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-address-fields input[type="text"],
.woocommerce-address-fields input[type="email"],
.woocommerce-address-fields input[type="tel"] {
    width: 100%;
    max-width: 450px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.woocommerce-MyAccount-content form input:focus {
    border-color: #ebd0d6;
    outline: none;
}

/* 4. Address Area Redesign */
.woocommerce-Addresses > p {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.woocommerce-Addresses.col2-set {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.woocommerce-Addresses .col-1, 
.woocommerce-Addresses .col-2 {
    width: 50%;
    background: #fff;
    padding: 30px !important;
    padding-bottom: 80px !important; 
    border: 1px solid #eaeaea;
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); 
    position: relative; 
    margin-bottom: 0 !important; 
}

.woocommerce-Addresses header.title {
    display: block; 
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.woocommerce-Addresses header.title h3 {
    margin: 0;
    font-size: 22px;
    color: #222;
}

.woocommerce-Addresses address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0 !important; 
}

/* Edit link position */
.woocommerce-Addresses header.title a.edit {
    position: absolute;
    bottom: 30px; 
    left: 30px; 
    font-size: 13px;
    font-weight: 600;
    color: #d4a3b0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.woocommerce-Addresses header.title a.edit:hover {
    color: #ebd0d6;
}

/* 5. Tablet Layout Overrides (Max 1024px) */
@media (max-width: 1024px) { 
    .woocommerce-account .woocommerce {
        flex-direction: column !important; 
        display: flex !important;
        background: transparent;
        box-shadow: none;
        border: none;
        margin-top: 20px;
    }
    
    .woocommerce-MyAccount-navigation {
        width: 100% !important; 
        max-width: 100% !important;
        flex: 0 0 100% !important;
        background: transparent;
        border-right: none;
        margin-bottom: 40px !important; 
        float: none !important;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        width: 100% !important; 
    }
    
    .woocommerce-MyAccount-navigation li {
        border-bottom: none;
        width: 100% !important;
    }
    
    .woocommerce-MyAccount-navigation li a {
        padding: 16px 10px;
        background: #fff;
        border: 1px solid #ebebeb;
        border-radius: 8px;
        font-size: 15px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .woocommerce-MyAccount-navigation li.is-active a {
        border-left: none; 
        border: 2px solid #ebd0d6; 
    }

    .woocommerce-MyAccount-navigation li:last-child {
        grid-column: span 2; 
        display: flex;
        justify-content: center;
    }
    .woocommerce-MyAccount-navigation li:last-child a {
        width: 50%; 
    }

    .woocommerce-MyAccount-content {
        display: block !important; 
        width: 100% !important; 
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 30px !important;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid #ebebeb;
    }
    
    .woocommerce-Addresses.col2-set {
        flex-direction: column;
        gap: 20px !important; 
    }
    .woocommerce-Addresses .col-1, 
    .woocommerce-Addresses .col-2 {
        width: 100% !important;
    }
}

/* 6. Mobile Layout Overrides (Max 768px) */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr !important; 
    }
    .woocommerce-MyAccount-navigation li:last-child {
        grid-column: span 1 !important; 
    }
    .woocommerce-MyAccount-navigation li:last-child a {
        width: 100% !important; 
    }
}

/* 7. Extra Small Screens (Strictly 480px and under) */
@media (max-width: 480px) {
    .woocommerce-MyAccount-content {
        padding: 20px 15px !important; 
    }
    
    /* Fits the payment iframe perfectly */
    #add_payment_method #payment, 
    .woocommerce-PaymentMethods,
    .wc-stripe-elements-field {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* --- APP-STYLE MOBILE ORDERS LIST --- */
    
    .woocommerce-MyAccount-orders table {
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Hides top headers but SAVES the order number */
    .woocommerce-MyAccount-orders thead {
        display: none !important;
    }

    /* Styles rows as list items inside the main white card */
    .woocommerce-MyAccount-orders tr {
        display: grid !important;
        grid-template-columns: max-content auto 1fr !important;
        grid-template-areas: 
            "date date action"
            "order total action"
            "status status action";
        align-items: center !important;
        row-gap: 8px !important;
        column-gap: 8px !important;
        border: none !important;
        border-bottom: 1px solid #ebebeb !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    /* Removes line under the very last order */
    .woocommerce-MyAccount-orders tr:last-child {
        border-bottom: none !important;
    }

    /* Strip default cell formatting */
    .woocommerce-MyAccount-orders th,
    .woocommerce-MyAccount-orders td {
        border: none !important;
        padding: 0 !important;
        text-align: left !important;
        width: auto !important;
        line-height: 1.4 !important;
    }

    /* Hide WooCommerce's auto-injected mobile labels */
    .woocommerce-MyAccount-orders th::before,
    .woocommerce-MyAccount-orders td::before {
        display: none !important;
    }

    /* A. Date (Top) */
    .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-date {
        grid-area: date !important;
        font-size: 13px !important;
        color: #777 !important;
    }

    /* B. Order Number (Middle Left) */
    .woocommerce-MyAccount-orders th.woocommerce-orders-table__cell-order-number,
    .woocommerce-MyAccount-orders td.woocommerce-orders-table__cell-order-number {
        grid-area: order !important;
        font-size: 16px !important;
        font-weight: 600 !important;
    }
    .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-number a {
        color: #222 !important;
        text-decoration: none !important;
    }

    /* C. Price (Beside Order Number) */
    .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-total {
        grid-area: total !important;
        font-size: 14px !important;
        color: #444 !important;
    }

    /* D. Status Badge (Bottom Left) */
    .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-status {
        grid-area: status !important;
        display: inline-block !important;
        width: max-content !important; 
        background-color: #eef3f7 !important;
        color: #4a5c6a !important;
        padding: 6px 12px !important;
        border-radius: 6px !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        margin-top: 5px !important;
    }

    /* E. View Button (Middle Right) - FIXED */
    .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-actions {
        grid-area: action !important;
        justify-self: end !important;
        align-self: center !important; /* Forces it to sit perfectly in the middle vertically */
    }

    .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-actions a.button {
        background-color: #ebd0d6 !important;
        color: #000 !important;
        padding: 12px 16px !important; /* Thinner top/bottom padding */
        font-size: 12px !important;
        font-weight: 600 !important;
        border-radius: 4px !important;
        text-transform: uppercase !important;
        margin: 0 !important;
        display: inline-flex !important; /* Flex allows absolute center of text inside button */
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.2 !important; /* Removes invisible theme text heights */
        height: auto !important;
        min-height: 0 !important; /* Kills any theme minimum height requirements */
    }
}


/* Product Page In Stock and Prev Next */
.single-product .in-stock {display:none;}
.thb-product-nav {display:none}

/* Page Title Banners */
.thb-page-title {display:none}

/* Hide Banners Shop & Checkout */
.thb-temp-message, .woocommerce-message, .woocommerce-error, .woocommerce-info:not(.cart-empty):not(.woocommerce-notice--info) {display:none}
    
  
/* Product Description Link */
.productsummarylink { color:#999;}
.productsummarylink:hover {color:#999;}
 
 
/* Hide Shipping, Tax, and Total on WooCommerce Cart Page */
.woocommerce-cart .cart_totals .shipping,
.woocommerce-cart .cart_totals .tax-total,
.woocommerce-cart .cart_totals .order-total {
    display: none ;
}

/* Mobile sticky behavior with enhanced visibility */
@media (max-width: 768px) {
.maie-sticky-cart {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff; border-top: 1px solid #faeeee; box-shadow: 0 -4px 12px rgba(233, 192, 197, 0.35); z-index: 9999;
}
.maie-cart-inner {
    display: flex; justify-content: space-between; align-items: center; padding: 12px 20px;
}
.subtotal-label { font-size: 16px; color: #666; margin-right: 6px; }
.subtotal-amount .woocommerce-Price-amount.amount { font-weight: 500; font-size: 16px !important; color:#666 }
.maie-checkout-btn {
    background: #000; color: #fff; padding: 14px 28px; text-decoration: none; font-weight: 500; border-radius:4px;
}
}

/* Search page space above product */
.search .woocommerce-products-header { margin-top: 0 !important; }

/* Product filter swatches */
.wpc-filters-main-wrap .wpc-term-swatch-wrapper, .wpc-filters-main-wrap li.wpc-term-item label span.wpc-term-swatch { width: 28px;
        min-width: 28px;
        height: 28px; }

.wpc-filter-pa_color ul.wpc-filters-ul-list { padding-top:10px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 10px;
}

.wpc-filter-pa_color ul.wpc-filters-ul-list li a {
    display: flex !important;
    align-items: center; 
    white-space: nowrap; 
    text-transform: uppercase;
    font-size: 12px; 
} 

.wpc-filter-pa_color .wpc-term-swatch {
    margin-right: 8px !important;
    flex-shrink: 0;  
}


/* Product Filter Price slider */
.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-range { background-color: #e9c0c5}

.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-handle {background-color: #ffffff !important; /* Your signature pink */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);}

  /* Homepage hide variations */
.page-id-4624 .variations {display:none !important}

 
/* Added to cart message */
.woocommerce-message {
    display: flex !important;
    flex-direction: row !important; }

.woocommerce-message::before {
    position: static !important; 
    display: inline-flex !important; 
    flex-shrink: 0 !important; 
}

   
    /* Homepage 2 bigger images */
@media (max-width: 468px) {
    .wp-block-group.is-layout-flex {
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }
    .wp-block-group.is-layout-flex > * {
        width: 100% !important;
    }
}
  
  
/* Force WooCommerce AJAX notices to display properly */
.woocommerce-error, 
.woocommerce-message, 
.woocommerce-info {
    display: block !important;
    padding: 15px !important;
    color: #444444 !important; 
    font-size: 16px !important;
    line-height: 1.5 !important;
    min-height: 50px !important;
    z-index: 9999 !important;
}
/* 1. Remove the red dot icon */
.woocommerce-error::before {
    display: none !important;
}


@media (max-width:486px) {
	.yith-infs-loader {   width: 30px;  
    height: 30px;  } }


/* Pagination */
.pagination, .woocommerce-pagination { display:none } 
 
 




/* Ensure the wrapper also takes full width if necessary */
.woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
}

/* 1. Remove the browser's default blue focus ring */
.mobile-toggle, 
.mobile-toggle-holder,
.mobile-toggle,
.variable-item,
.variable-item-contents,
.variable-item span {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important; }


/* Homepage category shop now button */
@media (max-width:486px) {
.thb-product-category-content .btn.white.small {
    padding-left: 15px;
    padding-right: 15px;
    min-width: auto;   /* Overrides any default theme minimum width */
    display: inline-block;
    width: fit-content;
}}




/* Lower the strike-through line on sale price */
.post-type-archive-product .price del::after {
    content: "";
    position: absolute;
    top: 50% !important;
}

/*Sale Price Product Page Line Adjustment*/
.price del {
  position: relative;
  text-decoration: none; /* Disable default strikethrough */
  opacity: 0.6;
}

.price del::after {
  content: "";
  position: absolute;
  top: 35%; /* Adjust this for perfect vertical alignment */
  left: 0;
  width: 100%;
  height: 1px; /* Adjust thickness */
  background-color: currentColor; /* Matches text color */
}


/* Shop Page Sale Icon */
.onsale {background-color:#e9c0c5; border-radius:50%; width:35px; height:35px; z-index:8 !important; top:5px; left: auto; right:12px;}



/*Homepage Category Grid Descriptions*/
.thb-category-excerpt p {
    display: none;
} 

 
/*Product Page Attributes*/
.single-product .thb-product-detail .variations_form .variations .label { display:table} 

.single-product table.variations .value {margin:-8px 0 -5px -5px; }
 
@media (min-width:1280px) {
.single-product table.variations 	tbody tr {width:50% !important; float: left}
.single-product table.variations tr {padding-right: 10px !important; }}


 
@media (max-width:468px) {
.thb-product-detail .product-information h1  { font-size:20px; margin-top:-30px }
	.thb-product-detail .product-information .price { font-size:20px; margin-top:0; }
	.single-product label { font-size:10px; }
	.single-product.woo-variation-swatches .wvs-style-rounded.variable-items-wrapper .variable-item:not(.radio-variable-item) { width:25px; height:25px; }

.single-product.woo-variation-swatches 
.wvs-style-rounded.variable-items-wrapper 
.variable-item:not(.radio-variable-item) span {
    font-size: 12px !important;
	}}
  
/*Model Size in Reivew Tab*/
li#tab-title-reviews.reviews_tab { display:none !important }

/*Home Main Feature Images*/
@media (min-width:588px) {
.mobile-only { display:none !important;} }

@media (max-width:589px) {
.desktop-only { display:none !important;}
	.mobile-only {margin-top:-5px;}}

@media (min-width:588px) {.mobile-vid {display:none !important;}}
@media (max-width:589px) {
	.desktop-vid { display:none !important;}}


.wp-block-embed,
.wp-block-embed__wrapper {
    width: 100vw !important; /* Full viewport width */
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw); /* Center edge-to-edge */
}
.wp-block-embed__wrapper {
  font-size: 0;
  line-height: 0;
  overflow: hidden;        /* hides stray 1px overflow lines */
}




/*Body Backgound */
body {background: linear-gradient(to bottom,  #e9c0c5 0px,#e9c0c5 60px,#fff 60px,#fff 100%);
}  
     

html, body  {
    max-width: 100%;
  overflow-x: clip;} 
  
 
/*Paypal */ 
.wc-ppcp-cart-payment-method.or {margin:0 !important}

.wc-ppcp-cart-or {display:none}

#cfw-payment-request-buttons .wc-ppcp-checkoutwc-express__container {height:35px;}

[dir=ltr] main.checkoutwc #wc-square-digital-wallet{margin: 0 7px 7px 0}

          
/*Omnisend */
.omnisend-form-673e1beedcdc64b34f2f41d5-badge {display:none !important}
 
 
   
/*Homepage h2s */
.thb-product-category-block-grid 	h2 {
		background: linear-gradient(to right,#333 10%, #faeeee 50%, #e9c0c5 60%);
		background-size: auto auto;
		background-clip: border-box;
		background-size: 200% auto;
		color: #fff;
		background-clip: text;
		text-fill-color: transparent;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		animation: textclip 1.5s linear infinite;
		display: inline-block;
	}
 
 
@keyframes textclip {
	to {
		background-position: 200% center;
	}
}

.sliderh2, .category-title   {
 display: block;
	font-size: 40px !important;
	color: #ffffff;
text-shadow: 2px 2px 4px rgba(231, 84, 128, 0.5), 0 0 10px #e75480;
font-family: "Segoe Script", "Lucida Handwriting", "Brush Script MT", cursive !important;
}
@media (max-width: 768px){  .sliderh2, .category-title   {
font-size: 38px !important;
}}


.footerpagesh2 
 {
    display: block;
    font-family: Marker Felt, fantasy!important;
    font-size: 50px !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e9c0c5;
    text-shadow: 
        1px 1px 1px rgba(0, 0, 0, 0.8), 
        0px 0px 0px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .footerpagesh2 
 {
 font-size: 30px !important;
        letter-spacing: 2px;
    }
}
 
 

/* Text for middle 2 images */
.middle-images-title { background:#e9c0c5;   width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
font-size: 35px !important;
 padding-top:10px; 
font-family: "Segoe Script", "Lucida Handwriting", "Brush Script MT", cursive !important; display: block;
	font-size: 40px !important;
	color: #ffffff;
text-shadow: 2px 2px 4px rgba(231,84,128,0.5), 0 0 10px rgba(231,84,128,1);
}
@media (max-width: 768px){  .middle-images-title, .category-title  {
font-size: 35px !important; 
}}
@media (max-width: 468px){  .middle-images-title, .category-title  {
font-size: 30px !important; padding: 10px 10px 1px 10px;
}}
  
  
/*Very Top Text Area */
.subheader {background-color: #e9c0c5; color:#000 !important; }
     
/*Footer + Subfooter */
.footer {background-color: #faeeee;} 

      
#block-144, #block-146, #block-151, #block-187 {text-decoration:underline !important; text-underline-position: under;}
 
                              
.subfooter {background-image: url(https://shopmaie.com/wp-content/uploads/2022/10/Maie-header_wide.jpg) !important; background-size: cover; background-position: center center; background-repeat: no-repeat; z-index:8 !important }

.footer:before {height: 60px;
    top: -60px;
    position: absolute;
    content: "";
    width: 100%;
    background: url(https://shopmaie.com/wp-content/uploads/2022/10/Maie-header_wide.jpg) bottom center no-repeat;
background-size: cover; background-position: center center; background-repeat: no-repeat; z-index:8 !important}

.footer {position:relative; margin-top:75px}

/* Logged In Downloads */
.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--downloads {display:none;}
                                      
/* Logo Color */
img.logoimg {-webkit-filter: invert(10%); /* safari/chrome */ filter: invert(10%);}
@media (min-width: 768px) { img.logoimg {max-width:220px} }
  


/* Footer Align Center */
  .omnisend-form-69a947da4c846b86c8b80d3b-section-624ab2f927652f651edfd0ac { padding-top: 0px !important; padding-bottom: 0px !important
}

@media (min-width: 769px) { 
  #block-185 { 
    margin-top: -15px !important; } 
}

@media (max-width: 768px) { 
  #block-185 { 
    margin-top: -20px !important; 
  } 
}

@media (max-width: 1065px){
  .footer-row .columns:first-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px; 
  }
  .footer-row .columns:not(:first-child) {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }

  .footer-row input, 
  .footer-row button {
    margin: 0 auto !important;
    display: block !important;
  }
}

  .footer-row .columns {
    text-align: center !important;
  }
	@media (max-width: 768px){
  .footer-row .columns:not(:first-child) {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
	}


 
   
/*Buttom Links */
.wp-block-button__link, a.btn.black {background-color: #e9c0c5 !important; color:#000 !important;}

.button {background-color: #e9c0c5 !important; color:#000 !important;}

     
  
ul.products li.product a.button {background-color: #e9c0c5 !important; }

/*Product Name at the Top and Category */
body:not(.search-results) .woocommerce-products-header .woocommerce-products-header__title {
   display: none;
}
.search .woocommerce-products-header { display: block; margin-top:50px;}
.woocommerce-products-header .woocommerce-products-header__title {font-size:30px !important;}
.thb-filter-middle-column {display:none;}
@media (max-width: 1067px){ .thb-filter-middle-column  {display:none !important}}
div.small-6.small-order-3.large-order-3.large-3.columns.text-right, div.small-6.small-order-2.large-order-1.large-3.columns {
     flex: 0 0 50% !important;
    max-width: 50% !important;
}

@media (max-width: 768px){ .woocommerce-products-header .woocommerce-products-header__title {
   font-size:20px !important; margin-bottom:0;
}
}
.woocommerce-products-header .woocommerce-products-header__title {
    font-family: Verdana, sans-serif !important;
}


/*Menu Category Selected*/
.thb-full-menu > .menu-item > a:hover, .thb-full-menu .menu-item.current-menu-item>a, .products .product .woocommerce-loop-product__title a:hover, .wc-block-grid__products .product .woocommerce-loop-product__title a:hover { color:#444; }

/*Mobile Menu Icons*/
#mobile-menu .menu-item-10388 a, #mobile-menu .menu-item-5160 a {
    display: flex;
    align-items: center;
    gap: 8px;
}

 
/*Homepage Block Text*/
@media (max-width: 400px){
	.wp-block-quote.is-style-large {font-size:12px !important;}}

	.wp-block-quote.is-style-large {font-size:20px !important;}

/*Add to Cart circle in header*/
.count.thb-cart-count {background:#333 !important}


   
/* Product Page SKU */
.product_meta {display:none;}

/* Search Magnifying */
.thb-search-toggle button,
.mobile-menu-top button {background-color: #e9c0c5;}

/* Underline styles */
.thb-full-menu > .menu-item {
  display: block;
  position: relative;
  padding: 0.2em 0 !important;
}

.thb-full-menu > .menu-item > a:hover {color: #e9c0c5 !important;}

/* Underline styles - Scale from Center */
.thb-navbar li::after{
  content: '';
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 100%;
  height: 0.15em;
  background-color: #e9c0c5;
  transition: opacity 300ms, transform 300ms;
	 opacity 1;
  transform: scale(0);
  transform-origin: center;
}
.thb-navbar li:hover::after,
.thb-navbar li:focus::after{
  opacity: 1;
  transform: translate3d(0, 0.2em, 0); transform: scale(1);
}

.thb-navbar li li:hover::after,
.thb-navbar li li:focus::after{
 transform: none
}
 
.thb-navbar li li::after, .thb-navbar li li:hover::after,
.thb-navbar li li:focus::after {display:none;}
 
/* Main and Sub Menu */
.thb-main-header {background-color:#fff; margin-bottom:0px !important;  } 
#menu-navigation ul li a:hover{
	color: #e9c0c5 !important; }

.sub-menu .current-menu-item a{ 
    color: #444 !important;}

/*Menu Width*/
@media (min-width: 1067px){
.header-logo-row	.small-6 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
}
.header-logo-row .large-4 {
    flex: 0 0 40%;
    max-width: 40%;
	} 
	    
.menu-item a, .thb-item-text  {font-size:12.5px !important; }	
@media (max-width: 1292px){	
	.menu-item a, .thb-item-text  {font-size:11.5px !important; }	}
.menu-item a, .thb-item-text, 	.thb-navbar li::after {margin-left:-2px }
	@media (max-width: 1180px){	
	.menu-item a, .thb-item-text, 	.thb-navbar li::after {margin-left:-10px }	}	
 
	 
.sub-menu li a  { 
font-size:13px 
!important; margin-top: -8.6px !important;
text-transform: capitalize !important; width: 220px !important;
background-color: #fff !important; 
padding-top: 7px !important;
    padding-bottom: 9px !important;
line-height:1 !important;
}
#menu-navigation li li a
{-moz-border-radius: 0px 0px 10px 10px !important;  
    -webkit-border-radius: 0px 0px 10px 10px !important;  
    border-radius: 0px 0px 10px 10px !important; }

.sub-menu {		border: 1px solid #F0F0F0 !important; -moz-border-radius: 0px 0px 10px 10px !important;  
    -webkit-border-radius: 0px 0px 10px 10px !important;  
    border-radius: 0px 0px 10px 10px !important; }}

button.wp-block-search__button {background-color:#e9c0c5 !important; color:#fff;} 



/* Homepage Background */
.page-id-4624 {background: linear-gradient(to bottom,#faeeee, white);}

/* Shop Page Product Title */
.product .woocommerce-loop-product__title a:hover{ color:#333 !important; }


/* Scoll To Top Button */
#scroll_to_top:hover {background-color: #e9c0c5 !important;}

/* Favorites Heart */
.fa-heart-o {font-size:15px !important; font-weight:600}


/* Shop Page Filter and Default Size*/
.thb-filter-bar  {  position: sticky;
  position: -webkit-sticky;
  top:0; /* required */; z-index:9; border-bottom: 1px solid #e4e5e0;  
margin-left: calc(50% - 50vw);
  width: 100vw;
 background:white; padding:5px 10px;
background: url(https://shopmaie.com/wp-content/uploads/2022/10/Maie-header_wide.jpg) bottom center no-repeat;
background-size: cover; background-position: center center; background-repeat: no-repeat; }

  
@media (min-width:768px) {
	.thb-filter-bar  { padding:5px 10%;} } 

.thb-filter-bar #thb-shop-filters {  font-size:16px; border-radius:5px;   box-sizing: border-box;
  background:#e9c0c5;
    padding: 8px 8px;}

.thb-filter-bar #thb-shop-filters svg { width:15px !important; }

.orderby { font-size:15px !important; text-align:right !important }

.wpc-posts-found {display:none}
.wpc-filters-widget-wrapper {margin-top:-10px}
   
/* Social Footer */
  .maiesocial {
    justify-content: center !important;
  }

.maiesocial {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px; 
}

.maiesocial ul {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.maiesocial li {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1.5px solid white;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.maiesocial li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background: white;
  z-index: 0;
  transition: height 0.4s ease;
}

.maiesocial li:hover::before {
  height: 100%;
}

.maiesocial li img {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  filter: invert(25%);
  transition: filter 0.3s ease;
}

.maiesocial li:hover img {
  filter: invert(0%);
}





#side-filters {border-right: 1px solid #f1f1f1}

/*Product Filters */
.wpc-filters-widget-main-wrapper li.wpc-term-item input[type='checkbox']{display:none}

.wpc-filters-checkboxes .wpc-term-count{display:none;}

.wpc-filter-product_cat a {font-size:12px}
.wpc-filter-title {font-size:16px; font-weight:bold;}

 
.wpc-filters-range-inputs {margin-bottom:40px}

li.wpc-term-item label span.wpc-term-swatch, .wpc-term-swatch-wrapper {border-radius:50%; width:25px; height:25px;}

.wpc-term-swatch-wrapper{ border:none !important;
box-shadow: 0 0 0 2px #fff, 0 0 0 3px #999; margin-left:5px }

.open-cc li.wpc-filter-chip {display:inline; margin:0 !important;}
 
.open-cc .wpc-chip-reset-all  {padding-right:100% !important;}

.wpc-chip-reset-all a {background-color:#fcf6f6; }

.open-cc .wpc-filter-chip a { margin-bottom:5px !important}

.wpc-custom-selected-terms {margin-top:-47px;}

.wpc-custom-selected-terms, .woocommerce-products-header {display:none;}

/* Cart Page */
.woocommerce-cart .woocommerce {margin-top:20px}

.shop_table.cart .product-name {
    padding-right: 20px;
}

.shop_table.cart th.product-quantity,
.shop_table.cart th.product-subtotal {
    padding-left: 10px;
    padding-right: 10px;
}

table.shop_table.cart th.product-price,
table.shop_table.cart td.product-price,
.shop_table.cart th.product-quantity,
.shop_table.cart td.product-quantity,
.shop_table.cart th.product-subtotal,
.shop_table.cart td.product-subtotal {
    text-align: center !important;
    vertical-align: middle !important; 
}

@media (min-width: 1070px) {
    td.product-quantity, 
    td.product-price { 
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    table.shop_table.cart td.product-name {
        width: 40% !important; 
    }
}


/* 1. Hide the default browser arrows for Chrome, Safari, Edge, Opera - Still Cart Page*/
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity input.qty[type=number] {
  -moz-appearance: textfield;
}

.quantity input.qty {
    width: 40px !important;       
    height: 40px;                 
    padding: 5px;
    text-align: center;           
    border: 1px solid #e0e0e0;    
    font-size: 14px;
    color: #333333;
    box-shadow: none !important;  
}
.shop_table.cart div.quantity {border-bottom:none}

.quantity input.qty:focus {
    border-color: #aeb4b7;       
    outline: none;
}


/* Hide the Update Cart button since it now happens automatically */
button[name="update_cart"] {
    display: none !important;
}

/* Side Cart */
#side-cart.side-panel {border-left: 1px solid #f1f1f1} 


#side-cart .side-panel-content .widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart::-webkit-scrollbar {
  display: none;
}

#side-cart .side-panel-content .widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart  {
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.wpc-widget-top-inside .wpc-inner-widget-chips-wrapper {     overflow: hidden !important; }

.wpc-filter-content .wpc-filters-widget-select {padding: 0px 12px !important}


.product_list_widget a .wp-post-image, 
.product_list_widget a .attachment-woocommerce_thumbnail {
    width: 85px !important; 
    height: 128px !important; 
    max-width: none !important;
    max-height: none !important; 
    object-fit: cover !important; 
    object-position: top center !important; 
}

.product_list_widget li.woocommerce-mini-cart-item {
    min-height: 140px !important; 
    height: auto !important; 
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    overflow: visible !important;
}



/* Mobile Menu & Cart Open Size */
@media (max-width: 800px){
	#mobile-menu, #side-cart {width:100% !important; margin-top:62px; }}


.side-panel-header {z-index:9999999}

#mobile-menu, #side-cart, .side-panel {z-index:9999;}

@media (max-width: 480px){
	#mobile-menu, #side-cart {width:100% !important; margin-top:62px !important; }}

.thb-mobile-menu li a:hover, #mobile-menu .thb-secondary-menu li a:hover {color:#e9c0c5;}
 
.woocommerce-mini-cart__buttons .wc-forward.wp-element-button:first-child {display:none}

    
/* Mobile Search Bar */
#mobile-menu .woocommerce-product-search {max-width:100% !important; border-radius: 7px}

#woocommerce-product-search-field-999.search-field {border-radius: 7px }
#mobile-menu .woocommerce-product-search button {border-radius: 0 7px 7px 0}
 

/* Search Bar Result Container */
.thb-results-container.product_list_widget  .thb-search-btn a {background-color: #e9c0c5; color:#000; }

.thb-results-container.product_list_widget {margin-top:-5px; border-top:none !important;}

  
/* Secondary Menu Icons + Margins */
.thb-secondary-area .thb-secondary-item svg.thb-search-icon path {
  stroke: #ffffff !important; 
}
.thb-secondary-area .thb-secondary-item svg.thb-search-icon {
  height: 19px !important;
}
.thb-secondary-area .thb-secondary-item.thb-quick-search {margin-left:-85px!important; margin-right:-8px}
 
     
.thb-secondary-item span.thb-item-text {display:none !important;}

.ph-light.ph-heart,
.ph-light.ph-user {font-size:23px !important;}


@media (min-width: 1067px){
#menu-item-5160 a, #menu-item-10388 a {visibility: hidden;}

	#menu-item-5160 i, #menu-item-10388 i {visibility: visible; !important; margin-left:-102px} 

	.thb-secondary-area .thb-item-text {display: none !important; } 
.thb-secondary-area .thb-secondary-item svg.thb-search-icon:hover {fill: #e9c0c5 !important;}}


/* Product Page Other */
@media only screen and (min-width: 768px) {
    .thb-product-detail .thb-product-main-row {
			margin-bottom: 30px; }}

/* Product Page Tabs Desc and Reviews */
.description_tab a, .custom_tab_tab a, .reviews_tab a { display:inline-block !important;}
 
.wc-tabs-wrapper .woocommerce-Tabs-panel p, .woocommerce-product-details__short-description ul, .woocommerce-Reviews .description p {font-size:15px; }

#reviews {margin-left:-78px}
 
.description_tab, .custom_tab_tab, .reviews_tab {
	display:inline-block !important;  }
 
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    padding: 0 5px;
}
@media (max-width: 771px){
	.wc-tabs li a::after{margin-bottom:-13px !important;}}

#jp-relatedposts {display:none !important}

li.additional_information_tab {
display: none !important;
}
 
.woocommerce-Tabs-panel .woocommerce-Reviews-title, .woocommerce-Tabs-panel .commentlist img, .woocommerce-Tabs-panel .commentlist .meta, .woocommerce-Tabs-panel #review_form_wrapper {
display: none !important;
}
 
.commentlist > .comment.depth-1 {border-bottom:none !important}
	
	@media (min-width: 768px) {
		.wc-tabs-wrapper .wc-tabs { margin-bottom: 20px; }}

/* Related Products */
.related {width:100%; text-align: center;}


/* 1. Hide the entire quantity section (input, plus, and minus buttons) */
.woocommerce-variation-add-to-cart .quantity, .woocommerce-variation-add-to-cart .minus, .woocommerce-variation-add-to-cart .plus {
    display: none !important;
}

   
 
/* Product Page Add to Cart + Google*/
button.single_add_to_cart_button.button.alt {background-color: #e9c0c5 !important;  border-radius:4px !important; height:41px;  float:right; } 

@media (min-width:644px) and (max-width:767px){ button.single_add_to_cart_button.button.alt {  margin-top:3px }}
button.single_add_to_cart_button.button.alt:hover {background-color: pink !important; color:#fff; }
  
.single-product div#wc-square-digital-wallet {
    display: none !important;
} 
  
.gpay-card-info-container.white.long {border:1px solid #000;}


.single_add_to_cart_button {color:#fff; opacity:1 !important}
.single_add_to_cart_button:hover {color:#000; opacity:1 !important}
 
    
/* Homepage Double Image width and background */
.main-middle {background-color:#e9c0c5 !important;
 padding: 30px 20px 55px 20px; 
max-width: 100vw;
     position: relative;
     margin-left: -50vw;
     left: 50%;     background: -webkit-linear-gradient(#e9c0c5 70%, #fff 30%);
    background: -o-linear-gradient(#e9c0c5 70%, #fff 30%);
    background: -moz-linear-gradient(#e9c0c5 70%, #fff 30%);
    background: linear-gradient(#e9c0c5 70%, #fff 30%);
margin-top:-16px; margin-bottom:-15px; border-bottom:1px #faeeee solid;
}
 
div.products.thb-product-category-block-grid.align {background-color: #fcf6f6 !important;
}

@media (min-width: 870px){
	.main-middle img {max-width:400px}}



.wp-block-embed__wrapper video, .main-middle img {
  background-color: #ddc;
  border: solid 2px #eee;
  border-radius: 2px;
  box-shadow:
    0 0 20px rgba(255, 105, 180, 0.6),   /* hot pink glow */
    0 0 30px rgba(255, 20, 147, 0.4),    /* deep pink glow */
    inset 0 0 6px rgba(255, 182, 193, 0.1); /* inner soft pink */
  box-sizing: border-box;
  background-clip: padding-box;
  position: relative;
  z-index: 1;
	 pointer-events: none;
}


/* Edit Main-Middle Img Vs Video */

@media (min-width: 885px){
  .wp-block-columns.main-middle .wp-block-column:first-child {
    text-align: right; }
  .wp-block-columns.main-middle .wp-block-column:last-child {
    text-align: left;
  }}
@media (min-width: 478px) and (max-width: 815px) {
  .wp-block-columns.main-middle {
    text-align: center; }
  .wp-block-columns.main-middle .wp-block-column {
    display: inline-block;
    max-width: 45%; }
  .wp-block-columns.main-middle .wp-block-column img {
    width: 100%;
    height: auto;
    display: block;}
}
@media (min-width: 488px){
	.main-middle img {max-width:400px}}

/*
@media (min-width: 1500px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:firt-child  {margin-right:-500px}
.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:last-child {margin-left:-500px} }

@media (min-width:782px) and (max-width:869px){
.main-middle	div.is-layout-flow.wp-block-column { max-width:47% !important; }
	.main-middle {padding-left:5% !important}
.wp-block-embed iframe, .wp-block-embed__wrapper {max-height:500px !important; }
	.main-middle figure { margin-top:10px}
}
 
@media (min-width:500px) and (max-width:781px){
	.main-middle	div.is-layout-flow.wp-block-column { max-width:47% !important; }
	.main-middle {padding-left:5% !important}
.wp-block-embed iframe, .wp-block-embed__wrapper {max-height:440px !important; }
	.main-middle figure { margin-top:10px}}
   
@media (max-width:500px) { .main-middle	div.is-layout-flow.wp-block-column:first-child {
  margin-bottom:-10px;  }
	.main-middle	div.is-layout-flow.wp-block-column {
   margin: 0;
  padding: 0;
  border: none;
  line-height: 0;  }
 
	.wp-block-embed iframe, .wp-block-embed__wrapper {max-height:420px !important; } 
 .wp-block-embed__wrapper {max-width:89% !important; margin-left:5.5%}
}
/*

/* After Order Placed? */
#place_order { background-color:#e9c0c5 !important; color:#fff; }
#place_order:hover {background-color: pink !important; color:#fff; }

  
/* Header Categories with Children Arrow */
.thb-full-menu > .menu-item + .menu-item { margin-left:20px; 
}

/* Open Mobile Menu Background Scrolling */
@media (max-width: 644px){
	#wrapper.open-cc, #mobile-menu, #side-cart {touch-action: none !important; }}
#wrapper.open-cc .subheader {display:none;}

  
 
/* Hamburger into X */
.open-menu .mobile-toggle-holder:before {
	content: '\2715'; font-size:23px; color:#000; margin:-5px 0px -10px -0.5px; }
	
	.mobile-toggle-holder:before {
	transition: all .4s ease;
	transform: rotate(0deg);
	display: block;
} 
.open-menu .mobile-toggle-holder::before {
	transition: all .4s ease;
	transform: rotate(90deg);
	display: block;
}
   
.open-menu .mobile-toggle {display:none}

/* Default Sorting Blue Border */
*:focus {
  outline: none;}



/* Account Pages */
button.woocommerce-Button.button, .woocommerce-MyAccount-content .button
{background-color:#e9c0c5;
	color: #000 !important;}
 .woocommerce-Message.woocommerce-Message--info.woocommerce-info {background-color:#fff !important}
.woocommerce-Message.woocommerce-Message--info.woocommerce-info::before {background-color:#e9c0c5 !important}
.woocommerce-info::before, .woocommerce-message::before {background-color:#e9c0c5 !important}

.woocommerce-MyAccount-navigation ul a:hover {color:#e9c0c5 !important;}



/* Product Variations */
.variable-items-wrapper.radio-variable-items-wrapper.wvs-style-rounded {
  width: 0px;
  height: 0px; margin-bottom:60px !important; margin-top:5px}

td.value.woo-variation-items-wrapper {text-align:center;}
.single-product label {float:left !important}


.reset_variations {display:none !important;}

/* 1. Force the table rows to act like flex items (keeps your fix) */
.variations tbody {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

/* 2. Make each row (Color/Size) take up 50% width */
.variations tr {
  display: flex;
  flex-direction: column; /* Keeps label above swatches */
  flex: 0 0 calc(50% - 10px); /* Takes 50% width minus half the gap */
  box-sizing: border-box; /* Ensures padding doesn't break the width */
}
       

 
@media (min-width: 768px){
	.thb-fixed, .thb-product-detail .product-information .entry-summary {position:static !important; }}
 
/*Variation Swatch Shop Page*/
/*Product Filters */
/*Variation Swatch Shop Page*/
.archive .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before, .home.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before  {height: 0 !important;}

.single-product.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
	font-size: 15px !important }

.single-product.woo-variation-swatches .wvs-style-rounded.variable-items-wrapper .variable-item:not(.radio-variable-item) .variable-item-span {line-height: normal; }

@media (max-width: 488px){ .woo-variation-swatches .wvs-archive-variations-wrapper .variable-items-wrapper .variable-item:not(.radio-variable-item) {
	width: 20px !important; height: 20px !important; }
}


.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):focus{
-webkit-box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #a8a8a8);
box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #a8a8a8);
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
-webkit-box-shadow: var(--wvs-selected-item-box-shadow, 0 0 0 2px #000) !important;
box-shadow: var(--wvs-selected-item-box-shadow, 0 0 0 2px #000) !important;
}

 

/* Credit Card Pay Checkbox */
.js-sv-wc-tokenize-payment.method  {margin-right:8px !important;}


/* Checkout Coupon */
.thb-temp-message, .woocommerce-message, .woocommerce-error, .woocommerce-info:not(.cart-empty):not(.woocommerce-notice--info){background-color: #faeeee !important; border: 1px solid #faeeee; border-radius:5px; }

.woocommerce-info a:hover{color:pink;}

 
  
/* Wishlist Page */
.wishlist-title-container .show-title-form, .hidden-title-form  {display:none;}
.yith-wcwl-add-button {margin-top:25px; font-size:16px; text-align:center;} 

.yith-wcwl-add-to-wishlist a.delete_item:hover, a.add_to_wishlist.single_add_to_wishlist:hover {color: #e9c0c5 !important;}

.yith-wcwl-add-button span.separator, .view-wishlist {display:none !important}

@media (max-width: 1068px){
 th.product-name span {display:none}
	.wishlist-title.wishlist-title-with-form {text-align:center}
}
   
td.wishlist-empty {text-align:center !important; padding-top:50px !important}


.yith-wcwl-add-to-wishlist .yith-wcwl-add-button {margin-bottom:15px}
     
/* Product Filter Font */
.wc-block-checkbox-list label {font-weight:500}

/* Side Cart close text */   
.thb-close:hover {color: #e9c0c5; }

/* Woo error notice */
.woocommerce-error {display:none;}


 
/* Homepage Category Grid */
@media (min-width:520px) and (max-width:768px){ .products.thb-product-category-block-grid.alignwide { display:flex !important;}
.thb-product-category-block-grid .product-category.product {width:48%; }
}
@media (min-width: 1065px) {
    div.products.thb-product-category-block-grid.alignwide { 
        display: flex !important;
        height: auto !important; justify-content: center !important
    }
	
    .thb-product-category-block-grid .product-category.product {
        width: 24% !important;
        aspect-ratio: 1 / 1 !important;             
    }
}

    .products .product-category .thb-product-category-content {
        position: absolute !important;
        
        /* Positioning coordinates */
        bottom: 2% !important; 
  
        right: auto !important;
        
        /* Resetting alignment */
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Aligns text and button to the left */
        justify-content: flex-end !important;
			 pointer-events: none !important;
    z-index: 100 !important; 
 }


@media (max-width:1068px) {
.thb-product-category-block-grid.products .product-category
{max-height:300px; }}


/* Shop Product Thumbnail Size */
@media (min-width:1500px) {.products .product .product-thumbnail, .products .product .product-thumbnail img {height:600px !important} }
@media (min-width: 488px){
	.products .product .product-thumbnail, .products .product .product-thumbnail img { height:550px; } }
@media (max-width: 488px){
	.products .product .product-thumbnail, .products .product .product-thumbnail img { height:325px; 
	 } 

ul.products { margin: 0 -20px }
	
.woocommerce ul.products li.product {
    padding: 0 2px !important;
	}
	.woocommerce-loop-product__title { padding: 0 5px; }
} 
 


/* Shop Page Selection Options */
.products .product .product-thumbnail .button {
    display: none !important;
}


/* Cross-Sell Thumbnail Size */
.woocommerce-cart .cross-sells ul.products li.product.type-product{ max-width: 50% !important;}  


/* Cart Page Buttons */
.woocommerce-cart .wc-proceed-to-checkout .button {margin:10px 0;}

.woocommerce-cart #wc-square-wallet-divider {display:none;}

 
/* Shop Products Per Row */
@media (min-width: 1751px){
	.archive.woocommerce ul.products li.product.type-product{ max-width: 20% !important; }}
@media (max-width: 1750px){
.archive.woocommerce ul.products li.product.type-product{ max-width: 25% !important; }
@media (max-width: 1262px){
.archive.woocommerce ul.products li.product.type-product{ max-width: 33% !important;}}     
@media (max-width: 900px){
.archive.woocommerce ul.products li.product.type-product{ max-width: 50% !important;}}

 
	
/* Product Page summary */
	@media (min-width: 1070px) { 
	 .single-product .summary.entry-summary { margin-top:50px !important; }}



/* Login Page */
@media (max-width:768px){
	.woocommerce-account .woocommerce-form .input-text {width:80% !important}}

.woocommerce-account .woocommerce-form .input-text {width:50%}

.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide label {width:100%}
	
	

	
/* Checkout Plugin */
#cfw-logo-container {
    display: block !important; 
    width: 100% !important;
    text-align: center !important; 
    padding-top: 5px !important;   
    padding-bottom: 5px !important; 
    margin: 0 !important; 
}

.cfw-logo {
    display: inline-block !important; 
    width: 300px !important;
    margin: 0 auto !important; 
    padding: 0 !important; 
    float: none !important; 
	-webkit-tap-highlight-color: transparent !important;
}
	

@media (max-width: 991px) {
    header#cfw-header.container {
        position: relative !important;
        min-height: 80px !important; 
    }
    
    #cfw-logo-container {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important; 
        width: 300px !important; 
        margin: 0 !important;
        padding: 0 !important;
        z-index: 10 !important; 
	}
	}

@media (max-width: 468px) {    .cfw-logo {
        width: 250px !important; 
}
}

header#cfw-header.container {
    border-bottom: 1px solid #e4e5e0; 
}
.cfw-footer-inner {
    visibility: hidden;
}


@media (min-width: 990px) {
    #cfw {
        padding-top: 25px; 
        background: white;
        
        box-shadow: 0px 10px 40px rgba(0,0,0,0.03); 
    }
    
    body.checkout-wc {
        background-image: linear-gradient(to bottom, #fdf1f4 0%, #fdfbfb 100%) !important; 
        
        background-size: cover !important; 
        background-attachment: fixed !important; 
        background-repeat: no-repeat !important; 
        z-index: 8 !important; 
    }
	
#order_review {
    padding-left: 15px !important; 
    padding-right: 15px !important; 
}
}

ul#cfw-breadcrumb {
    display: flex !important;
    justify-content: space-between !important;
    position: relative;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
    list-style: none !important;
    counter-reset: checkout-step;
}
 
ul#cfw-breadcrumb li.cart {
    display: none !important;
}
	
ul#cfw-breadcrumb::before {
    content: '';
    position: absolute;
    top: 15px; 
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: #e1e1e1;
    z-index: 1;
}

ul#cfw-breadcrumb li.tab {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important; 
}

ul#cfw-breadcrumb li.tab::after,
ul#cfw-breadcrumb li.tab a::after,
ul#cfw-breadcrumb li.tab::before {
    display: none !important;
    content: none !important;
}

ul#cfw-breadcrumb li.tab a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    font-size: 13px !important;
    color: #777777 !important;
    text-decoration: none !important;
    text-transform: capitalize;
    width: 100%;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent !important; /* <-- Added here */
}
 
ul#cfw-breadcrumb li.tab a::before {
    counter-increment: checkout-step;
    content: counter(checkout-step) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 2px solid #e1e1e1; 
    border-radius: 50%;
    margin-bottom: 8px;
    font-weight: bold;
    color: #999999; 
    font-size: 14px;
    transition: all 0.2s ease; 
}

ul#cfw-breadcrumb li.tab a:hover::before {
    border-color: #bbbbbb !important;
    color: #555555 !important;
}

ul#cfw-breadcrumb li.tab.active a::before,
ul#cfw-breadcrumb li.tab.completed a::before { 
    border-color: #000000 !important;
    background: #000000 !important;
    color: #ffffff !important;
}

ul#cfw-breadcrumb li.tab.active a,
ul#cfw-breadcrumb li.tab.completed a {
    color: #000000 !important;
    font-weight: bold !important;
}

#cfw  {
    min-height: 100vh;}
#cfw-alert-container {display:none;}