/*
 Theme Name:   Blocksy Child
 Description:  Blocksy Child theme
 Author:       Creative Themes
 Template:     blocksy
 Text Domain:  blocksy-child
*/

[data-products] .product figure img {
	border: solid 1px #f4f4f5;
	border-radius:5px;
}
/* CATEGORY BRAND CARDS */
.products .product-category {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* HOVER EFFECT (APPLE STYLE) */
.products .product-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE (LOGO STYLE) */
.products .product-category img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

/* REMOVE COUNT STYLE */
.products .count {
    display: none;
}

/* TITLE STYLE */
.products .woocommerce-loop-category__title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

/* ADD SPACING */
.products {
    gap: 20px !important;
}
.products .product-category {
    background: #f5f5f7;
    border: none;
}

.products .product-category:hover {
    background: #000;
}

.products .product-category:hover h2 {
    color: #fff;
}
/* 1. Target the list specifically within the product description tab */
.single-product #tab-description ul {
    list-style: none !important;
    padding: 0 !important;
}

/* 2. Position the list items and add spacing */
.single-product #tab-description ul li {
    position: relative !important;
    padding-left: 40px !important; /* Space for the checkmark circle */
    margin-bottom: 16px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #475569 !important; /* Premium gray text */
    display: block !important;
}

/* 3. Create the Red Circle with Checkmark */
.single-product #tab-description ul li::before {
    content: '\2713'; /* Unicode Checkmark */
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: #e7f4ff !important;
    color: #008fff !important;
    border-radius: 50% !important; /* Perfect circle */
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    font-weight: 900 !important;
}

/* 4. Remove margin from the last bullet for a clean finish */
.single-product #tab-description ul li:last-child {
    margin-bottom: 0 !important;
}
#search-results {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.search-item {
    display: flex;
	justify-content: flex-start !important;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-item:hover {
    background: #f7f7f7;
}

.search-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.search-info {
    display: flex;
    flex-direction: column;
}

.search-title {
    font-size: 14px;
}

.search-price {
    font-size: 13px;
    color: green;
}

.search-empty {
    padding: 10px;
    text-align: center;
}

/* FULL WIDTH CONTAINER */
.custom-search-box {
    width: 100%;
    position: relative;
	padding: 67px 0 0;
}

/* SEARCH BAR */
.search-wrapper {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

/* INPUT */
#live-search {
    flex: 1;
    padding: 14px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* BUTTON */
#search-btn {
    background: #f4f4f5;
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-size: 17px;
}

/* HOVER */
#search-btn:hover {
    background: #d6d6d6;
}

/* RESULTS DROPDOWN */
#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    z-index: 999;
    border-radius: 10px;
    margin-top:5px
}

.wpc-open-close-filters-button {
	width: 100%;
	margin: 0;
}

/* Main Grid Layout */
    .mbay-shy-grid {
        max-width: 1290px;
        margin: 0 20px auto;
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 20px;
        font-family: -apple-system, sans-serif;
    }

    .shy-card {
        border-radius: 20px;
        padding: 30px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 280px;
        border: 1px solid rgba(0,0,0,0.03);
        box-sizing: border-box;
        position: relative;
    }

    /* Standardized Button Base */
    .shy-btn-static {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px; 
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        box-sizing: border-box;
        cursor: default;
        transition: all 0.3s ease;
    }

    /* BUTTON 1: Border matches Warm Card Background */
    .btn-warm-match {
        background: transparent;
        border: 2px solid #e0ddd5; /* Darker version of warm bg for visibility */
        color: #8a7e6a; /* Earthy tone to match theme */
    }

    /* BUTTON 2: BG matches Cool Card Background */
    .btn-cool-match {
        background-color: #f2f6f8; /* Exactly matches shy-cool bg */
        border: 1.5px solid rgba(0,0,0,0.1); /* Subtle border for definition */
        color: #333;
    }

    /* Mobile View Fixes */
    @media (max-width: 768px) {
        .mbay-shy-grid {
            display: flex; 
            overflow-x: auto; 
            scroll-snap-type: x mandatory; 
            gap: 15px;
            scrollbar-width: none; 
        }
        
        .mbay-shy-grid::-webkit-scrollbar { display: none; }

        .shy-card {
            flex: 0 0 90%; 
            scroll-snap-align: center;
            flex-direction: row; 
            padding: 25px 20px;
            min-height: 220px;
        }

        .shy-content { width: 55%; text-align: left; }
        .shy-img-container { width: 45%; display: flex; justify-content: flex-end; }
        
        .shy-title { font-size: 19px; margin-bottom: 5px; }
        
        .shy-btn-static { 
            padding: 10px 18px; 
            font-size: 11px; 
            white-space: nowrap;
        }
    }

    /* Backgrounds */
    .shy-warm { background-color: #f9f7f2; }
    .shy-cool { background-color: #f2f6f8; }

    .shy-tag {
        font-size: 9px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 800;
        color: #c41e1e;
        margin-bottom: 5px;
    }

    .shy-title {
        font-weight: 700;
        color: #333;
        line-height: 1.1;
    }

    .shy-info {
        font-size: 12px;
        color: rgba(0,0,0,0.5);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .shy-img-container img {
        width: 115%;
        height: auto;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
    }

/* mbay: Match the light blue style from the image */
span.onsale {
    background-color: #05cf0a !important; /* Your Green */
    color: #ffffff !important;           /* Pure White */
    padding: 0 8px !important;           /* Adjusted for 22px height */
    border-radius: 3px !important;
    font-weight: 700 !important;
    font-size: 12px !important;          /* Keeps it clean */
    min-width: unset !important;
    min-height: unset !important;
    top: 5px;
    left: 5px;
    height: 22px;
    line-height: 22px !important;        /* Centers text vertically */
    display: flex !important;            /* Ensures perfect centering */
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
}

/* 2026 Modern Sold Out Badge */
.out-of-stock-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* Centers it perfectly on the image */
	background: rgba(18, 18, 18, 0.75) !important;
	/* Elegant dark background */
	backdrop-filter: blur(8px);
	/* 2026 Blur Trend */
	-webkit-backdrop-filter: blur(8px);
	color: #ffffff !important;
	padding: 10px 20px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase;
	border-radius: 40px;
	/* Capsule shape - very popular in 2026 */
	border: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 5;
	pointer-events: none;
	/* Allows clicks to pass through if needed */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Optional: Fade the product image when out of stock */
.product.outofstock .ct-media-container img {
	filter: grayscale(100%) opacity(0.6);
	transition: all 0.4s ease;
}

/* Force titles to be the same height (2 lines max) */
.woocommerce-loop-product__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 400;
}

/* Ensure the product card containers stay equal */

.wpc-edit-filter-set {
	display: none;
}

/* Premium Add to Cart Styling */
.single_add_to_cart_button {
	background-color: #004a99 !important;
	/* Brand Blue */
}

.single-product .woocommerce-product-gallery .ct-media-container img {
	border: solid 1px #eee;
}


/* Container for the payment methods */
.ct-payment-methods {
	border: 1px solid #e2e8f0 !important;
	/* Clean light border */
	border-radius: 8px !important;
	padding: 20px 15px !important;
	margin-top: 30px !important;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

/* Styling the '100% Secure' Legend title */
.ct-payment-methods legend {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #4a5568 !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 10px !important;
	background: #ffffff;
	/* Pulls the title into the border line */
}

/* Sizing the icons (Visa, Mastercard, Apple Pay) */
.ct-icon-container .ct-icon {
	width: 45px !important;
	/* Slightly larger for better visibility */
	height: auto !important;
	filter: grayscale(20%);
	/* Modern 2026 look - slightly desaturated */
	transition: filter 0.3s ease;
}

.ct-icon-container:hover .ct-icon {
	filter: grayscale(0%);
	/* Pops into full color on hover */
}

.single-product .product_title {
	font-family: inherit;
	font-weight: 400;
}

.single-product .woocommerce-product-gallery li.active .ct-media-container:after {
	border-color: #2f2f2f;
}

.product_title {
	font-size: 34px;
	color: #1a202c;
}

.sale-price del {
	font-weight: 400;
	font-size:14px;
}

.single-product div.product p.price,
.single-product div.product span.price {
	font-size: 20px;
	font-weight: 700;

}

.woocommerce-price-suffix {
	font-size: 14px;
	color: #718096;
	font-weight: 300;

}

.woocommerce-checkout .wc-block-components-country-input {
	margin-top: 12px !important;
}

.ct-woocommerce-cart-form .cart_totals {
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 20px;
}

.woocommerce-cart-form {
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 20px;
}

.archive .price {
	color: #000;
}

.single-product .ct-product-additional-info ul li svg {
	fill: #c3c4c7;
}

.ct-woo-card-stock {
    color: #e50895;
    font-weight: 500;
    font-size: 14px;
}

.wp-block-woocommerce-checkout-order-summary-block {
	border-radius: 10px;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	border-radius: 10px;
}

.wc-block-checkout__use-address-for-billing {
	display: none !important;
}

/* Force hide the shipping options fieldset */
fieldset#shipping-option.wc-block-checkout__shipping-option {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Force hide the billing checkbox container */
.wc-block-checkout__billing-address-checkbox {
	display: none !important;
}

.wc-block-checkout .wc-block-components-radio-control__option {
	font-weight: 500;
}

.wc-block-checkout #amwal-logo {
	height: 28px !important;
	max-height: 28px !important;
	max-width: inherit !important;
}

/* --- 1. MINIMALIST PAYMENT CARDS --- */
.wc-block-checkout .wc-block-components-radio-control-accordion-option {
	border: 1px solid #eef2f6 !important;
	/* Ultra-light border */
	border-radius: 12px !important;
	margin-bottom: 12px !important;
	background: #ffffff !important;
	transition: all 0.2s ease !important;
}

/* Selected state with clean blue accent */
.wc-block-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	background-color: #fafcfe !important;
}

/* Fix "Crashed" alignment and add breathing room */
.wc-block-checkout .wc-block-components-radio-control__option {
	display: flex !important;
	align-items: center !important;
	gap: 16px !important;
}

/* --- 2. CUSTOM MINIMAL RADIO BUTTONS --- */
.wc-block-checkout .wc-block-components-radio-control__input {
	appearance: none !important;
	width: 22px !important;
	height: 22px !important;
	border: 2px solid #d1d5db !important;
	border-radius: 50% !important;
	display: grid !important;
	place-content: center !important;
	margin: 0 !important;
}

.wc-block-checkout .wc-block-components-radio-control__input:checked {
	border-color: #008fff !important;
}

.wc-block-checkout .wc-block-components-radio-control__input:checked::before {
	content: "" !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 50% !important;
	background: #008fff !important;
}

/* --- 3. THE MINIMAL PLACE ORDER BUTTON --- */
.wc-block-components-checkout-place-order-button {
	background: #008fff !important;
	border-radius: 8px !important;
	padding: 20px !important;
	box-shadow: none !important;
	/* No shadow for true minimalism */
	transition: opacity 0.2s ease !important;
}

.wc-block-components-checkout-place-order-button:hover {
	opacity: 0.9 !important;
	/* Soft fade instead of color change */
}

.wc-block-components-checkout-place-order-button__text {
	font-weight: 600 !important;
	font-size: 16px !important;
	letter-spacing: 0.3px !important;
	text-transform: none !important;
	/* Modern lowercase/sentence case look */
}

/* --- 4. TEXT & DESCRIPTION CLEANUP --- */
.wc-block-checkout .wc-block-components-radio-control__label {
	font-weight: 600 !important;
	color: #111827 !important;
}

.wc-block-checkout .wc-block-components-radio-control-accordion-content {
	padding: 0 20px 15px 48px !important;
	font-size: 13px !important;
	color: #6b7280 !important;
	line-height: 1.4 !important;
}

.wc-block-checkout .wc-block-components-radio-control--highlight-checked:after {
	border: none;
}

.wc-block-checkout .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option:after {
	background: none;
}

.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control.disable-radio-control .wc-block-components-radio-control__option {
	padding-left: 48px;
}

/* --- 1. CART ITEM CONTAINER --- */
.ct-cart-content .mini_cart_item {
	display: flex !important;
    padding: 5px 0 !important;
    border-bottom: 1px solid #f0f2f5 !important;
    position: relative !important;
    margin: 0;
}

/* --- 2. IMAGE REDESIGN (SOFT RADIUS) --- */
.ct-cart-content .ct-media-container {
	width: 50px !important;
    height: 50px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: 1px solid #eef2f6 !important;
}

.ct-cart-content .ct-media-container img {
	padding: 2px !important;
}

/* --- 3. PRODUCT DATA & TITLES --- */
.ct-cart-content .product-data {
	flex: 1 !important;
}

.ct-cart-content .product-title {
	font-size: 14px !important;
    color: #404553 !important;
    line-height: 1.3 !important;
    font-weight: 400;
}

/* Variation Text Styling */
.ct-cart-content .variation {
	font-size: 14px !important;
	color: #404553 !important;
	margin: 0 !important;
}
.ct-cart-content .variation dt {
	font-weight: 400;
}

/* Price Alignment */
.ct-cart-content .quantity {
	font-weight: 400 !important;
	font-size: 14px !important;
	margin-top: 5px !important;
	color: #404553 !important;
}
.ct-cart-content .quantity .amount {
	font-weight: 400 !important;
	color: #404553 !important;
}

/* --- 4. TRASH ICON / REMOVE BUTTON --- */
.ct-cart-content .remove {
	position: absolute !important;
	right: 0 !important;
	top: 15px !important;
	background: #f1f5f9 !important;
	width: 24px !important;
	height: 24px !important;
	border-radius: 6px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.2s ease !important;
}

.ct-cart-content .remove:hover {
	background: #fee2e2 !important;
	color: #ef4444 !important;
}

/* --- 5. SUBTOTAL & BUTTONS --- */
.ct-cart-content .total {
	padding: 15px 0 !important;
	display: flex !important;
	justify-content: space-between !important;
	margin: 0 5px 0;
}

.ct-cart-content .buttons {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 12px !important;
	padding-top: 0;
}

/* View Cart Button */
.ct-cart-content .button.wc-forward:not(.checkout) {
	background: #f1f5f9 !important;
	color: #475569 !important;
	border-radius: 10px !important;
	font-weight: 600 !important;
	border: none !important;
}

/* Checkout Button */
.ct-cart-content .button.checkout {
	background: #008fff !important;
	/* Brand Blue */
	color: #ffffff !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
}

.woocommerce-cart .includes_tax {
	display: block;
}

/* --- 2026 Minimal Dashboard Container --- */
.woocommerce-account .woocommerce {
	background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid #f0f0f0;
}

/* --- Sleek Sidebar Navigation --- */
.woocommerce-account .woocommerce-MyAccount-navigation {
	flex: 0 0 240px;
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	border: 1px solid #f0f0f0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 14px 18px;
	color: #555;
	font-weight: 500;
	border-radius: 10px;
	margin-bottom: 4px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	background: #0081ff;
	/* Mbay Brand Blue */
	color: #fff;
}

/* --- Clean Card Layout for Orders --- */
.woocommerce-account .woocommerce-MyAccount-content {
	flex: 1;
}

.woocommerce-MyAccount-content .shop_table {
	border: none !important;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.woocommerce-MyAccount-content .shop_table thead {
	background-color: #f8f9fa;
}

.woocommerce-MyAccount-content .shop_table thead th {
	padding: 18px !important;
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
}

.woocommerce-MyAccount-content .shop_table tbody td {
	padding: 20px 18px !important;
	border-top: 1px solid #f7f7f7;
	font-size: 14px;
	vertical-align: middle;
}

/* --- Modern Floating Action Buttons --- */
.woocommerce-MyAccount-content .button {
	background: #f0f2f5 !important;
	color: #1a1a1a !important;
	border: none !important;
	padding: 10px 20px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	transition: 0.2s;
}

.woocommerce-MyAccount-content .button.view {
	background: #0081ff !important;
	color: #fff !important;
}

.woocommerce-MyAccount-content .button:hover {
	filter: brightness(0.9);
}

.single-product .entry-summary-items .price {
	border-top: solid 1px #ddd;
    padding: 10px 0;
    border-bottom: solid 1px #ddd;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}
.single-product .entry-summary-items .sale-price {
	flex-direction: column;
	line-height: 22px;
	align-items: flex-start;
}
.single-product .entry-summary-items .product_title {
	margin-bottom:5px;
}
.sale-price {
	align-items: flex-start;
	flex-direction: column;
	line-height: 18px;
}
.archive .sale-price del {
	font-size:14px;
}



/* Mobile Responsiveness */
@media (max-width: 992px) {
	.woocommerce-account .woocommerce {
		flex-direction: column;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		flex: none;
		width: 100%;
	}
}

.woocommerce-MyAccount-navigation ul li:not(:last-child) a {
	border: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: #fff;
}

.woocommerce-account table.shop_table tr>*:first-child {
	padding-inline-start: 18px;
}

.woocommerce-account .ct-acount-nav {
	align-self: auto;
}

.woocommerce-view-order .pay {
	margin-right: 10px;
}
.top-announcement-slider {
    background: #000000;
    color: white;
    height: 40px;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
	max-width:100%;
	margin:0;
}

.slider-track {
    display: flex;
    flex-direction: column;
    animation: text-slide 12s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
    height: 40px;
    line-height: 40px;
    flex-shrink: 0;
}

@keyframes text-slide {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-40px); }
    50%, 70% { transform: translateY(-80px); }
    75%, 95% { transform: translateY(-120px); }
    100% { transform: translateY(-120px); }
}
.ct-header-text .entry-content p{
	color:#fff !important;
}
#offcanvas .ct-header-socials  .ct-icon-container svg {
	fill: #ffffff;
}
.ct-footer a, 
.ct-footer p {
    font-size: 12px !important;
}
.ct-footer .wp-image-579 {
    background-color: #ffffff !important;
    color: #cccccc !important;
    border: 1px solid #eeeeee;
    pointer-events: none;
    cursor: default;
    padding: 3px 6px;
    border-radius: 5px;
}
/* Change product title size on Shop, Home, and Archive pages only */
:is(.archive, .tax-product_cat, .home, .search-results) .woocommerce-loop-product__title {
    font-size: 14px !important; /* Adjust this number to your preference */
    font-weight: 400;           /* Optional: Makes the title slightly bolder */
    line-height: 1.4;
}

/* Ensure the title size remains unchanged on the actual Product Details page */
.single-product .product_title {
    font-size: 1.5rem; 
}
.wpc-filter-title {
	font-weight: 500;
}
/* 1. Hide the original SVG icons while keeping the box design */
.ct-payment-methods .ct-icon-container {
    display: none !important;
}

/* 2. Add your custom image inside the existing box */
.ct-payment-methods::after {
    content: "";
    display: block;
    width: 100%;
    /* Adjust height based on your image size */
    height: 37px; 
    background-image: url('https://www.mbayoman.com/wp-content/uploads/2026/02/payment-method.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
}
.mbay-action-area {
        max-width: 900px;
        margin:0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    }

    /* Grid Layout: 2 Columns on Desktop, 1 on Mobile */
    .mbay-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Columns */
        gap: 20px;
    }

    @media (max-width: 768px) {
        .mbay-grid {
            grid-template-columns: 1fr; /* 1 Column on Mobile */
        }
    }

    .mbay-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        height: 55px;
        border-radius: 12px;
        font-weight: 500;
        font-size: 16px;
        transition: none; /* Removed hover effect */
    }

    /* Instagram Gradient Border Button */
    .btn-insta {
        background: white;
        color: #1a1a1a;
        padding: 2px;
        background-image: linear-gradient(white, white), 
                          linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        border: solid 3px transparent; /* Adjusted thickness */
    }

    /* Google Button - No Shadow */
    .btn-google {
        background: #ffffff;
        color: #3c4043;
        border: 1px solid #dadce0;
        box-shadow: none; /* Removed shadow */
    }

    .mbay-btn img {
        height: 24px;
        width: auto;
        margin-right: 12px;
    }
.stk-e357873 {
	z-index:2;
}
/* STOCK BOX DESIGN */
.woocommerce-variation-availability p.stock {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    border-radius: 6px;
    position: relative;
    padding-left: 40px;
}

/* ICON COMMON */
.woocommerce-variation-availability p.stock::before {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

/* IN STOCK */
.woocommerce-variation-availability p.in-stock {
    background: #f0fff4;
    color: #2f855a;
    border-left: 4px solid #38a169;
}

.woocommerce-variation-availability p.in-stock::before {
    content: "✔";
    color: #38a169;
}

/* OUT OF STOCK */
.woocommerce-variation-availability p.out-of-stock {
    background: #fff5f5;
    color: #c53030;
    border-left: 4px solid #e53e3e;
}

.woocommerce-variation-availability p.out-of-stock::before {
    content: "✖";
    color: #e53e3e;
}
/* login */
/* 1. Main Account Container & Card */
.woocommerce-account .u-columns.col2-set {
    border-radius: 24px;
    display: flex !important;
    flex-direction: column;
}

/* 2. Force Login/Register Columns to Stack inside the Card */
.woocommerce-account .u-column1.col-1, 
.woocommerce-account .u-column2.col-2 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

/* 3. Authentication Tabs Styling */
.mbay-auth-tabs {
    display: flex;
    background: #f1f9ff; 
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 30px;
}

.mbay-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    color: #008fff; 
}

.mbay-tab.active {
    background: #008fff;
    color: #ffffff;
}

/* 4. Floating Labels Design */
.woocommerce-account .form-row {
    position: relative;
    margin-bottom: 25px !important;
}





/* 3. Style the Input Field on this page to match */
.woocommerce-lost-password .woocommerce-Input.input-text {
    width: 100% !important;
    padding: 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background-color: #f8fafc !important;
    font-size: 14px !important;
}



/* 5. Input Fields & Select Boxes */
.woocommerce-account input.input-text, 
.woocommerce-account select,
.woocommerce-account .mbay-select {
    width: 100% !important;
    padding: 16px 18px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    background: transparent !important;
    height: auto !important;
}


.woocommerce-account .button.woocommerce-form-login__submit, 
.woocommerce-account .button.woocommerce-form-register__submit {
    width: 100% !important;
    background-color: #008fff !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.3s ease;
}
.woocommerce-lost-password .woocommerce-Button {
	width: 100% !important;
    background-color: #008fff !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.3s ease;
}
.woocommerce-account .ct-woo-unauthorized .col2-set>*:first-child {
	padding:0;
	border:0;
}
.woocommerce-account .u-column1 h2, 
.woocommerce-account .u-column2 h2 {
    display: none !important;
}

.woocommerce-account .button:hover {
    background-color: #000 !important;
}
.lost_reset_password .form-row:last-of-type {
    margin-bottom: 0 !important;
}
.woocommerce-form-register .form-row:last-of-type {
	margin-bottom: 0 !important;
}
/* 7. Side-by-Side Registration Fields */

.mbay-col-title { width: 35%; }
.mbay-col-name { width: 65%; }

/* 8. Mobile Responsiveness */
@media (max-width: 480px) {
    .mbay-reg-row { 
        flex-direction: column; 
        gap: 0; 
    }
    .mbay-col-title, 
    .mbay-col-name { 
        width: 100%; 
    }

}
/* Hide Register by default on first load */
.woocommerce-account .u-column2.col-2 {
    display: none !important;
}

/* Allow JS to show it when the tab is clicked */
.woocommerce-account .u-column2.col-2.show-reg {
    display: block !important;
}
.woocommerce-account .mbay-welcome-wrap h2 {
	margin:0;
	display: block !important;
}




/* RESPONSIVE AREA */
@media screen and (max-width: 680px) {
	.custom-search-box {
    width: 100%;
    position: relative;
    padding: 67px 0 7px;
}

	.woocommerce-account .woocommerce-orders-table__cell-order-actions {
		text-align: center;
	}

	.woocommerce-account .woocommerce-orders-table__cell-order-actions a {
		margin-bottom: 0 !important;
	}

	.woocommerce-account [data-title="Actions"]::before {
		content: "" !important;
		display: none !important;
		text-align: center !important;
	}

	.woocommerce-view-order .order-actions--heading {
		display: none !important;
	}

	@media (max-width: 768px) {

		/* Target the navigation container inside the account class */
		.woocommerce-account .woocommerce-MyAccount-navigation ul {
			display: flex !important;
			flex-wrap: nowrap !important;
			overflow-x: auto !important;
			-webkit-overflow-scrolling: touch;

			padding-bottom: 5px !important;
			scrollbar-width: none;
			/* Hides scrollbar for Firefox */
		}

		/* Hide scrollbar for Chrome/Safari */
		.woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
			display: none;
		}

		/* Keep items from shrinking so they push past the screen edge */
		.woocommerce-account .woocommerce-MyAccount-navigation-link {
			flex: 0 0 auto !important;
			list-style: none !important;
			display: block !important;
		}
	}

	.single-product .product_title {
		font-weight: 400;
	}

	.woocommerce-price-suffix {
		font-size: 12px;
		line-height: 10px;
	}

	[data-products] .product .woocommerce-loop-product__title {
		font-size: 15px;
	}

	.archive .hero-section {
		display: none;
	}

	.archive [data-sidebar] {
		grid-row-gap: 0;
	}

	.wpc-custom-selected-terms {
		display: block !important;

	}

	.wpc-custom-selected-terms ul {
		padding-left: 0;
		display: flex;
		flex-wrap: wrap;
	}

	.single-product .woocommerce-product-gallery .flexy-pills ol li {
		flex-shrink: 1;
	}

	.single-product .woocommerce-product-gallery .flexy-pills ol {
		flex-wrap: nowrap;
	}

	.single-product div.product p.price,
	.single-product div.product span.price {
		font-size: 22px;

	}

}

@media screen and (max-width: 999px) {
	.single-product .woocommerce-product-gallery .flexy-pills {
		margin-top: 15px;
	}

	.product_title {
		font-size: 18px !important;
		
	}

}