/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0.1
Description: Cleaned BareBro styling for homepage, product, cart, and checkout pages.
*/

/* =====================================================
   GLOBAL TOKENS
===================================================== */

   
:root {
     --bb-bg: #f8f4ec;
    --bb-bg-light: #fbf8f2;
    --bb-card: #ffffff;
    --bb-cream: #fffaf0;
    --bb-gold: #c89a3a;
    --bb-gold-dark: #a67624;
    --bb-border: #ead8aa;
    --bb-text: #111111;
    --bb-muted: #555555;

    --bb-black: #111111;
    --bb-black-2: #252525;
    --bb-gold: #c89a3a;
    --bb-gold-dark: #a67624;
    --bb-gold-soft: #ead8aa;
    --bb-cream: #f8f4ec;
    --bb-cream-2: #fffaf0;
    --bb-white: #ffffff;
    --bb-text: #111111;
    --bb-muted: #555555;
    --bb-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);

    /* Homepage dark theme tokens */
    --bg-color: #000000;
    --card-bg: #0b0b0f;
    --accent: #f8b500;
    --accent-soft: rgba(248, 181, 0, 0.35);
    --border-soft: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
    text-underline-offset: 3px;
}

/* =====================================================
   HOMEPAGE / CUSTOM LANDING PAGE DARK CARDS
   Kept scoped to your custom classes only.
===================================================== */
/* Dark background only for custom homepage, not WooCommerce pages */
/* Global BareBro light premium background */
body:not(.home) {
    background:
        radial-gradient(circle at top left, rgba(200, 154, 58, 0.10), transparent 32%),
        linear-gradient(180deg, #fbf8f2 0%, #f8f4ec 100%) !important;
    color: #111111 !important;
    min-height: 100vh;
}

/* Keep WooCommerce pages consistent */
body.single-product,
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-shop,
body.post-type-archive-product {
    background:
        radial-gradient(circle at top left, rgba(200, 154, 58, 0.10), transparent 32%),
        linear-gradient(180deg, #fbf8f2 0%, #f8f4ec 100%) !important;
    color: #111111 !important;
}
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px 0;
}

.top-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px 40px;
}

.headline {
    text-align: center;
    margin-bottom: 18px;
}

.headline h1 {
    font-size: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 10px 0 6px;
}

.headline p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.cards-wrapper {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.card {
    position: relative;
    background: linear-gradient(145deg, #050509, #11111a);
    border-radius: 24px;
    padding: 18px 18px 28px;
    flex: 0 1 460px;
    width: calc((100% - 44px) / 3);
    min-width: 0;
    min-height: 500px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 24px 60px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(circle at top, var(--accent-soft), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 26px 80px rgba(0,0,0,0.95);
    border-color: rgba(248, 181, 0, 0.35);
}

.card:hover::before {
    opacity: 1;
}

.card-header,
.card-footer,
.slider-wrap,
.benefits-line,
.dots {
    position: relative;
    z-index: 2;
}

.card-header {
    text-align: left;
    margin-bottom: 8px;
}

.card-title {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.18;
}

.card-subtitle,
.benefits,
.benefits-line,
.normal-text,
.badge {
    color: var(--text-muted);
}

.card-subtitle {
    font-size: 13px;
    line-height: 1.35;
}

.product-img-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 18px;
    min-height: 250px;
    position: relative;
    z-index: 2;
}

.product-img {
    width: 100%;
    max-width: 260px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.benefits {
    font-size: 13px;
    text-align: center;
    line-height: 1.35;
}

.benefits span,
.benefits-line span,
.flavour-name,
.contact-section h2,
.contact-info .value,
.site-footer span {
    color: var(--accent);
}

.buy-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.buy-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-btn-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.buy-btn-img:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 1));
}

.badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.slider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 16px;
    width: 100%;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    text-align: center;
    padding: 4px 0;
}

.slide img {
    width: 100%;
    max-width: 290px;
    max-height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.flavour-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.benefits-line {
    text-align: center;
    margin-top: 6px;
    font-size: 13px;
}

.nav-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.14);
    transform: scale(1.05);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: var(--accent);
}

.contact-section {
    margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-section h2 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-info {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    text-align: left;
}

.contact-info .item {
    display: flex;
    gap: 6px;
    align-items: center;
}

.contact-info .label {
    color: var(--text-main);
    font-weight: 600;
}

.site-footer {
    text-align: center;
    padding: 10px 20px 16px;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* =====================================================
   SITE HEADER - LIGHT PREMIUM
===================================================== */
header,
.site-header,
.wp-block-template-part,
.wp-block-group.site-header,
header.wp-block-template-part {
    background: var(--bb-cream) !important;
    color: var(--bb-text) !important;
    border-bottom: 1px solid var(--bb-gold-soft) !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04) !important;
}

.site-title a,
.wp-block-site-title a,
header a,
.wp-block-navigation a,
.wp-block-page-list a,
header .wp-block-navigation-item__content {
    color: var(--bb-text) !important;
    font-weight: 700;
}

.wp-block-navigation a:hover,
header a:hover,
header .wp-block-navigation-item__content:hover {
    color: var(--bb-gold-dark) !important;
}

header svg,
header .wc-block-mini-cart__button,
header .wc-block-mini-cart__icon {
    color: var(--bb-text) !important;
    fill: var(--bb-text) !important;
}

header,
.site-header {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

/* =====================================================
   PRODUCT PAGE
===================================================== */
body.single-product,
.single-product .wp-site-blocks,
.single-product main,
.single-product .woocommerce {
    background: var(--bb-cream) !important;
    color: var(--bb-text) !important;
}

.single-product div.product {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: var(--bb-white);
    border-radius: 28px;
    box-shadow: var(--bb-shadow);
}

.single-product div.product div.images {
    background: var(--bb-cream-2);
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--bb-gold-soft);
}

.single-product div.product div.images img {
    border-radius: 16px;
    object-fit: contain;
    background: var(--bb-white);
}

.single-product div.product div.images .flex-control-thumbs {
    margin-top: 16px !important;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.single-product div.product div.images .flex-control-thumbs li {
    width: 72px !important;
    margin: 0 !important;
}

.single-product div.product div.images .flex-control-thumbs img {
    border: 1px solid #e2d2a5;
    border-radius: 10px;
    padding: 4px;
    background: var(--bb-white);
}

.single-product .product_title {
    font-size: 38px !important;
    line-height: 1.18 !important;
    font-weight: 750 !important;
    color: var(--bb-text) !important;
    margin-bottom: 16px !important;
}

.single-product .price {
    font-size: 26px !important;
    font-weight: 750 !important;
    color: var(--bb-text) !important;
    margin-bottom: 20px !important;
}

.single-product .price del {
    color: #777 !important;
    font-size: 18px !important;
    margin-right: 8px;
}

.single-product .price ins {
    text-decoration: none !important;
    color: var(--bb-gold-dark) !important;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 22px;
}

.single-product .stock {
    color: #1f7a38 !important;
    font-weight: 700;
    margin-bottom: 18px;
}

.single-product span.onsale {
    background: var(--bb-gold-dark) !important;
    color: #fff !important;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .product_meta,
.single-product .wp-block-woocommerce-product-meta,
.single-product .sku_wrapper,
.single-product .posted_in,
.single-product .tagged_as,
.single-product [class*="brand"] {
    display: none !important;
}

.single-product .woocommerce-tabs {
    max-width: 1200px;
    margin: 35px auto 0;
    background: var(--bb-white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.single-product .woocommerce-tabs ul.tabs {
    padding-left: 0 !important;
    border-bottom: 1px solid var(--bb-gold-soft);
}

.single-product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    color: var(--bb-text) !important;
    font-size: 18px;
    font-weight: 750;
}

.single-product .woocommerce-Tabs-panel h2 {
    font-size: 28px !important;
    color: var(--bb-text) !important;
    margin-bottom: 18px;
}

.single-product .woocommerce-Tabs-panel {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.single-product .woocommerce-breadcrumb {
    color: #6f6f6f !important;
    font-size: 14px;
    margin-bottom: 18px;
}

.single-product .woocommerce-breadcrumb a {
    color: var(--bb-gold-dark) !important;
}

/* Product purchase action bar */
.single-product form.cart {
    display: grid !important;
    grid-template-columns: auto 220px 200px !important;
    align-items: center !important;
    gap: 14px !important;
    width: max-content !important;
    max-width: 100% !important;
    padding: 14px !important;
    margin-top: 24px !important;
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(184,137,45,0.28) !important;
    border-radius: 26px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08) !important;
}

.single-product form.cart .quantity {
    width: 220px !important;
    min-width: 220px !important;
    height: 62px !important;
    display: grid !important;
    grid-template-columns: 48px 1fr 48px !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 7px 10px !important;
    margin: 0 !important;
    background: linear-gradient(145deg, #ffffff, #f7f0e4) !important;
    border: 1px solid rgba(184,137,45,0.35) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 26px rgba(0,0,0,0.07) !important;
}

.single-product form.cart .quantity input::-webkit-outer-spin-button,
.single-product form.cart .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product form.cart .quantity input[type=number] {
    -moz-appearance: textfield;
}

.single-product form.cart .quantity input.qty {
    width: 100% !important;
    height: 46px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--bb-text) !important;
    padding: 0 !important;
    margin: 0 !important;
}

.single-product .qty-btn {
    width: 46px !important;
    height: 46px !important;
    border: none !important;
    border-radius: 15px !important;
    background: linear-gradient(145deg, #050505, #252525) !important;
    color: #ffffff !important;
    font-size: 27px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    line-height: 1 !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.22) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.single-product .single_add_to_cart_button,
.single-product .barebro-buy-now-button {
    height: 62px !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 850 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.single-product .single_add_to_cart_button {
    width: 220px !important;
    background: linear-gradient(135deg, var(--bb-gold), var(--bb-gold-dark)) !important;
    box-shadow: 0 16px 32px rgba(166,118,36,0.28) !important;
}

.single-product .barebro-buy-now-button {
    width: 200px !important;
    background: linear-gradient(135deg, #050505, #202020) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.20) !important;
    z-index: 99 !important;
}

.single-product .single_add_to_cart_button:hover,
.single-product .barebro-buy-now-button:hover,
.single-product .qty-btn:hover {
    transform: translateY(-2px);
}

/* =====================================================
   CART PAGE
===================================================== */
.woocommerce-cart,
.woocommerce-cart body,
.woocommerce-cart main,
.woocommerce-cart .wp-site-blocks,
.woocommerce-cart .entry-content,
.woocommerce-cart .woocommerce {
    background: var(--bb-cream) !important;
    color: var(--bb-text) !important;
}

.wp-block-woocommerce-store-notices,
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    display: none !important;
}

.woocommerce-cart .wp-block-post-content,
.woocommerce-cart .woocommerce {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 35px !important;
    background: var(--bb-white) !important;
    border-radius: 28px !important;
    box-shadow: var(--bb-shadow) !important;
}

.woocommerce-cart h1,
.woocommerce-cart .wp-block-post-title {
    color: var(--bb-text) !important;
    font-size: 44px !important;
    font-weight: 850 !important;
    margin-bottom: 28px !important;
}

.woocommerce-cart *,
.woocommerce-cart p,
.woocommerce-cart span,
.woocommerce-cart td,
.woocommerce-cart th,
.woocommerce-cart a {
    color: var(--bb-text) !important;
}

.woocommerce-cart table.shop_table,
.woocommerce-cart .wc-block-cart-items,
.woocommerce-cart .wp-block-woocommerce-cart {
    background: var(--bb-white) !important;
}

.woocommerce-cart .wc-block-cart-items__row,
.woocommerce-cart tr.cart_item {
    background: var(--bb-cream-2) !important;
    border: 1px solid var(--bb-gold-soft) !important;
    border-radius: 18px !important;
}

.woocommerce-cart .cart_totals,
.woocommerce-cart .wc-block-cart__totals-title,
.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
.woocommerce-cart .wc-block-components-sidebar {
    background: var(--bb-cream-2) !important;
    border: 1px solid var(--bb-gold-soft) !important;
    border-radius: 24px !important;
    padding: 24px !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06) !important;
}

.woocommerce-cart .wc-block-components-totals-wrapper,
.woocommerce-cart .wc-block-components-totals-item {
    border-color: var(--bb-gold-soft) !important;
}

.woocommerce-cart .wc-block-components-quantity-selector {
    background: var(--bb-white) !important;
    border: 1px solid #d8c48f !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.woocommerce-cart .wc-block-components-quantity-selector button {
    background: var(--bb-black) !important;
    color: #ffffff !important;
    border: none !important;
}

.woocommerce-cart .wc-block-components-quantity-selector input {
    background: var(--bb-white) !important;
    color: var(--bb-text) !important;
    font-weight: 750 !important;
}

.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .checkout-button,
.woocommerce-cart a.checkout-button,
.woocommerce-cart .wc-block-components-totals-coupon__button,
.woocommerce-cart .wc-block-components-button,
.woocommerce-cart button.wc-block-components-button {
    background: linear-gradient(135deg, var(--bb-gold), var(--bb-gold-dark)) !important;
    color: #ffffff !important;
    border-radius: 16px !important;
    border: none !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    box-shadow: 0 16px 32px rgba(166,118,36,0.24) !important;
}

.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .checkout-button,
.woocommerce-cart a.checkout-button {
    height: 62px !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce-cart .wc-block-components-button span {
    color: #ffffff !important;
}

.woocommerce-cart .wc-block-components-text-input input {
    background: #ffffff !important;
    color: var(--bb-text) !important;
    border: 1px solid #d8c48f !important;
    border-radius: 10px !important;
}

.woocommerce-cart footer,
.woocommerce-cart .wp-block-template-part:has(footer) {
    background: var(--bb-cream) !important;
    color: var(--bb-text) !important;
}

/* =====================================================
   CHECKOUT PAGE
===================================================== */
.woocommerce-checkout,
.woocommerce-checkout body,
.woocommerce-checkout main,
.woocommerce-checkout .wp-site-blocks,
.woocommerce-checkout .entry-content,
.woocommerce-checkout .woocommerce,
.woocommerce-checkout .wc-block-checkout {
    background: var(--bb-cream) !important;
    color: var(--bb-text) !important;
}

.woocommerce-checkout .wp-block-post-content,
.woocommerce-checkout .woocommerce,
.woocommerce-checkout .wc-block-checkout {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 35px !important;
    background: linear-gradient(180deg, #ffffff, #fcfaf5) !important;
    border: 1px solid rgba(200,154,58,0.18) !important;
    border-radius: 30px !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.06) !important;
}

.woocommerce-checkout *,
.woocommerce-checkout p,
.woocommerce-checkout span,
.woocommerce-checkout label,
.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout a {
    color: var(--bb-text) !important;
}

.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-components-checkout-step__title {
    color: var(--bb-text) !important;
    font-weight: 850 !important;
}

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-components-address-form input,
.woocommerce-checkout .wc-block-components-country-input select,
.woocommerce-checkout .wc-block-components-state-input select {
    background: rgba(255,255,255,0.9) !important;
    color: var(--bb-text) !important;
    border: 1px solid rgba(200,154,58,0.45) !important;
    border-radius: 14px !important;
    min-height: 56px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #777777 !important;
}

.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-checkout__main {
    background: transparent !important;
    border-radius: 24px !important;
}

.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wc-block-checkout__sidebar {
    background: linear-gradient(180deg, #fffdf9, #f9f3e8) !important;
    color: var(--bb-text) !important;
    border: 1px solid rgba(200,154,58,0.28) !important;
    border-radius: 26px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8) !important;
    overflow: hidden !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item {
    position: relative !important;
    background: rgba(255,255,255,0.72) !important;
    border: 1px solid rgba(200,154,58,0.22) !important;
    border-radius: 18px !important;
    padding: 16px !important;
    margin: 14px 14px 18px 14px !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__image {
    position: relative !important;
    overflow: visible !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__image img {
    border-radius: 12px !important;
    border: 1px solid rgba(200,154,58,0.25) !important;
    background: #ffffff !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    left: auto !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #111111, #2b2b2b) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    border-radius: 50% !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18) !important;
    z-index: 9 !important;
}

.woocommerce-checkout .wc-block-components-product-name {
    color: var(--bb-text) !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
}

.woocommerce-checkout .wc-block-components-product-metadata,
.woocommerce-checkout .wc-block-components-product-details,
.woocommerce-checkout .wc-block-components-order-summary-item__description {
    color: #444444 !important;
    line-height: 1.5 !important;
    font-size: 14px !important;
}

.woocommerce-checkout .wc-block-components-totals-wrapper,
.woocommerce-checkout .wc-block-components-totals-item,
.woocommerce-checkout .wc-block-components-order-summary-item {
    border-color: rgba(200,154,58,0.2) !important;
}

.woocommerce-checkout .wc-block-components-panel,
.woocommerce-checkout .wc-block-components-panel__button {
    background: transparent !important;
    border-color: rgba(200,154,58,0.18) !important;
}

/* Checkout shipping/payment cards */
.woocommerce-checkout .wc-block-checkout__shipping-method,
.woocommerce-checkout .wc-block-checkout__payment-method {
    background: linear-gradient(180deg, #fffdf8, #f8f2e6) !important;
    border: 1px solid rgba(200,154,58,0.22) !important;
    border-radius: 24px !important;
    padding: 26px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.woocommerce-checkout .wc-block-components-radio-control,
.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-radio-control__option-layout,
.woocommerce-checkout .wc-block-components-radio-control__label-group,
.woocommerce-checkout .wc-block-components-radio-control__description-group {
    position: static !important;
    transform: none !important;
    overflow: visible !important;
}

.woocommerce-checkout .wc-block-components-radio-control {
    border: none !important;
    background: transparent !important;
}

.woocommerce-checkout .wc-block-components-radio-control__option {
    display: grid !important;
    grid-template-columns: 22px 1fr auto !important;
    column-gap: 16px !important;
    align-items: center !important;
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(200,154,58,0.34) !important;
    border-radius: 18px !important;
    padding: 18px 20px !important;
    margin: 0 0 14px 0 !important;
    min-height: auto !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.95) !important;
    transition: all 0.25s ease !important;
}

.woocommerce-checkout .wc-block-components-radio-control__option:hover {
    transform: translateY(-2px);
}

.woocommerce-checkout .wc-block-components-radio-control__option--checked,
.woocommerce-checkout .wc-block-components-radio-control__option-checked {
    background: linear-gradient(180deg, #fffaf0, #fff5df) !important;
    border: 2px solid var(--bb-gold) !important;
    box-shadow: 0 14px 28px rgba(200,154,58,0.12) !important;
}

.woocommerce-checkout .wc-block-components-radio-control__input,
.woocommerce-checkout input[type="radio"] {
    position: static !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: var(--bb-gold-dark) !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    transform: none !important;
}

.woocommerce-checkout .wc-block-components-radio-control__option-layout {
    display: contents !important;
}

.woocommerce-checkout .wc-block-components-radio-control__label,
.woocommerce-checkout .wc-block-components-radio-control__label-group,
.woocommerce-checkout .wc-block-components-radio-control__label span {
    grid-column: 2 !important;
    grid-row: 1 !important;
    color: var(--bb-text) !important;
    font-size: 17px !important;
    font-weight: 850 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.woocommerce-checkout .wc-block-components-radio-control__description,
.woocommerce-checkout .wc-block-components-radio-control__description-group,
.woocommerce-checkout .wc-block-components-radio-control__option p {
    grid-column: 2 / 4 !important;
    grid-row: 2 !important;
    color: #333333 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout .wc-block-components-radio-control__secondary-label {
    grid-column: 3 !important;
    grid-row: 1 !important;
    color: var(--bb-text) !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
}

.woocommerce-checkout .wc-block-components-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 18px 0 !important;
}

.woocommerce-checkout .wc-block-components-checkbox__input,
.woocommerce-checkout input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: var(--bb-gold-dark) !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    border-radius: 5px !important;
}

.woocommerce-checkout .wc-block-checkout__add-note,
.woocommerce-checkout .wc-block-components-checkbox.wc-block-checkout__add-note,
.woocommerce-checkout div[class*="add-note"] {
    display: none !important;
}

.woocommerce-checkout .wc-block-components-totals-coupon__button,
.woocommerce-checkout button.wc-block-components-button,
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout button[type="submit"] {
    background: linear-gradient(135deg, var(--bb-gold), var(--bb-gold-dark)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.7px !important;
    box-shadow: 0 18px 38px rgba(166,118,36,0.25), inset 0 1px 0 rgba(255,255,255,0.28) !important;
    transition: all 0.25s ease !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout button[type="submit"] {
    min-height: 68px !important;
    font-size: 18px !important;
    margin-top: 24px !important;
}

.woocommerce-checkout .wc-block-components-button span,
.woocommerce-checkout .wc-block-components-totals-coupon__button span,
.woocommerce-checkout .wc-block-components-checkout-place-order-button span,
.woocommerce-checkout button[type="submit"] span {
    color: #ffffff !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout button[type="submit"]:hover {
    transform: translateY(-2px);
}

.woocommerce-checkout .wp-block-group,
.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-checkout .wc-block-components-sidebar-layout,
.woocommerce-checkout .wc-block-checkout__sidebar {
    background-color: transparent !important;
}

.woocommerce-checkout footer {
    background: var(--bb-cream) !important;
    color: var(--bb-text) !important;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1400px) {
    .cards-wrapper { max-width: 1260px; gap: 18px; }
    .card { padding: 16px 16px 26px; min-height: 470px; }
    .card-title { font-size: 19px; }
    .product-img { max-width: 230px; max-height: 270px; }
    .slide img { max-width: 260px; max-height: 270px; }
    .buy-btn-img { height: 36px; }
    .nav-btn { width: 34px; height: 34px; min-width: 34px; font-size: 16px; }
}

@media (max-width: 1200px) {
    .cards-wrapper { gap: 14px; max-width: 1080px; }
    .card { width: calc((100% - 28px) / 3); min-height: 430px; border-radius: 20px; }
    .card-title { font-size: 17px; letter-spacing: 0.04em; }
    .card-subtitle, .benefits { font-size: 12px; }
    .product-img-wrapper { min-height: 220px; }
    .product-img { max-width: 200px; max-height: 240px; }
    .slide img { max-width: 220px; max-height: 240px; }
    .flavour-name { font-size: 16px; }
    .buy-btn-img { height: 34px; }
}

@media (max-width: 900px) {
    .headline h1 { font-size: 22px; }
    .cards-wrapper { flex-direction: column; align-items: center; gap: 22px; }
    .card { width: 90vw; max-width: 560px; min-height: unset; }
    .product-img-wrapper { min-height: 260px; }
    .product-img { max-width: 280px; max-height: 60vw; }
    .slide img { max-width: 320px; max-height: 62vw; }
    .card-title { font-size: 20px; }
    .benefits-line { font-size: 13px; }
    .flavour-name { font-size: 18px; }
    .nav-btn { width: 38px; height: 38px; min-width: 38px; font-size: 18px; }
}

@media (max-width: 768px) {
    .single-product div.product {
        margin: 15px;
        padding: 18px;
        border-radius: 18px;
    }

    .single-product .product_title { font-size: 28px !important; }
    .single-product .price { font-size: 22px !important; }
    .single-product .woocommerce-tabs { margin: 20px 15px; padding: 22px; }

    .single-product form.cart {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px !important;
        gap: 14px !important;
        border-radius: 24px !important;
    }

    .single-product form.cart .quantity,
    .single-product .single_add_to_cart_button,
    .single-product .barebro-buy-now-button {
        width: 100% !important;
        min-width: 100% !important;
    }

    .single-product form.cart .quantity {
        grid-template-columns: 54px 1fr 54px !important;
    }

    .woocommerce-cart .wp-block-post-content,
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .wp-block-post-content,
    .woocommerce-checkout .woocommerce,
    .woocommerce-checkout .wc-block-checkout {
        margin: 18px !important;
        padding: 20px !important;
        border-radius: 24px !important;
    }

    .woocommerce-cart h1,
    .woocommerce-cart .wp-block-post-title {
        font-size: 34px !important;
    }

    .woocommerce-checkout .wc-block-components-sidebar,
    .woocommerce-checkout .wc-block-checkout__sidebar {
        margin-top: 20px !important;
        padding: 18px !important;
    }

    .woocommerce-checkout .wc-block-components-radio-control__option {
        grid-template-columns: 22px 1fr !important;
    }

    .woocommerce-checkout .wc-block-components-radio-control__secondary-label {
        grid-column: 2 !important;
        grid-row: 2 !important;
        text-align: left !important;
        margin-top: 6px !important;
    }

    .woocommerce-checkout .wc-block-components-radio-control__description,
    .woocommerce-checkout .wc-block-components-radio-control__description-group,
    .woocommerce-checkout .wc-block-components-radio-control__option p {
        grid-column: 2 !important;
        grid-row: 3 !important;
    }
}

@media (max-width: 480px) {
    .top-title { font-size: 30px; }
    .headline h1 { font-size: 20px; }
    .headline p { font-size: 13px; }
    .card { width: 92vw; padding: 16px 16px 24px; }
    .card-title { font-size: 18px; }
    .buy-btn-img { height: 36px; }
    .buy-buttons { gap: 10px; flex-wrap: wrap; }
    .nav-btn { width: 34px; height: 34px; min-width: 34px; font-size: 16px; }
    .flavour-name { font-size: 16px; }
    .benefits-line { font-size: 13px; }
}
/* Checkout order summary quantity badge - white */
.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #d8c48f !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
}
/* Hide Display Name field on My Account account details */
.woocommerce-account #account_display_name,
.woocommerce-account label[for="account_display_name"] {
    display: none !important;
}

/* Hide Display Name field wrapper */
.woocommerce-account #account_display_name.closest {
    display: none !important;
}

/* Readonly email style */
.woocommerce-account #account_email[readonly],
.woocommerce-account .barebro-readonly-email {
    background: #f5f0e6 !important;
    color: #555555 !important;
    cursor: not-allowed !important;
    border: 1px solid #d8c48f !important;
}

/* =====================================================
   MY ACCOUNT PAGE FUTURISTIC PREMIUM DESIGN
===================================================== */

body.woocommerce-account {
    background:
        radial-gradient(circle at top left, rgba(200,154,58,0.12), transparent 32%),
        linear-gradient(180deg, #fbf8f2 0%, #f8f4ec 100%) !important;
    color: #111111 !important;
}

/* Main account container */
.woocommerce-account .woocommerce {
    max-width: 1180px !important;
    width: calc(100% - 80px) !important;
    margin: 55px auto 80px !important;
    padding: 42px !important;
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(200,154,58,0.20) !important;
    border-radius: 34px !important;
    box-shadow: 0 28px 80px rgba(0,0,0,0.07) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Page heading */
.woocommerce-account h1,
.woocommerce-account .entry-title,
.woocommerce-account .wp-block-post-title {
    max-width: 1180px !important;
    width: calc(100% - 80px) !important;
    margin: 45px auto 0 !important;
    font-size: 54px !important;
    line-height: 1.1 !important;
    font-weight: 850 !important;
    color: #111111 !important;
}

/* Layout */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 260px !important;
    float: left !important;
    background: linear-gradient(180deg, #ffffff, #fffaf0) !important;
    border: 1px solid #ead8aa !important;
    border-radius: 28px !important;
    padding: 18px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06) !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 300px) !important;
    float: right !important;
    background: linear-gradient(180deg, #ffffff, #fffaf0) !important;
    border: 1px solid #ead8aa !important;
    border-radius: 28px !important;
    padding: 30px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06) !important;
}

/* Navigation menu */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border-radius: 18px !important;
    color: #111111 !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    transition: all 0.22s ease !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: #fff4dc !important;
    color: #a67624 !important;
    transform: translateX(4px);
}

/* Active tab */
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: linear-gradient(135deg, #c89a3a, #a67624) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(166,118,36,0.22) !important;
}

/* Address text */
.woocommerce-account .woocommerce-MyAccount-content p {
    color: #333333 !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

/* Billing/shipping cards */
.woocommerce-account .woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
    gap: 24px !important;
    margin-top: 26px !important;
}

.woocommerce-account .woocommerce-Address {
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(200,154,58,0.28) !important;
    border-radius: 26px !important;
    padding: 26px !important;
    box-shadow:
        0 16px 35px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.9) !important;
    transition: all 0.25s ease !important;
}

.woocommerce-account .woocommerce-Address:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(0,0,0,0.08) !important;
}

/* Address heading */
.woocommerce-account .woocommerce-Address-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    border-bottom: 1px solid #ead8aa !important;
    padding-bottom: 16px !important;
    margin-bottom: 18px !important;
}

.woocommerce-account .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-column__title {
    font-size: 26px !important;
    font-weight: 850 !important;
    color: #111111 !important;
    margin: 0 !important;
}

/* Add/Edit address button */
.woocommerce-account .woocommerce-Address-title a,
.woocommerce-account .edit {
    background: linear-gradient(135deg, #111111, #252525) !important;
    color: #ffffff !important;
    border-radius: 16px !important;
    padding: 12px 18px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18) !important;
}

.woocommerce-account .woocommerce-Address-title a:hover,
.woocommerce-account .edit:hover {
    background: linear-gradient(135deg, #c89a3a, #a67624) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Forms */
.woocommerce-account input,
.woocommerce-account select,
.woocommerce-account textarea {
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #d8c48f !important;
    border-radius: 14px !important;
    min-height: 54px !important;
    padding: 12px 14px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85) !important;
}

.woocommerce-account label {
    color: #111111 !important;
    font-weight: 700 !important;
}

/* Save buttons */
.woocommerce-account button.button,
.woocommerce-account .woocommerce-button,
.woocommerce-account .button {
    background: linear-gradient(135deg, #c89a3a, #a67624) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 18px !important;
    min-height: 56px !important;
    padding: 0 30px !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 16px 32px rgba(166,118,36,0.22) !important;
}

.woocommerce-account button.button:hover,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .button:hover {
    background: linear-gradient(135deg, #a67624, #8d5f19) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Notices */
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
    background: #fffaf0 !important;
    color: #111111 !important;
    border: 1px solid #ead8aa !important;
    border-radius: 18px !important;
}

/* Clear floats */
.woocommerce-account .woocommerce::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-account h1,
    .woocommerce-account .entry-title,
    .woocommerce-account .wp-block-post-title {
        width: calc(100% - 32px) !important;
        font-size: 38px !important;
        margin-top: 28px !important;
    }

    .woocommerce-account .woocommerce {
        width: calc(100% - 32px) !important;
        margin: 24px auto 50px !important;
        padding: 20px !important;
        border-radius: 26px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
        float: none !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 20px !important;
    }

    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-account .woocommerce-Address-title {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}/* =====================================================
   MY ACCOUNT ADDRESS PAGE - SHOW ONLY SHIPPING ADDRESS
===================================================== */

/* Hide Billing address card */
.woocommerce-account .woocommerce-Address--billing,
.woocommerce-account .u-column1.woocommerce-Address,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address:first-child {
    display: none !important;
}

/* Make Shipping address full width and centered */
.woocommerce-account .woocommerce-Addresses {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin-top: 30px !important;
}

/* Shipping address card */
.woocommerce-account .woocommerce-Address--shipping,
.woocommerce-account .u-column2.woocommerce-Address,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address:last-child {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    float: none !important;
}

/* Shipping button position fix */
.woocommerce-account .woocommerce-Address--shipping .woocommerce-Address-title,
.woocommerce-account .u-column2.woocommerce-Address .woocommerce-Address-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 18px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-Address--shipping,
    .woocommerce-account .u-column2.woocommerce-Address,
    .woocommerce-account .woocommerce-Addresses .woocommerce-Address:last-child {
        max-width: 100% !important;
    }

    .woocommerce-account .woocommerce-Address--shipping .woocommerce-Address-title,
    .woocommerce-account .u-column2.woocommerce-Address .woocommerce-Address-title {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}
/* Hide "Use same address for billing" row on checkout */
.woocommerce-checkout .wc-block-checkout__use-address-for-billing,
.woocommerce-checkout .wc-block-components-checkbox.wc-block-checkout__use-address-for-billing {
    display: none !important;
}

/* WooCommerce product grid add to cart button text white */
.wp-block-button.wc-block-grid__product-add-to-cart,
.wp-block-button.wc-block-grid__product-add-to-cart a,
.wp-block-button.wc-block-grid__product-add-to-cart button,
.wp-block-button.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product-add-to-cart,
.wc-block-grid__product-add-to-cart a,
.wc-block-grid__product-add-to-cart button {
    color: #ffffff !important;
}

/* Ensure inner text/span also stays white */
.wp-block-button.wc-block-grid__product-add-to-cart *,
.wc-block-grid__product-add-to-cart * {
    color: #ffffff !important;
}

/* Force footer to end cleanly */
.wp-site-blocks {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.bb-footer {
    border-bottom: none !important;
}

.bb-footer-inner {
    padding-bottom: 40px !important;
}


/* Hide Home, Checkout and Sample Page from WooCommerce/header navigation */
.bb-ecom-header a[href*="/home"],
.bb-ecom-header a[href="/"],
.bb-ecom-header a[href*="/checkout"],
.bb-ecom-header a[href*="/sample-page"],
header a[href*="/home"],
header a[href="/"],
header a[href*="/checkout"],
header a[href*="/sample-page"] {
    display: none !important;
}



/*Start to remove after products are Added*/
/* Hide footer menu columns, but keep contact column visible */
.bb-footer-inner > .bb-footer-col {
    display: none !important;
}

.bb-footer-inner > .bb-footer-col.bb-footer-contact {
    display: block !important;
}
/* Hide ecommerce header only on homepage */
body.home .bb-ecom-header {
    display: none !important;
}
/* Hide footer bottom links only on homepage */
body.home .bb-footer-bottom-links {
    display: none !important;
}
/*End to remove after products are Added*/