/* 1. Hide the search input field completely by default */
.wp-block-search .wp-block-search__input {
    width: 150px !important; /* Adjust width as needed */
    opacity: 1;
	background-color:#FFFFFF;
    padding: 5px !important;
    border-bottom: 1px solid #000 !important; /* Minimalist underline */
}

/* 2. Show the input field only when hovering over the container */
.wp-block-search:hover .wp-block-search__input,
.wp-block-search__input:focus {
    width: 150px !important; /* Adjust width as needed */
    opacity: 1;
    padding: 5px !important;
    border-bottom: 1px solid #000 !important; /* Minimalist underline */
}

/* 3. Force the button to be an icon only (Hide the "Search" text) */
.wp-block-search__button {
    background: transparent !important;
    border: none !important;
    padding: 5px !important;
    cursor: pointer;
    font-size: 0 !important; /* This "kills" the text 'Search' */
    line-height: 0 !important;
}

/* 4. Add a clean Magnifying Glass if the theme didn't provide one */
.wp-block-search__button::before {
    content: '🔍'; /* Use a simple emoji or Dashicon */
    font-size: 18px !important; /* Adjust size to look 'small' */
    visibility: visible;
    display: block;
}

/* 5. Clean up the wrapper layout */
.wp-block-search__inside-wrapper {
    border: none !important;
    display: flex;
    align-items: center;
}
.wc-block-mini-cart__footer{
	margin-right: 10px;
}
.wc-block-mini-cart__footer::before {
    content: "Use code 		\"WTFIRST10\" and enjoy a discount of 10% on your first order!";
    display: block !important;
    padding-bottom: 8px !important;
	padding-top: 8px;
	font-style: italic;
	margin-bottom:10px;
	margin-top:-10px;
	background-color:#B78495;
    text-align: center !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
	font-weight: bold;
    color: #ffffff !important;
    width: 100% !important;
    z-index: 999 !important;
}
.welcome-label{
	font-size: 40px;
	margin-bottom:-10px;
}
/* Force the container to expand */
.wp-container-core-post-content-is-layout-2b802be7 > .alignwide
 {
    max-width: 100% !important;
    width: 100% !important;
	 padding-left:10px;
	 padding-right:10px;
}

/* Ensure the WooCommerce wrapper also expands */
.woocommerce {
    max-width: 100% !important;
}

/* Only apply to the WooCommerce Account Page */
@media (min-width: 992px) {
    .woocommerce-account .woocommerce {
        display: flex !important;
        flex-direction: row;
        align-items: flex-start;
        gap: 80px; /* Wide luxury spacing */
        margin-top: 40px;
    }

    /* The 'Master' List (Sidebar) */
    .woocommerce-MyAccount-navigation {
        flex: 0 0 260px !important;
        border-right: 1px solid #eeeeee;
        padding-right: 40px;
        position: sticky;
        top: 100px; /* Keeps menu visible as they scroll through orders */
    }

    /* The 'Detail' Area (Content) */
    .woocommerce-MyAccount-content {
        flex: 1 !important;
        min-height: 600px;
        background: #ffffff;
    }
}

@media (max-width: 991px) {
    /* Reset WooCommerce defaults */
    .woocommerce-MyAccount-navigation {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .woocommerce-MyAccount-navigation ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border-top: 1px solid #f2f2f2;
    }

    /* Style each link as a thumb-friendly row */
    .woocommerce-MyAccount-navigation ul li {
        border-bottom: 1px solid #f2f2f2;
    }

    .woocommerce-MyAccount-navigation ul li a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 24px 0 !important; /* Large tap target for thumbs */
        text-decoration: none !important;
        color: #1a1a1a !important;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: padding-left 0.3s ease;
    }

    /* The Custom Right Arrow (The Reveal) */
    .woocommerce-MyAccount-navigation ul li a::after {
        content: '\2192'; /* Unicode Thin Arrow */
        font-size: 18px;
        color: #cccccc;
        font-weight: 300;
    }

    /* Active State Polish */
    .woocommerce-MyAccount-navigation ul li.is-active a {
        font-weight: 700;
        color: #000 !important;
    }
}

/* Floating 'Back' link for mobile Drill-Down */
.my-account-back-link {
    display: none; /* Hidden by default on desktop */
    margin-bottom: 35px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    cursor: pointer;
    align-items: center;
    transition: color 0.3s ease;
}

@media (max-width: 991px) {
    /* Displayed via JS when inside a sub-page */
    .my-account-back-link {
        display: inline-flex;
    }
    
    .my-account-back-link:hover {
        color: #000;
    }
}

/* 1. Remove the Table Structure */
.woocommerce-orders-table {
    border: none !important;
    display: block !important;
}

.woocommerce-orders-table thead {
    display: none; /* Hide table headers (Date, Status, etc.) */
}

.woocommerce-orders-table tbody, 
.woocommerce-orders-table tr {
    display: block !important;
    width: 100%;
}

/* 2. Style each Order as a 'Card' */
.woocommerce-orders-table__row {
    padding: 30px 0 !important;
    border-bottom: 1px solid #eeeeee !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

/* 3. Re-arrange the Order Data (Date, Status, Total) */
.woocommerce-orders-table__cell {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border: none !important;
    padding: 8px 0 !important;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Label Styling (Date:, Status:, etc.) */
.woocommerce-orders-table__cell::before {
    content: attr(data-title); /* Pulls the label automatically */
    font-weight: 300;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #999;
}

/* 4. The "View" Button - Minimalist Style */
.woocommerce-orders-table__cell-order-actions .button.view {
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    padding: 12px 0 !important;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 15px;
    display: block;
    transition: all 0.3s ease;
}

.woocommerce-orders-table__cell-order-actions .button.view:hover {
    background: #000 !important;
    color: #fff !important;
}

/* 5. Special Status Coloring */
mark.order-status {
    background: transparent !important;
    color: #000 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}