/* ============= HEADER STRUCTURE ============= */
.site-header {
    position: relative;
    width: 100%;
    z-index: 100;
    background: #ffffff;

    &::before {
        content: '';
        pointer-events: none;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        width: 100%;
        background: #f0f0f0;
    }
}

.header-navbar.twc-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding-inline: 20px;
}

.header-logo.twc-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.header-logo.twc-logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* Primary Navigation */
.twc-primary-nav-wrapper {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    padding-right: 10px;
}

.twc-primary-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    width: 100%;
    z-index: 1000;
}

.twc-primary-nav > li {
    margin-right: 0;
}

.twc-primary-nav > li > a {
    color: #222;
    font: 300 13px/1.4 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 75px;
    white-space: nowrap;
    padding-block: 15px;
}

.twc-primary-nav > li > a:hover {
    color: #888;
}

/* Ensure proper spacing between columns */
.twc-primary-nav .sub-menu > li:not(:last-child) {
    margin-right: 0;
}

/* Megamenu Panel (shared container) */
.twc-primary-nav > li:hover > .sub-menu,
.twc-primary-nav > li > *:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.twc-primary-nav > li > .sub-menu {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
    padding: 10px 50px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    position: absolute;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
}



.twc-primary-nav .sub-menu > li {
    position: relative; /* Add this for proper positioning of sub-sub-menus */
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
}

.twc-primary-nav .sub-menu > li > a {
    font-weight: bold;
    display: block;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding-bottom: 8px;
    white-space: nowrap;
}

.twc-primary-nav .sub-menu > li > a:hover {
    color: #888;
}

.twc-primary-nav .sub-menu > li > .sub-menu {
    display: flex;
    flex-direction: column;
    position: inherit;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: transparent;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: baseline;
}

.twc-primary-nav .sub-menu > li > .sub-menu li a {
    font-weight: normal;
    padding-block: 1px;
    color: #555;
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: normal;
    line-height: 1.4;
}

.twc-primary-nav .sub-menu > li > .sub-menu li a:hover {
    color: #000;
}

/* Sub-sub-menu items */
.twc-primary-nav .sub-menu > li > .sub-menu li {
    display: flex;
    width: 100%;
    text-align: left;
}

/* Utility Navigation */
.twc-utility-nav-wrapper {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.twc-utility-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.twc-utility-nav a {
    color: #222;
    font: 300 13px/1.4 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.twc-utility-nav a:hover {
    color: #888;
}

/* Submenu Tree */

/* Target ALL DEPTH 1 ITEMS (e.g., "Polyurethane Foam Sheets") */
/* Depth 0 (Parent Items) */
/*
.twc-primary-nav > .menu-item.has-submenu > a {
    background: rgb(255, 255, 255);
}
*/

/* ===== DEPTH 1 (ROWS) ===== */
/* Target the PARENT container of Depth 1 items (rows) */
.twc-primary-nav .sub-menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust column width */
    gap: 20px; /* Spacing between columns */
    row-gap: 0px;
    width: 100%;
    column-gap: 50px;
}

/* Style Depth 1 items (rows) */


.twc-primary-nav .sub-menu-list > li > a {
	font-weight: bold;
	color: #333;
	/* text-transform: uppercase; */
	font-size: 15px;
	letter-spacing: 1px;
	padding-bottom: 10px;
	display: flex;
	padding-top: 10px;
	text-decoration: none;
	color: black;
	/* font-family: Open Sans,Helvetica,Arial,sans-serif; */
}

.twc-primary-nav .sub-menu-list > li > a:hover {
    color: #c1b2a3;
}

/* ===== DEPTH 2 (COLUMNS) ===== */
/* Target Depth 2 items (columns under each row) */
.twc-primary-nav .sub-menu--level-1 .menu-item > a {
    font-weight: normal;
    padding-block: 1px;
    color: #555;
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: normal;
    line-height: 1.4;
    transition: background 0.3s ease;
}

.twc-primary-nav .sub-menu--level-1 .menu-item > a:hover {
    color: #c1b2a3;
}

/* Submenu Image Text */
.image-panel-textbox {
    position: absolute;
    background: transparent;
    color: black;
    width: 600px;
    top: 260px;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    box-shadow: inset 0 0 0 1px #200000;
}


/* Responsive */
@media (max-width: 992px) {
    .header-navbar.twc-header {
        flex-direction: column;
        padding: 15px 20px;
    }

    .header-logo.twc-logo {
        margin: 10px auto;
        text-align: center;
    }

    .twc-primary-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .twc-primary-nav .sub-menu,
    .twc-primary-nav .sub-menu .sub-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .twc-utility-nav-wrapper {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .twc-utility-nav {
        justify-content: center;
    }
}







/* Submenu Image Panel aligned to far right */
.sub-menu-image-panel {
    flex: 0 0 436px;
    margin-left: auto;
    background: #f9f8f6; /* Replace with desired background */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-shadow: inset 0 0 0 1px #e5e5e5;
}

/* Ensure image and text don't exceed panel size */
.sub-menu-image-panel img {
    display: block;
    margin-bottom: 1px;
    width: 436px;
    height: 232px;
    object-position: center; /* Centers the image */
    border-radius: 0px;
}

.image-panel-textbox {
    padding: 15px;
    text-align: center;
    font-size: 15px;
    color: #333;
    font-weight: bold;
    visibility: hidden;
}

/* Show the text box on hover */

.thread-sleep-content > h3 {
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}

.thread-sleep-content > p {
    text-align: left;
    font-size: 16px;
    color: #333;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.4;
    white-space: normal;
    transition: background 0.3s ease;
    position: relative;
    bottom: 12px;
}

.thread-sleep-content > a {
    position: relative;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
    bottom: 26px;
}

.thread-sleep-content > a:hover {
    color: #c1b2a3;
}

.thread-sleep-column > h4 {
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.thread-sleep-column-left > h4 {
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}


.thread-sleep-column > ul > li > a {
    text-align: left;
    font-size: 13px;
    color: #333;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.4;
    white-space: normal;
    transition: background 0.3s ease;
    text-decoration: none;
}

.thread-sleep-column-left > ul > li > a {
    text-align: left;
    font-size: 13px;
    color: #333;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.4;
    white-space: normal;
    transition: background 0.3s ease;
    text-decoration: none;
}

.thread-sleep-column > ul > li > a:hover {
    color: #c1b2a3;
}

.thread-sleep-column-left > ul > li > a:hover {
    color: #c1b2a3;
}

.thread-sleep-lists {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    justify-content: center;
    padding-top: 10px;
}

.thread-sleep-content {
    padding: 25px;
    border-bottom: #c1b2a3 solid 0.5px;
    padding-bottom: 0px;
}

.thread-sleep-column-left > ul {
    border-right: #c1b2a3 solid 1px;
}

.thread-sleep-column-left > ul > li {
    padding-right: 30px ;
}

/* Header Icons */

.twc-header-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    padding: 15px;
    padding-top: 25px;
}

.twc-header-icons::before {
    content: "";
    display: inline-block;
    height: 45px; /* ← Your desired height */
    width: 1px;
    background-color: #dedede;
    margin-top: -10px;
}

.twc-header-icons a {
    text-decoration: none;
    color: #333;
}

.twc-header-icons .material-symbols-outlined {
    font-size: 28px; /* Adjust icon size */
    line-height: 1;
    font-variation-settings:
    'FILL' 0,    /* 0 = outline, 1 = filled */
    'wght' 100,  /* Weight: 100–700+ */
    'GRAD' 0,    /* Grade (thickness adjustment) */
    'opsz' 28;   /* Optical size: matches icon size */
}

/* Header Icons Utility*/

.twc-header-icons-utility {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
    padding: 15px;
    padding-top: 25px;
    padding-right: 0px;
}

.twc-header-icons-utility::before {
    content: "";
    display: inline-block;
    height: 45px; /* ← Your desired height */
    width: 1px;
    background-color: #dedede;
    margin-top: -10px;
}

.twc-header-icons-utility a {
    text-decoration: none;
    color: #333;
}

.twc-header-icons-utility .material-symbols-outlined {
    font-size: 28px; /* Adjust icon size */
    line-height: 1;
    font-variation-settings:
    'FILL' 0,    /* 0 = outline, 1 = filled */
    'wght' 100,  /* Weight: 100–700+ */
    'GRAD' 0,    /* Grade (thickness adjustment) */
    'opsz' 28;   /* Optical size: matches icon size */
}

/* Banner Menu */
.banner-menu {
    box-sizing: inherit;
    position: sticky;
    z-index: 100;
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 10px;
    font-size: 14px;
}

.banner-menu a {
    color: #333;
}

/* Search Icon Expandable */
/* Container */
.header-search {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.5rem;
}

/* Search form initially collapsed */
.search-form {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0;
  pointer-events: none;
}

/* Form expanded */
.header-search.active .search-form {
    transform: scaleX(1);
    opacity: 1;
    pointer-events: auto;
}

/* Input styling */
.search-field {
  flex: 1;
  min-width: 150px;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0px;
}

/* Shared button base */
.header-search .search-toggle,
.header-search .search-submit {
    all: unset;
    appearance: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 6px;
    border-radius: 0px;
    transition: background 0.2s ease;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: transparent;
    color: inherit;
}

.header-search .search-submit {
    margin-right: 0.25rem;
}

/* Icon switch styling (optional fallback if JS not used) */
.header-search .search-toggle .material-symbols-outlined {
    transition: transform 0.2s ease;
}

/* Responsive support */
@media (max-width: 768px) {
    .header-search.active .search-form {
        max-width: 100%;
    }

    .search-field {
        min-width: 100px;
    }
}

.search-toggle .material-symbols-outlined,
.search-submit .material-symbols-outlined {
    font-size: 28px; /* Adjust icon size */
    line-height: 1;
    font-variation-settings:
    'FILL' 0,    /* 0 = outline, 1 = filled */
    'wght' 100,  /* Weight: 100–700+ */
    'GRAD' 0,    /* Grade (thickness adjustment) */
    'opsz' 28;   /* Optical size: matches icon size */
}

/* Login My-Account */

.custom-login-wrapper {
  display: flex;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}
.custom-login-content {
  flex: 1;
  min-width: 300px;
}
.custom-login-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 0px;
}
.auth-toggle-buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
.auth-tab {
  flex: 1;
  padding: 12px;
  border: 1px solid #000;
  background: #f9f8f6;
  cursor: pointer;
  text-transform: uppercase;
  color: black;
}

.auth-tab:hover {
  flex: 1;
  padding: 12px;
  border: 1px solid #000;
  background: #f9f8f6;
  cursor: pointer;
  text-transform: uppercase;
  color: black;
}

.auth-tab.active {
  background: #f9f8f6;
  color: black;
}

.auth-section {
  margin-top: 20px;
}

.order-help-section {
  margin-top: 40px;
}

.order-buttons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.order-buttons a {
  display: inline-block;
  padding: 20px;
  border: 1px solid #000;
  text-align: center;
  text-transform: uppercase;
  width: 150px;
  font-weight: bold;
}

.woocommerce form.login, .woocommerce form.checkout_coupon, .woocommerce form.register {
    border: 1px solid black;
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 0px;
    /* width: 100%; */
}

form.woocommerce-form-login input#username {
    border: 1px solid black;
    width: 45%;
}

form.woocommerce-form-login input#password {
    border: 1px solid black;
    width: 45%;
}

form.woocommerce-form-register input#reg_email {
    border: 1px solid black;
    width: 45%;
}

.woocommerce form .form-row .button {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

p.woocommerce-LostPassword.lost_password a {
    color: black;
    text-decoration: none;
}

p.woocommerce-LostPassword.lost_password a:hover {
    color: #f9f8f6;
}

.order-buttons a {
    background: #f9f8f6;
    color: black;
    border: solid 1px black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.order-buttons a:hover {
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}

/* Dashboard */

.custom-dashboard {
    text-align: center;
    margin: 2rem auto;
    max-width: 1000px;
}
.dashboard-heading {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.dashboard-welcome {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.dashboard-tile {
    background: #f9f8f6;
    padding: 2rem 1rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s ease;
}
.dashboard-tile:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.dashboard-tile img {
    width: 40px;
    margin-bottom: 1rem;
}
.dashboard-tile strong {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.dashboard-tile span {
    font-size: 0.9rem;
    color: #666;
}
.dashboard-logout {
    margin-top: 2rem;
}
.dashboard-logout a {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
}
.dashboard-logout a:hover {
    text-decoration: underline;
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
    justify-items: center;
    gap: 20px;
}

/* Dashboard Icons */

.dashboard-tile span.material-symbols-outlined {
    font-size: 40px;
    margin-bottom: 1rem;
    color: #333;
}

/* Orders Page */

/* --- Custom Orders Table Styling --- */
.custom-orders-page table.woocommerce-orders-table {
  border-collapse: collapse;
  width: 100%;
  background: #fafafa;
  font-family: inherit;
  margin-top: 30px;
  box-shadow: 0 0 0 1px #ddd;
}

.custom-orders-page table.woocommerce-orders-table th,
.custom-orders-page table.woocommerce-orders-table td {
  padding: 16px 20px;
  font-size: 15px;
  text-align: center;
}

.custom-orders-page table.woocommerce-orders-table th .nobr {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
}

.custom-orders-page table.woocommerce-orders-table thead {
  background: #d6d5d366;
  font-weight: 600;
}

/* --- Action buttons --- */
.custom-orders-page .woocommerce-orders-table .woocommerce-button {
    background: #d6d5d366;
    color: black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    font-weight: 400;
    border-radius: 0px;
    border: solid 1px #8080804f;
    margin: 5px
}




.custom-orders-page .woocommerce-orders-table .woocommerce-button:hover {
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    font-weight: 400;
    border-radius: 0px;
    border: solid 1px #8080804f;
    margin: 5px;
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}

.woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tbody th > a {
    color: black;
    font-weight: 500;
    text-decoration: none;
}

/* Order Details */

.custom-order-card {
	background: #fff;
	border-radius: 0px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	padding: 25px;
	font-family: 'Helvetica Neue', sans-serif;
	margin-bottom: 30px;
}

.order-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.track-order-btn {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    font-weight: 400;
    border-radius: 0px;
}

.track-order-btn:hover {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    font-weight: 400;
    border-radius: 0px;
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}

.order-product-row {
	display: flex;
	align-items: center;
	border-top: 1px solid #eee;
	padding: 20px 0;
}

.product-thumbnail img {
	width: 250px;
	border-radius: 0px;
}

.product-info {
	flex: 1;
	margin-left: 20px;
    margin-top: 40px;
}

.product-info h4 {
	margin: 0 0 5px;
	color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    width: 50%;
}

.product-meta {
	font-size: 14px;
	color: #666;
}

.product-status {
	text-align: right;
	min-width: 200px;
	font-size: 14px;
	color: #333;
}

.order-total-bar {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	font-size: 16px;
	padding-top: 20px;
	border-top: 2px solid #eee;
	margin-top: 20px;
}

.order-actions {
	text-align: right;
	margin-top: 20px;
}

.order-actions .action-btn {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    font-weight: 400;
    border-radius: 0px;
}

.order-actions .action-btn:hover {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    font-weight: 400;
    border-radius: 0px;
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}

.order-vat-bar {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    padding-top: 20px;
    margin-top: 20px;
}

.order-subtotal-bar {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    padding-top: 20px;
    margin-top: 20px;
}

.order-shipping-bar {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    padding-top: 20px;
    margin-top: 20px;
}

.woocommerce .woocommerce-customer-details address {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f9f8f6;
    border: black solid 1px;
}

/* Form-Pay */

#payment #place_order:hover {
    float: none;
    width: 100%;
    box-sizing: border-box;
    margin: var(--global-md-spacing) 0 1em;
    padding: 0.6em 1em;
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
    background: #f9f8f6;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

#payment #place_order {
    float: none;
    width: 100%;
    box-sizing: border-box;
    margin: var(--global-md-spacing) 0 1em;
    padding: 0.6em 1em;
    background: #f9f8f6;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}


/* Form-Checkout */

.checkout-columns {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.checkout-left, .checkout-right {
	flex: 1 1 48%;
	background: #fff;
	padding: 20px;
	border-radius: 0px;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

#order_review_heading {
	margin-top: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.custom-order-summary table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

.custom-order-summary table th,
.custom-order-summary table td {
	padding: 10px;
	border-bottom: 1px solid #eee;
}

form.checkout .woocommerce-checkout-review-order {
    width: 100%;
    padding-left: var(--global-md-spacing);
    float: left;
}

tr.cart-subtotal .woocommerce-Price-amount.amount {
    display: flex;
    justify-content: right;
}

tr.order-total .woocommerce-Price-amount.amount {
    display: flex;
    justify-content: right;
}

tr.tax-total .woocommerce-Price-amount.amount,
tr.tax-rate .woocommerce-Price-amount.amount {
    display: flex;
    justify-content: right;
}

form.checkout #order_review_heading {
    float: left;
    width: 100%;
    margin: 0 0 .5em;
    padding-left: 0px;
}

th.product-total {
	text-align: right;
	font-weight: bold;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    background: #f9f8f6;
    border-radius: 0px;
    border: none;
}

.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
    border-color: black;
}

.woocommerce-info {
	display: none !important;
}

form.checkout_coupon {
	display: block !important;
}

p.form-row.form-row-last .button {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    justify-content: right;
}

.woocommerce form.login, .woocommerce form.checkout_coupon, .woocommerce form.register {
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    border: none;
}

/* Align just the button to the right */
form.checkout_coupon.woocommerce-form-coupon p.form-row.form-row-last {
	text-align: right;
	width: 10%;
	margin: 0;
}

/* Optional: Reduce input width so the button fits */
form.checkout_coupon.woocommerce-form-coupon p.form-row.form-row-first input {
	width: 100%;
	box-sizing: border-box;
}


/* Footer */

.designed-by {
    text-decoration: none;
    color: white;
    user-select: none; /* Standard property */
    -webkit-user-select: none; /* Safari/Chrome */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
}

/* ===== Custom Footer Styles ===== */
.custom-footer {
    background-color: white;
    color: #333;
    font-family: "Helvetica Neue", sans-serif;
    padding: 3rem 1rem;
    font-size: 15px;
    line-height: 1.6;
    padding-right: 0px;
    padding-left: 0px;
    border-top: 1px solid #ddd;
}

.custom-footer a {
	color: #333;
	text-decoration: underline;
}

.custom-footer h3,
.custom-footer h4 {
	color: #111;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.custom-footer em {
	font-style: italic;
}

/* ===== Promo Section ===== */
.footer-promos {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2.5rem;
	text-align: center;
}

.footer-promos .promo {
	flex: 1 1 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-promos .promo img {
	width: 40px;
	height: auto;
	margin-bottom: 0.5rem;
}

/* ===== Newsletter Signup ===== */
.newsletter-signup {
    text-align: center;
    margin: 0 auto 3rem;
    background: white;
    width: 100%;
    margin-top: 3rem;
}

.newsletter-signup form {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}

.newsletter-signup input[type="email"] {
	padding: 0.6rem 1rem;
	border: 1px solid #ccc;
	border-radius: 0px;
	width: 100%;
	max-width: 300px;
}

.newsletter-signup button {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.newsletter-signup button:hover {
	box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}

/* ===== Footer Bottom ===== */
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-bottom > div {
	flex: 1 1 200px;
    border-right: 1px solid black;
    padding-left: 20px;
}

.footer-bottom img {
	width: 120px;
	margin-bottom: 1rem;
}

.footer-bottom ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-bottom li {
	margin-bottom: 0.5rem;
}

/* ===== Legal ===== */
.footer-legal {
	text-align: center;
	font-size: 0.875rem;
	border-top: 1px solid #ddd;
	padding-top: 1rem;
}

#post-10 {
    box-shadow: none;
}

.promo .material-symbols-outlined {
    font-size: 40px;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

#post-11 {
    box-shadow: none;
}

#post-9 {
    box-shadow: none;
}

.woocommerce-Button.button {
    background: #f9f8f6;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
    border: none;
}

/* Default Billing and Shipping Page */

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 100%;
    padding: 20px;
    border: solid 1px #ddd;
    background: #f9f8f6;
    border-radius: 0px;
    margin-bottom: 20px;

    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    font-family: var(--global-body-font-family);
    color: var(--global-palette4);
    text-decoration: none;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 100%;
    padding: 20px;
    border: solid 1px #ddd;
    background: #f9f8f6;
    border-radius: 0px;

    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    font-family: var(--global-body-font-family);
    color: var(--global-palette4);
    text-decoration: none;
}

.woocommerce-account .addresses .title {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}


.woocommerce-account .addresses .title .edit {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    display: block;
    font-size: 16px;
    margin: 5px 0 0 0; /* top margin only */
    margin-bottom: 10px;;
}



.woocommerce-account .addresses .title .edit:hover {
    color: #c1b2a3;
    text-decoration: none;
}

.woocommerce-account .addresses .title h2 {
    font-size: 17px;
    font-weight: 700;
}

.address-image-column img {
  width: 100%;
  max-width: 500px;
  border-radius: 0px;
}

/* Payment-Methods Page */

.custom-empty-payment-methods {
    text-align: center;
    padding: 50px 20px;
    font-size: 18px;
    color: #666;
}

/* Reduce padding for table cells */
.woocommerce-MyAccount-paymentMethods td,
.woocommerce-MyAccount-paymentMethods th {
    padding: 10px 12px !important;
    vertical-align: middle !important;
}

/* Ensure a smaller row height */
.woocommerce-MyAccount-paymentMethods tr {
    height: 100px;
    border-bottom: 1px solid #ddd;
}

/* Make the action buttons column hug the right */
.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--actions {
    text-align: right !important;
}

/* Space between action buttons */
.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--actions a.button {
    margin-left: 6px;
}

.card-text {
    white-space: nowrap;
}

/* Increase size of credit card logos in payment methods table */
.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--method .card-brand-logo {
    width: 50%;      /* adjust size as needed */
    height: auto;
    display: block;
}

/* Ensure logo + text are on the same line and vertically centered */
.card-brand-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
    width: 200px;
}

/* Make sure table cells align everything nicely */
.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--method {
    text-align: left !important;
    vertical-align: middle !important;
}

.woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods thead {
    background: #d6d5d366;
    font-weight: 600;
    color: black;
    font-size: 16px;
}

.woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 0 0 1px #ddd;
}

.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--actions a.button {
    background: #d6d5d366;
    color: black;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    border-radius: 0px;
}

/* Form-Pay - Methods */

/* Style the payment methods list */
ul.wc_payment_methods.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 0px;
    overflow: hidden;
}

/* Style each payment method */
.wc_payment_method {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    position: relative;
}

.wc_payment_method:last-child {
    border-bottom: none;
}

/* Style the radio buttons */
.wc_payment_method input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

/* Style labels (method names) */
.wc_payment_method label {
    font-weight: 600;
    cursor: pointer;
}

/* Highlight the active/selected payment method */
.wc_payment_method input[type="radio"]:checked + label {
    color: #000;
}

/* Optional: style the description box */
.payment_box {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}


/* My Marketing Preferences Page */

.marketing-preferences-form button.button {
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.woocommerce table.shop_table input {
    width: 20px;
    height: 20px;
    display: flex;
}

/* Target radio buttons in the marketing preferences form */
.marketing-preferences-form input[type="radio"] {
    accent-color: #000; /* Modern browsers support this */
}

/* Fallback for browsers that don't support accent-color */
.marketing-preferences-form input[type="radio"]:checked::before {
    background-color: #000 !important;
    border-color: #000 !important;
}

/* Make address actions inline */
.woocommerce-address-actions {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.woocommerce-address-actions a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

.woocommerce-address-actions a.remove {
    color: #c00; /* red for remove */
}

/* Improve tile styling */
.u-columns.woocommerce-Addresses .woocommerce-Address {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Style for add-new tile */
.add-new-address {
    background: #f9f9f9;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.add-address-tile {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.add-address-tile .add-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 10px;
}


/* Edit-Address Form */

.woocommerce-MyAccount-content p {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.woocommerce-Address {
    background: #f9f8f6;
    padding: 20px;
    border-radius: 0px;
    margin-bottom: 20px;
    width: 400px;
}

.woocommerce-address-actions a.remove {
    background: #f9f8f6;
    color: black !important;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
    width: 50px;
}



.woocommerce-PaymentMethod.woocommerce-PaymentMethod--method.payment-method-method span.header-text {
    padding-left: 75px !important;
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
}

.woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions span.header-text {
    padding-right: 15px !important;
    display: flex;
    justify-content: flex-end;
}


/* Default header styles remain unchanged */

/* Only affects my-account pages */
body.custom-my-account-header .header-navbar.twc-header {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

body.custom-my-account-header .header-navbar.twc-header .custom-header-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

body.custom-my-account-header .header-navbar.twc-header .custom-header-row-2 {
    display: flex;
    justify-content: center;
}

/* Checkout Validation Messages */

body.invalid-shipping-postcode #place_order {
    display: none !important;
}

/* Trade application form */

.trade-application-form {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    column-gap: 20%;
}

.trade-application-form input {
    background: #f9f8f6;
    border-radius: 0px;
    border: none;
}

.trade-update-button {
    margin-top: 20px;
}

.trade-application-submit-button {
    background: #f9f8f6;
    color: black;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0px;
    border: none;
}

.trade-application-submit-button:hover {
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
    background: #f9f8f6;
    color: black;
    border: none;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0px;
}

.trade-application-submit-button:focus {
    outline: 2px solid #f9f8f6;
    outline-offset: 2px;
    background: #f9f8f6;
    color: black;
}

.trade-application-submit-button:active {
    transform: translateY(0);
    background: #f9f8f6;
    color: black;
}

.trade-account-intro h2 {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.trade-account-intro {
    margin-bottom: 50px;
}

/* Billing Address Form */

.billing-address-fields {
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    column-gap: 20%;
}

.billing-address-fields input {
    background: #f9f8f6;
    border-radius: 0px;
    border: none;
}

/* Shipping Address Form */

.woocommerce form .form-row label {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.address-intro h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.address-intro p {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding-bottom: 20px;
}

.shipping-address-fields {
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    column-gap: 20%;
}

.shipping-address-fields input {
    background: #f9f8f6;
    border-radius: 0px;
    border: none;
}

button[type="submit"][name="save_address"] {
    background: #f9f8f6;
    color: black;
    border: none;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0px;
}

.billing-address-form h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.shipping-address-form h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}



/* Enhanced Billing Toggle with Icon */
.billing-toggle-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px !important;
    background: #fafafa !important;
    border: 2px solid #dfdcff !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.billing-toggle-label:hover {
    background: #f0edff !important;
    border-color: #007cba !important;
}

.toggle-icon {
    margin-right: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

#show-billing-address-checkbox:checked ~ .toggle-icon {
    transform: rotate(0deg);
}

#show-billing-address-checkbox:not(:checked) ~ .toggle-icon {
    transform: rotate(-90deg);
}

.toggle-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3338;
}

.billing_address {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    background: #fff;
}

.shipping_address {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    background: #fff;
}

.woocommerce .shop_table .woocommerce-Price-amount bdi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  font-weight: 600; /* optional */
  color: #333;      /* optional */
}

/* Toggles */

/* Hide both default checkboxes */
#show-billing-address-checkbox,
#ship-to-different-address-checkbox {
    display: none;
}

/* Style both labels consistently */
#billing-address-toggle label,
.woocommerce-shipping-fields .woocommerce-form__label-for-checkbox {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f9f8f6;
    border: 1px solid #dee2e6;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    margin-top: 20px;
}

#billing-address-toggle label:hover,
.woocommerce-shipping-fields .woocommerce-form__label-for-checkbox:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Address sections Edit Address*/

/* Address Form Side by Side Layout */
.address-sections-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
}

.billing-address-form,
.shipping-address-form {
    width: 50%;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .address-sections-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .billing-address-form,
    .shipping-address-form {
        width: 100%;
    }
}


/* Marketing Preferences */

.marketing_preferences_table_wrapper {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketing-preferences-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marketing_preferences_table_wrapper table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 0 auto;
}

.marketing_preferences_table_wrapper th,
.marketing_preferences_table_wrapper td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eaeaea;
}

.marketing_preferences_table_wrapper th {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    width: 25%;
    background: #f9f8f6;
}

.marketing_preferences_table_wrapper td {
    text-align: center;
    width: 75%;
}

.marketing_preferences_table_wrapper td p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.marketing_preferences_table_wrapper label {
    display: inline-block;
    margin: 0 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.marketing_preferences_table_wrapper input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.1);
}

.marketing_preferences_table_wrapper tr:last-child th,
.marketing_preferences_table_wrapper tr:last-child td {
    border-bottom: none;
}

.marketing-preferences-form p {
    text-align: center;
    margin-top: 25px;
    width: 100%;
}

.marketing-preferences-form .button {
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.marketing-preferences-form .button:hover {
    background: #005a87;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .marketing_preferences_table_wrapper {
        padding: 15px;
    }
    
    .marketing_preferences_table_wrapper th,
    .marketing_preferences_table_wrapper td {
        padding: 15px 10px;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .marketing_preferences_table_wrapper th {
        background: #f8f9fa;
        border-bottom: none;
        font-size: 15px;
        padding-bottom: 5px;
    }
    
    .marketing_preferences_table_wrapper td {
        padding-top: 5px;
        padding-bottom: 20px;
    }
    
    .marketing_preferences_table_wrapper label {
        display: block;
        margin: 8px 0;
    }
}

.marketing-preferences-form .button:hover {
    background: #f9f8f6;
}

.marketing-title h2 {
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

/* Hide alerts that appear before the marketing form */
.woocommerce-MyAccount-content .woocommerce-notices-wrapper,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-error {
    display: none !important;
}

.orders h2 {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.content-area {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

/* Edit Account Page */

.Account-Details {
    justify-self: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.Account-Details-Header h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* Password Page */

.Password-Page-Wrapper {
    justify-self: center;
}

.Password-Requirements {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.Password-Requirements-List {
  text-align: left;
}


.Password-Page-Title h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

.Password-Page-Title ul {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 20px;
}

.Password-Page-Title p {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

/* Trade Account Page */

.trace-account-page-wrapper {
    justify-self: center;
}

.trade-account-intro h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

.notification-bar a {
    color: black;
}

/* Payment Methods Page */

.payment-methods-wrapper {
    justify-self: center;
}

.woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods {
    background: #f9f8f6;
}

.PaymetnMethods-intro h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

/* Orders Page */

.orders h2 {
    color: #000;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

.woocommerce-EditAccountForm fieldset {
    padding: .625em 1.425em .625em;
    border: 1px solid var(--global-gray-500);
    margin-top: 1.2em;
    margin-bottom: 1.2em;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Order Received Page */

.woocommerce-order .custom-addresses-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px auto;
    width: 75%;
    justify-self: center;
}

.woocommerce-order .address-section {
    background: #f9f9f9;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.woocommerce-order .address-section h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.woocommerce-order .address-field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.woocommerce-order .form-row {
    margin-bottom: 15px;
}

.woocommerce-order .form-row-wide {
    flex: 1 1 100%;
    min-width: 100%;
}

.woocommerce-order .form-row-first,
.woocommerce-order .form-row-last {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
}

.woocommerce-order .form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
    font-size: 0.9em;
}

.woocommerce-order .form-row .value {
    padding: 10px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .custom-addresses-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row-first,
    .form-row-last {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

    .order-details-wrapper{
        justify-self: center;
    }
    
    .order-details-wrapper li { 
        color: #000;
        font-family: Open Sans,Helvetica,Arial,sans-serif;
        font-size: 18px;
        font-weight: 100;
        line-height: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .Thank-You-Wrapper {
        justify-self: center;
        color: #000;
        font-family: Open Sans,Helvetica,Arial,sans-serif;
        font-size: 18px;
        font-weight: 100;
        line-height: 28px;
        text-align: center;
        padding-bottom: 25px;
        padding-top: 20px;
    }

    .button-order-received-wrapper {
        display: flex;
        justify-content: center;
    }

    .button-order-received-wrapper a.button {
    background: #f9f8f6;
    color: black;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    justify-self: center;

    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-weight: 100;
    line-height: 28px;
    text-align: center;
    }

 /* Side-Cart Plugin CSS */

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn {
    background: #f9f8f6;
    color: black;
    border: none;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover, .xoo-wsc-container .xoo-wsc-btn:hover {
    box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
    background: #f9f8f6;
    color: black;
    border: none;
    padding: 10px 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0px;
}

.xoo-wsc-btn .amount {
    color: black;
}

/* Slide-Out Cart */

/* === Slideout Cart Wrapper === */
#slideout-cart {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#slideout-cart.active {
  visibility: visible;
  opacity: 1;
}
#slideout-cart .slideout-cart-overlay {
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

/* === Panel === */
#slideout-cart .slideout-cart-panel {
  position: absolute;
  top: 0; right: 0;
  width: 420px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
#slideout-cart.active .slideout-cart-panel {
  transform: translateX(0);
}
#slideout-cart .close-cart {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* === Header === */
#slideout-cart .cart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
  margin-top: 40px;
  background: #f9f8f6;
}
#slideout-cart .cart-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}
#slideout-cart .cart-icon {
  position: relative;
  font-size: 1.5rem;
}
#slideout-cart .cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #000;
  color: #fff;
  font-size: 0.7rem;
  border-radius: 50%;
  padding: 2px 5px;
}

/* === Cart Items === */
#slideout-cart .cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
#slideout-cart .modern-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#slideout-cart .cart-item {
  display: flex;
  align-items: flex-start;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
}
#slideout-cart .cart-item-thumb img {
  width: 70px;
  height: auto;
  border-radius: 6px;
}
#slideout-cart .cart-item-details {
  flex: 1;
  margin-left: 10px;
}
#slideout-cart .cart-item-details h3 {
  font-size: 1rem;
  margin: 0;
}
#slideout-cart .cart-item-details p {
  margin: 2px 0;
  font-size: 0.85rem;
  color: #333;
}
#slideout-cart .remove-item {
  text-decoration: none;
  font-size: 1.1rem;
  color: #999;
  position: absolute;
  top: 8px;
  right: 10px;
}
#slideout-cart .remove-item:hover {
  color: #d33;
}

/* === Footer === */
#slideout-cart .cart-footer {
  border-top: 1px solid #eee;
  padding: 1rem 1.25rem;
  background: #f9f8f6;
}
#slideout-cart .cart-subtotal {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
#slideout-cart .cart-note {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}
#slideout-cart .cart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#slideout-cart .cart-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  width: 100%;

}

#slideout-cart .cart-btn.view-cart {
  background: #d6d5d366;
  color: #000;
}

#slideout-cart .cart-btn.view-cart:hover {
  background: #f9f8f6;
  color: #000;
  box-shadow: 0px 5px 25px -7px rgba(0,0,0,0.1);
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

#slideout-cart .cart-btn.continue {
  background: #d6d5d366;
  border: 1px solid #ddd;
  color: #000;
}

#slideout-cart .cart-btn.continue:hover {
  background: #f9f8f6;
  color: #000;
  box-shadow: 0px 5px 25px -7px rgba(0,0,0,0.1);
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

#slideout-cart .cart-btn.checkout {
  background: #d6d5d366;
  color: #000;
}

#slideout-cart .cart-btn.checkout:hover {
  background: #f9f8f6;
  color: #000;
  box-shadow: 0px 5px 25px -7px rgba(0,0,0,0.1);
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}




#slideout-cart .cart_list,
#slideout-cart ul.woocommerce-mini-cart {
  list-style: none;
  padding: 0;
}
#slideout-cart .mini_cart_item {
  display: flex;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px;
}
#slideout-cart .mini_cart_item img {
  width: 70px;
  height: auto;
  border-radius: 6px;
  margin-right: 10px;
}
#slideout-cart .mini_cart_item .quantity {
  font-size: 0.85rem;
  color: #333;
}
#slideout-cart .mini_cart_item a.remove {
  font-size: 1.1rem;
  color: #999;
  text-decoration: none;
}
#slideout-cart .mini_cart_item a.remove:hover {
  color: #d33;
}

.woocommerce a.remove:hover {
    color: #fff !important;
    background: none;
    text-decoration: none;
}

/* Mega Menu Video Integration */
/* Ensure the panel behaves like a media container */
.sub-menu-image-panel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Video replaces the image visually */
.sub-menu-image-panel .mega-menu-video {
    display: block;
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;          /* keeps video proportion */
    object-fit: cover;             /* crops like an image */
    background: #000;
    pointer-events: none;           /* prevents hover stealing */
}

/* Optional: text overlay positioning */
.sub-menu-image-panel .image-panel-textbox {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    color: #fff;
}

/* Ensure hub content appears BELOW media */
.sub-menu-image-panel .thread-sleep-layout {
    position: relative;
    z-index: 1;
    margin-top: 12px;
}

/* Payment Methods Page Styles */

.woocommerce ul.woocommerce-order-overview.woocommerce-thankyou-order-details {
	margin: 1.5em 0;
	display: flex;
	justify-content: center;
}

.cart-footer.is-hidden {
  display: none;
}

/* Custom Product Page. */

.custom-product-page {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
}

.product-main-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
}

.product-gallery-column img {
	width: 100%;
	height: auto;
}

.product-summary-column {
	position: sticky;
	top: 40px;
}

.product-title {
	font-size: 32px;
	margin: 10px 0 15px;
}

.product-trust-badges {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	font-size: 14px;
}

.product-details-section {
	margin-top: 80px;
}





/* Single Product Page - Summary Section */

.product-summary-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.rating-count {
	color: #666;
	text-decoration: none;
}

.product-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0;
}

.product-price-row {
	font-size: 22px;
}

.product-price-row del {
	color: #999;
	margin-right: 8px;
}

.product-price-row ins {
	text-decoration: none;
	font-weight: 600;
}

.product-promo-badge {
	display: inline-block;
	background: #7b1d2d;
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	width: fit-content;
}

.product-attributes-summary {
	display: flex;
	gap: 12px;
	font-size: 14px;
	color: #333;
}

.product-cart-row {
	margin-top: 10px;
}

.product-shipping-estimate {
	font-size: 13px;
	color: #666;
}

.product-trust-badges {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.trust-badge {
	border: 1px solid #ddd;
	padding: 6px 10px;
	font-size: 12px;
	border-radius: 6px;
}

/* Swatch - Single Product Page */

/* ----------------------------
   Custom Product Gallery
---------------------------- */

.custom-product-gallery {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Main image */
.gallery-main {
	width: 100%;
	max-width: 520px; /* controls main image width */
}

.gallery-main img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* ----------------------------
   Custom Product Gallery
---------------------------- */

.custom-product-gallery {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Main image */
.gallery-main {
	width: 100%;
	max-width: 900px; /* main image stays large */
}

.gallery-main img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* ----------------------------
   Swatch / Thumbnail area
---------------------------- */

.gallery-thumbs-wrapper {
	width: 100%;
	max-width: 900px; /* align with main image */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}

/* Scroll container */
.gallery-thumbs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 260px; /* 👈 swatch width */
	grid-template-rows: repeat(2, 260px); /* 2 rows = 4 visible */
	gap: 16px;

	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;

	/* exactly 2 columns wide */
	max-width: calc((260px * 2) + 16px);

	scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar {
	display: none;
}

/* 🔁 If ONLY 1 or 2 thumbnails → switch to row layout */
.gallery-thumbs:has(.gallery-thumb:nth-child(2)):not(:has(.gallery-thumb:nth-child(3))),
.gallery-thumbs:has(.gallery-thumb:only-child) {
	grid-auto-flow: column;
	grid-template-columns: repeat(auto-fit, 260px);
	grid-template-rows: none;
	justify-content: flex-start;
	max-width: calc((260px * 2) + 16px);
}


/* Individual swatch */
.gallery-thumb {
	width: 260px;
	height: auto;
	padding: 0;
	border: 1px solid #ddd;
	background: none;
	cursor: pointer;
	scroll-snap-align: start;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 6px;
}

/* Active swatch */
.gallery-thumb.is-active {
	border-color: #000;
}

/* Arrows */
.swatch-arrow {
	all: unset;               /* 🔥 nukes ALL button styles */
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111;
}

.swatch-arrow .material-symbols-outlined {
	font-size: 22px;
	line-height: 1;
}

/* Optional hover/focus */
.swatch-arrow:hover {
	color: #000;
    background: none;
}

.swatch-arrow:active {
	color: #000;
    background: none;
}

.swatch-arrow:focus-visible {
	outline: 2px solid #000;
	outline-offset: 4px;
}



/* Single Product Page - Add to Cart Button */
.single-product .single_add_to_cart_button {
	--global-palette-btn-bg: #f9f8f6;
	--global-palette-btn: #000;
    border-radius: 0px;
}

.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover {
	background: #f9f8f6;
    color: black;
}

.single-product .single_add_to_cart_button.disabled {
	--global-palette-btn-bg: #e5e5e5;
	--global-palette-btn: #888;
	cursor: not-allowed;
}

.single-product .single_add_to_cart_button:not(.disabled):hover {
	--global-palette-btn-bg: #ecebe8;
}




.quantity.spinners-added {
	border: none;
	background: #f9f8f6;
	transition: all .2s ease;
}

.woocommerce .quantity.spinners-added .qty {
	width: 2.3em;
	text-align: center;
	border: 0;
	padding: 0;
	box-shadow: none;
	height: 38px;
    background: #f9f8f6;
}

/* Related Products Section */

.woocommerce .content-bg .product.entry.loop-entry, .woocommerce-page .content-bg .product.entry.loop-entry {
	box-shadow: none;
	width: 200px;
    padding-right: 100px;

}

.woocommerce ul.products li.product .entry-content-wrap {
	padding: 1rem 1rem 1.5rem;
	position: relative;
	margin: 0 .5em;
	border-radius: .25rem;
	transition: transform .3s cubic-bezier(0.17, 0.67, 0.35, 0.95);
    width: 150px;
}

/* Kill ALL transforms inside recommendations */
.product-recommendations * {
	transform: none !important;
}


.product-recommendations .add-to-wishlist {
	display: none !important;
}

.product-recommendations h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.woocommerce ul.products li.product a.woocommerce-loop-image-link {
	position: relative;
	display: block;
	outline-offset: -5px;
	right: -40px;
}

.woocommerce ul.products li.product .price {
	text-align: center;
}



/* Star rating wrapper */
.product-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #111;
}

/* Base (empty stars) */
.stars-outer,
.stars-inner {
	font-family: "Material Symbols Outlined";
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 20;
	font-size: 18px;
	line-height: 1;
}

/* Empty stars */
.stars-outer {
	position: relative;
	color: #e0e0e0;
}

.stars-outer::before {
	content: "star star star star star";
}

/* Filled stars */
.stars-inner {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	color: #f5b301; /* gold */
}

.stars-inner::before {
	content: "star star star star star";
}

/* Review count */
.rating-count {
	color: #555;
}




/* Wrapper */
.info-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

/* ⭐ Rating row */
.product-rating-row {
	display: flex;
	align-items: center;
}

.product-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* ⭐ Stars */
.stars-outer {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 1;
}

.stars-outer::before {
	content: "★★★★★";
	color: #e0e0e0;
}

.stars-inner {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	color: #f5a623;
}

.stars-inner::before {
	content: "★★★★★";
}

/* Review count */
.rating-count {
	font-size: 14px;
	color: #555;
}

/* 💰 Price + badge row */
.product-price-badge-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.product-price {
	font-size: 22px;
	font-weight: 600;
}

/* Promo badge */
.product-promo-badge {
	background: #f9f8f6;
	color: black;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

/* 🔥 Kill Woo default spacing */
.product-price,
.product-price .price {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.2;
}

/* Wrapper spacing control */
.info-wrapper {
	display: flex;
	flex-direction: row;
	gap: 6px; /* was 12px */
	margin: 0;
	padding: 0;
}

/* Rating row */
.product-rating-row {
	margin: 0;
	padding: 0;
	line-height: 1;
    transform: translateY(-3px);
}

/* Stars container */
.product-rating-stars {
	line-height: 1;
	margin: 0;
}

/* Price + badge row */
.product-price-badge-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

/* Promo badge */
.product-promo-badge {
	line-height: 1;
	padding: 4px 10px;
	margin: 0;
}

.woocommerce div.product span.price, .woocommerce div.product p.price {
	font-size: 25px;
    color: black;
    font-family: Open Sans,Helvetica,Arial,sans-serif;
}

button, .button, .wp-block-button__link, .wp-element-button, input[type="button"], input[type="reset"], input[type="submit"] {
	border-radius: 3px;
	background: #f9f8f6;
    color: black;
	padding: .4em 1em;
	border: 0;
	font-size: 1.125rem;
	line-height: 1.6;
	display: inline-block;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: all .2s ease;
	box-shadow: 0px 0px 0px -7px rgba(0,0,0,0);
}

button, .button, .wp-block-button__link, .wp-element-button, input[type="button"], input[type="reset"], input[type="submit"]:hover {
    background: #f9f8f6;
    color: black;
}

* {
    font-family: Open Sans,Helvetica,Arial,sans-serif;
}



.product-cart-row .custom-simple-cart .single_add_to_cart_button {
	width: 464px;
	max-width: none;
}

.woocommerce div.product .button.single_add_to_cart_button {
	height: 38px;
	line-height: 38px;
	padding: 0 1em;
	text-align: center;
}

/* Make Recommended Products span full width */
.product-recommendations {
	grid-column: 1 / -1;
}


.product-trust-badges .trust-badge {
    color: black;
}

/* Stripe */

#payment ul.wc_payment_methods li.wc_payment_method input[type="radio"]:first-child:checked + label {
	border-left: 5px solid #d7d7d7;
	background: #f9f8f6;
}

#payment ul.wc_payment_methods li.wc_payment_method input[type="radio"]:first-child:checked + label::before {
	background: black !important;
	border-color: black !important;
}

#payment ul.wc_payment_methods li.wc_payment_method > label:hover {
	border-left: 5px solid var(--global-gray-500);
	background: #f9f8f6 !important;
    box-shadow: 0px 0px 0px -7px rgba(0,0,0,0) !important;
}

#payment ul.wc_payment_methods li.wc_payment_method > label {
	background: #f9f8f6;
	display: block;
	border-left: 5px solid var(--global-gray-400);
	padding: 8px 15px;
	transition: border .2s ease-in-out;
	margin-bottom: 4px;
	font-weight: bold;
}

.woocommerce div.product form.cart .button {
	float: left;
	width: 456px;
}