/* =============================================================
   CRUMB & BOW BAKERY - MASTER STYLESHEET
   Exact 1:1 Match to 5 User Screenshots
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --cb-rose: #b87077;
    --cb-rose-hover: #a25f66;
    --cb-rose-light: #fbf0ee;
    --cb-rose-btn: #f7e6e7;
    --cb-cream-bg: #faf5ef;
    --cb-cream-card: #fdfaf7;
    --cb-text-dark: #382b24;
    --cb-text-body: #5c4b42;
    --cb-text-muted: #8b7a70;
    --cb-border: #ede4db;
    --cb-border-card: #f0e6dc;
    --cb-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --cb-font-serif: 'Playfair Display', Georgia, serif;
    --cb-font-script: 'Great Vibes', cursive;
    --cb-shadow-sm: 0 2px 8px rgba(90, 74, 66, 0.04);
    --cb-shadow-md: 0 8px 24px rgba(90, 74, 66, 0.08);
    --cb-shadow-lg: 0 16px 40px rgba(90, 74, 66, 0.12);

    /* WoodMart theme color overrides to match Crumb & Bow palette */
    --wd-primary-color: #b87077 !important;
    --wd-primary-hover: #a25f66 !important;
    --wd-alternative-color: #b87077 !important;
    --wd-link-color: #b87077 !important;
    --wd-link-hover: #a25f66 !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body.cb-body-crumb-bow, body {
    background-color: var(--cb-cream-bg) !important;
    color: var(--cb-text-dark);
    font-family: var(--cb-font-sans);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.cb-main-content {
    min-height: calc(100vh - 250px);
    width: 100%;
}

.cb-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 80px;
    width: 100%;
    box-sizing: border-box;
}

.woocommerce-cart .cb-page-container,
.woocommerce-checkout .cb-page-container,
.woocommerce-account .cb-page-container,
.woocommerce-wishlist .cb-page-container {
    padding-top: 36px;
}

/* Hide WoodMart theme elements site-wide in favor of Crumb & Bow */
.whb-header,
header.whb-header,
.whb-clone,
.whb-main-header,
.whb-row,
.whb-sticky-header,
.whb-general-header,
.woodmart-sticky-header,
.wd-page-wrapper > header,
.website-wrapper > header,
footer.footer-container,
.wd-footer,
.wd-prefooter,
.woodmart-prefooter,
.wd-copyrights,
.page-title.page-title-default,
.page-title,
.title-design-centered,
.woodmart-title-container,
.woodmart-checkout-steps,
.woodmart-toolbar,
.wd-toolbar,
.whb-sticky-navbar,
.wd-toolbar-shop,
.wd-toolbar-item {
    display: none !important;
}

/* -------------------------------------------------------------
   GLOBAL FLOATING PILL HEADER (ALL SCREENSHOTS)
------------------------------------------------------------- */
.cb-navbar-wrap {
    position: sticky;
    top: 14px;
    z-index: 1000;
    padding: 0 20px;
    margin-bottom: 24px;
}

.cb-navbar {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 32px;
    background: #ffffff !important;
    border-radius: 9999px;
    border: 1px solid var(--cb-border);
    box-shadow: 0 6px 24px rgba(90, 74, 66, 0.06);
}

.cb-logo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
}

.cb-logo-img {
    height: 72px;
    width: 72px;
    min-width: 72px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(90, 74, 66, 0.14);
    border: 2.5px solid rgba(184, 112, 119, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cb-logo-link:hover .cb-logo-img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.3);
}

.cb-logo-text {
    display: flex;
    flex-direction: column;
}

.cb-brand-name {
    font-family: var(--cb-font-script), 'Great Vibes', cursive !important;
    font-size: 33px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: #3b2325 !important;
    line-height: 1.05 !important;
    text-transform: none !important;
}

.cb-brand-amp {
    color: #c87d7d !important;
    padding: 0 3px !important;
}

.cb-brand-sub {
    font-family: var(--cb-font-sans) !important;
    font-size: 9.5px !important;
    letter-spacing: 3px !important;
    color: #8c7674 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    margin-top: 1px !important;
}

.cb-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cb-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--cb-text-body);
    text-decoration: none !important;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.cb-nav-link:hover, .cb-nav-link.active {
    color: var(--cb-rose);
}

.cb-nav-link.active::after {
    content: '♥';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--cb-rose);
}

.cb-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cb-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cb-rose-light);
    color: var(--cb-rose);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.cb-cart-btn:hover {
    background: var(--cb-rose);
    color: #ffffff;
    transform: scale(1.05);
}

.cb-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--cb-rose);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* -------------------------------------------------------------
   MOBILE MENU TOGGLE & SLIDE-OUT DRAWER
------------------------------------------------------------- */
.cb-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #faf0f0;
    border: 1.5px solid rgba(184, 112, 119, 0.25);
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.cb-mobile-toggle:hover {
    background: #f5e4e4;
    transform: scale(1.05);
}

.cb-hamburger-bar {
    display: block;
    width: 20px;
    height: 2.2px;
    background: var(--cb-rose);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.cb-mobile-toggle.active .cb-hamburger-bar:nth-child(1) {
    transform: translateY(7.2px) rotate(45deg);
}
.cb-mobile-toggle.active .cb-hamburger-bar:nth-child(2) {
    opacity: 0;
}
.cb-mobile-toggle.active .cb-hamburger-bar:nth-child(3) {
    transform: translateY(-7.2px) rotate(-45deg);
}

/* Backdrop Overlay */
.cb-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(45, 33, 27, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cb-mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Slide-out Drawer */
.cb-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -8px 0 30px rgba(56, 43, 36, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    overflow-y: auto;
}

.cb-mobile-drawer.open {
    transform: translateX(0);
}

.cb-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 18px 20px;
    border-bottom: 1px solid var(--cb-border);
}

.cb-mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-mobile-drawer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 112, 119, 0.2);
    box-shadow: 0 2px 8px rgba(90, 74, 66, 0.1);
}

.cb-mobile-drawer-title {
    display: flex;
    flex-direction: column;
}

.cb-drawer-name {
    font-family: var(--cb-font-script), 'Great Vibes', cursive !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    color: #3b2325 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.05 !important;
    text-transform: none !important;
}

.cb-drawer-sub {
    font-family: var(--cb-font-sans) !important;
    font-size: 8.5px !important;
    letter-spacing: 2px !important;
    color: #8c7674 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    margin-top: 1px !important;
}

.cb-mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #faf0f0;
    border: 1px solid rgba(184, 112, 119, 0.2);
    color: var(--cb-rose);
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.cb-mobile-drawer-close:hover {
    background: var(--cb-rose);
    color: #ffffff;
}

/* Nav Links inside Drawer */
.cb-mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    gap: 6px;
    flex: 1;
}

.cb-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cb-text-dark) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.cb-mobile-nav-link:hover,
.cb-mobile-nav-link.active {
    background: #faf0f0;
    color: var(--cb-rose) !important;
}

.cb-mobile-nav-link.active {
    font-weight: 700;
}

.cb-mobile-nav-icon {
    font-size: 18px;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.cb-mobile-cart-link {
    background: #fdfaf7;
    border: 1px solid var(--cb-border);
    margin-top: 10px;
    justify-content: space-between;
}

.cb-mobile-badge {
    background: var(--cb-rose);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drawer Footer */
.cb-mobile-drawer-footer {
    padding: 18px 20px 24px 20px;
    border-top: 1px solid var(--cb-border);
    background: #fcf9f6;
}

.cb-drawer-info-item {
    font-size: 12.5px;
    color: var(--cb-text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .cb-mobile-toggle {
        display: flex;
    }
}

/* -------------------------------------------------------------
   HOME PAGE (EXACT IMAGE 4 & 5 REPLICA)
------------------------------------------------------------- */
.cb-hero-section {
    max-width: 1200px;
    margin: 10px auto 0 auto;
    padding: 20px 24px 30px 24px;
    position: relative;
}

.cb-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

.cb-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cb-hero-tag {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--cb-text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cb-hero-tag .heart {
    color: var(--cb-rose);
}

.cb-hero-title {
    font-family: var(--cb-font-script) !important;
    font-size: 88px !important;
    font-weight: 400 !important;
    color: var(--cb-rose) !important;
    line-height: 1.05 !important;
    margin: 0 0 16px 0 !important;
    text-shadow: 0 3px 12px rgba(184, 112, 119, 0.15);
}

.cb-hero-desc {
    font-size: 15.5px;
    color: var(--cb-text-body);
    line-height: 1.68;
    max-width: 440px;
    margin: 0 0 28px 0;
}

.cb-btn-rose {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 13px 36px !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(184, 112, 119, 0.35) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.cb-btn-rose:hover {
    background: var(--cb-rose-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 112, 119, 0.45) !important;
}

/* Dual photo frame on right of Hero (matching Image 4 & 5) */
.cb-hero-dual-photos {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cb-hero-photo-wrap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(90, 74, 66, 0.12);
    aspect-ratio: 3 / 4;
}

.cb-hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cb-hero-photo-wrap:hover img {
    transform: scale(1.05);
}

/* Floating 4-Item Trust Bar (Image 4 & 5) */
.cb-trust-bar-wrap {
    max-width: 1000px;
    margin: -10px auto 50px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.cb-trust-bar-4 {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    box-shadow: 0 10px 32px rgba(90, 74, 66, 0.08);
    border: 1px solid rgba(235, 225, 215, 0.9);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cb-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.cb-trust-item:not(:last-child) {
    border-right: 1px solid #efe5db;
    padding-right: 16px;
}

.cb-trust-icon {
    font-size: 22px;
    color: var(--cb-rose);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-trust-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.cb-trust-content strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--cb-text-dark);
}

.cb-trust-content span {
    font-size: 11px;
    color: var(--cb-text-muted);
}

/* Statement Quote (Image 4 & 5) */
.cb-quote-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.cb-quote-title {
    font-family: var(--cb-font-serif);
    font-size: 32px;
    color: var(--cb-text-dark);
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.cb-quote-title .script {
    font-family: var(--cb-font-script);
    color: var(--cb-rose);
    font-size: 44px;
    font-weight: 400;
}

/* Explore Our Categories (4 Cards - Image 4 & 5) */
.cb-section-container {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.cb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cb-section-title {
    font-family: var(--cb-font-serif);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--cb-text-dark);
    text-transform: uppercase;
    margin: 0;
}

.cb-arrow-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cb-rose);
    text-decoration: none !important;
    transition: color 0.2s;
}

.cb-arrow-link:hover {
    color: var(--cb-rose-hover);
}

.cb-categories-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cb-cat-card-screenshot {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 4px 16px rgba(90, 74, 66, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cb-cat-card-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(90, 74, 66, 0.08);
    border-color: #e4d4c6;
}

.cb-cat-card-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    background: #fdf5f3;
    border: 1px solid rgba(184, 112, 119, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-rose);
    box-shadow: 0 4px 12px rgba(184, 112, 119, 0.1);
    transition: all 0.3s ease;
}

.cb-cat-card-screenshot:hover .cb-cat-card-icon {
    background: var(--cb-rose);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(184, 112, 119, 0.22);
}

.cb-cat-card-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
}

.cb-cat-card-screenshot h4 {
    font-family: var(--cb-font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--cb-text-dark);
    margin: 0 0 6px 0;
}

.cb-cat-card-screenshot p {
    font-size: 12px;
    color: var(--cb-text-muted);
    margin: 0;
}

/* Featured Creations (4 Cards with Add to Basket Button - Image 4 & 5) */
.cb-cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cb-card-product-full {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(90, 74, 66, 0.04);
    transition: all 0.3s ease;
}

.cb-card-product-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(90, 74, 66, 0.08);
    border-color: #e4d4c6;
}

.cb-card-media-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #fbf5ef;
    margin-bottom: 12px;
}

.cb-card-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cb-card-product-full:hover .cb-card-media-wrap img {
    transform: scale(1.05);
}

.cb-card-title-link {
    text-decoration: none !important;
    display: block;
    width: 100%;
}

.cb-card-title-link:hover .cb-card-title {
    color: var(--cb-rose) !important;
}

.cb-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--cb-text-dark);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.cb-card-price-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--cb-rose);
    margin-bottom: 14px;
}

.cb-card-add-btn {
    width: 100%;
    padding: 10px 0;
    border-radius: 9999px;
    background: #fdf5f3;
    color: var(--cb-rose);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(184, 112, 119, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.cb-card-add-btn:hover {
    background: var(--cb-rose);
    color: #ffffff;
    border-color: var(--cb-rose);
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.3);
}

/* Our Artisanal Quality Section (Split Section - Image 4 & 5) */
.cb-artisanal-split {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 28px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(90, 74, 66, 0.05);
    margin-top: 50px;
}

.cb-artisanal-media {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.cb-artisanal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-artisanal-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--cb-text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cb-artisanal-heading {
    font-family: var(--cb-font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--cb-text-dark);
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.cb-artisanal-text {
    font-size: 14.5px;
    color: var(--cb-text-body);
    line-height: 1.65;
    margin: 0 0 24px 0;
}

/* -------------------------------------------------------------
   MENU PAGE (EXACT IMAGE 1 REPLICA)
------------------------------------------------------------- */
.cb-menu-page-wrap {
    max-width: 1240px;
    margin: 10px auto 60px auto;
    padding: 0 20px;
}

.cb-menu-container {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.cb-menu-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 8px;
}

.cb-menu-sidebar::-webkit-scrollbar {
    width: 4px;
}

.cb-menu-sidebar::-webkit-scrollbar-thumb {
    background: #e8d8cc;
    border-radius: 4px;
}

.cb-sidebar-title {
    font-family: var(--cb-font-serif);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cb-text-dark);
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.cb-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.cb-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    padding: 10px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--cb-font-sans);
    color: var(--cb-text-body);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cb-sidebar-btn:hover {
    background: rgba(184, 112, 119, 0.08);
    color: var(--cb-rose);
}

.cb-sidebar-btn.active {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.35);
}

.cb-badge-count {
    font-size: 11px;
    font-weight: 500;
    color: var(--cb-text-muted);
    margin-left: auto;
}

.cb-sidebar-btn.active .cb-badge-count {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cb-sidebar-badge-card {
    margin-top: 36px;
    width: 100%;
    background: #fdf7f3;
    border: 1px dashed #e8d8cc;
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cb-badge-icon {
    color: var(--cb-rose);
    margin-bottom: 10px;
}

.cb-badge-title {
    font-family: var(--cb-font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--cb-text-dark);
}

.cb-badge-sub {
    font-size: 13px;
    color: var(--cb-text-muted);
}

.cb-badge-heart {
    color: var(--cb-rose);
    font-size: 11px;
    margin-top: 4px;
}

.cb-menu-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cb-catalog-section {
    scroll-margin-top: 100px;
}

.cb-catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cb-catalog-title {
    font-family: var(--cb-font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cb-text-dark);
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cb-catalog-title .cb-heart {
    color: var(--cb-rose);
    font-size: 11px;
}

.cb-cards-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* -------------------------------------------------------------
   ABOUT PAGE (EXACT IMAGE 3 REPLICA)
------------------------------------------------------------- */
.cb-about-header-wrap {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
}

.cb-about-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--cb-text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cb-about-title {
    font-family: var(--cb-font-script);
    font-size: 64px;
    color: var(--cb-rose);
    margin: 0 0 12px 0;
}

.cb-about-sub {
    font-size: 15px;
    color: var(--cb-text-body);
    line-height: 1.6;
}

.cb-about-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.cb-about-split h3 {
    font-family: var(--cb-font-serif);
    font-size: 26px;
    color: var(--cb-text-dark);
    margin: 0 0 16px 0;
}

.cb-about-split p {
    font-size: 14.5px;
    color: var(--cb-text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cb-stats-row {
    display: flex;
    gap: 28px;
}

.cb-stat-item strong {
    display: block;
    font-family: var(--cb-font-serif);
    font-size: 28px;
    color: var(--cb-rose);
}

.cb-stat-item span {
    font-size: 12px;
    color: var(--cb-text-muted);
}

.cb-pillars-section {
    text-align: center;
    margin-bottom: 60px;
}

.cb-pillars-title {
    font-family: var(--cb-font-serif);
    font-size: 26px;
    color: var(--cb-text-dark);
    margin: 0 0 30px 0;
}

.cb-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cb-pillar-card {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 20px;
    padding: 32px 22px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(90, 74, 66, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(90, 74, 66, 0.1);
    border-color: rgba(184, 112, 119, 0.35);
}

.cb-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: #fdf5f3;
    border: 1px solid rgba(184, 112, 119, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-rose);
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-pillar-card:hover .cb-pillar-icon {
    background: var(--cb-rose);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 22px rgba(184, 112, 119, 0.28);
}

.cb-pillar-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.cb-pillar-card h4 {
    font-family: var(--cb-font-serif);
    font-size: 17px;
    color: var(--cb-text-dark);
    margin: 0 0 10px 0;
    font-weight: 600;
}

.cb-pillar-card p {
    font-size: 13.5px;
    color: var(--cb-text-muted);
    line-height: 1.6;
    margin: 0;
}

.cb-cta-banner {
    background: var(--cb-rose);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.cb-cta-banner h3 {
    font-family: var(--cb-font-serif);
    font-size: 28px;
    margin: 0 0 10px 0;
}

.cb-cta-banner p {
    font-size: 15px;
    opacity: 0.92;
    margin: 0 0 24px 0;
}

.cb-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.cb-btn-white {
    background: #ffffff !important;
    color: var(--cb-rose) !important;
    border-radius: 9999px !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: transform 0.2s;
}

.cb-btn-white:hover {
    transform: translateY(-2px);
}

.cb-btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 9999px !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.2s;
}

.cb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* -------------------------------------------------------------
   CONTACT PAGE - LUXURY REDESIGN WITH PROFESSIONAL BESPOKE ICONS
------------------------------------------------------------- */
.cb-contact-header-wrap {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
}

.cb-contact-title {
    font-family: var(--cb-font-serif);
    font-size: 36px;
    color: var(--cb-text-dark);
    margin: 8px 0 12px 0;
    font-weight: 600;
}

.cb-info-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .cb-info-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cb-info-card {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 24px;
    padding: 34px 24px 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(90, 74, 66, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.cb-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cb-rose), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cb-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(90, 74, 66, 0.1);
    border-color: #ebdcd6;
}

.cb-info-card:hover::before {
    opacity: 1;
}

.cb-info-icon-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fbf0ee;
    border: 1.5px solid #f2dedb;
    color: var(--cb-rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(184, 112, 119, 0.1);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.cb-info-card:hover .cb-info-icon-badge {
    transform: translateY(-2px) scale(1.06);
    background: var(--cb-rose);
    border-color: var(--cb-rose);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(184, 112, 119, 0.32);
}

.cb-info-icon-badge svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
}

.cb-badge-atelier {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--cb-rose);
    background: rgba(184, 112, 119, 0.08);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 10px;
}

.cb-info-card h4 {
    font-family: var(--cb-font-serif);
    font-size: 20px;
    color: var(--cb-text-dark);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.cb-contact-detail {
    font-size: 14px;
    color: var(--cb-text-muted);
    line-height: 1.6;
    margin: 0 0 16px 0;
    min-height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cb-contact-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cb-text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    background: #fdfaf7;
    border: 1px solid #f2e9e2;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 250px;
    height: 42px;
    box-sizing: border-box;
}

.cb-contact-phone-link:hover {
    color: var(--cb-rose);
    border-color: var(--cb-rose);
    background: #fff;
    transform: translateY(-1px);
}

.cb-contact-phone-link svg {
    width: 15px;
    height: 15px;
    color: var(--cb-rose);
    flex-shrink: 0;
}

.cb-card-action-wrap {
    margin-top: auto;
    padding-top: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cb-contact-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cb-rose);
    text-decoration: none;
    height: 38px;
    padding: 0 20px;
    border-radius: 9999px;
    background: #faf5ef;
    border: 1px solid #ede4db;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.cb-contact-action-link:hover {
    background: var(--cb-rose);
    color: #ffffff;
    border-color: var(--cb-rose);
    box-shadow: 0 4px 12px rgba(184, 112, 119, 0.25);
    transform: translateY(-1px);
}

.cb-contact-action-link svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
    transition: transform 0.2s ease;
}

.cb-contact-action-link:hover svg {
    transform: translateX(2px);
}

/* Quick Connect Direct Channels Bar */
.cb-quick-connect-bar {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 24px;
    padding: 26px 36px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto 36px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 18px rgba(90, 74, 66, 0.04);
}

.cb-quick-connect-title h4 {
    font-family: var(--cb-font-serif);
    font-size: 18px;
    color: var(--cb-text-dark);
    margin: 0 0 3px 0;
}

.cb-quick-connect-title p {
    font-size: 13.5px;
    color: var(--cb-text-muted);
    margin: 0;
}

.cb-quick-connect-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cb-quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 22px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    line-height: 1;
}

.cb-quick-btn-whatsapp {
    background: #25D366;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.cb-quick-btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.cb-quick-btn-outline {
    background: #ffffff;
    color: var(--cb-text-dark) !important;
    border: 1px solid var(--cb-border);
}

.cb-quick-btn-outline:hover {
    border-color: var(--cb-rose);
    color: var(--cb-rose) !important;
    background: #faf5ef;
    transform: translateY(-2px);
}

.cb-quick-btn-rose {
    background: var(--cb-rose);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(184, 112, 119, 0.25);
}

.cb-quick-btn-rose:hover {
    background: #9e5b62;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 112, 119, 0.35);
}

/* Contact Form Card */
.cb-contact-form-card {
    background: #ffffff;
    border: 1px solid var(--cb-border-card);
    border-radius: 28px;
    padding: 42px 36px;
    max-width: 720px;
    margin: 0 auto 60px auto;
    box-shadow: 0 10px 36px rgba(90, 74, 66, 0.06);
}

.cb-form-title {
    font-family: var(--cb-font-serif);
    font-size: 26px;
    color: var(--cb-text-dark);
    text-align: center;
    margin: 0 0 10px 0;
}

.cb-input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cb-input-icon-prefix {
    position: absolute;
    left: 16px;
    color: #a89a92;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.cb-input-with-icon .cb-form-input,
.cb-input-with-icon .cb-form-select {
    padding-left: 44px !important;
}

.cb-input-with-icon .cb-form-input:focus ~ .cb-input-icon-prefix,
.cb-input-with-icon .cb-form-select:focus ~ .cb-input-icon-prefix {
    color: var(--cb-rose);
}

/* Mobile Drawer Nav SVG Icons */
.cb-mobile-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--cb-rose);
    flex-shrink: 0;
}

.cb-mobile-nav-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
}

.cb-drawer-info-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--cb-rose);
    stroke-width: 2;
    flex-shrink: 0;
}

.cb-form-input:focus, .cb-form-textarea:focus {
    outline: none;
    border-color: var(--cb-rose);
    background: #ffffff;
}

.cb-form-textarea {
    height: 120px;
    resize: vertical;
}

/* -------------------------------------------------------------
   FOOTER (ALL PAGES)
------------------------------------------------------------- */
.cb-footer {
    background: #f7eee7;
    border-top: 1px solid #ebdcd0;
    padding: 60px 20px 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.cb-footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.cb-footer-wreath {
    width: 105px;
    height: 105px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(90, 74, 66, 0.1);
    border: 2px solid rgba(184, 112, 119, 0.2);
    transition: transform 0.3s ease;
}

.cb-footer-wreath:hover {
    transform: scale(1.06);
}

.cb-footer-title {
    font-family: var(--cb-font-serif);
    font-size: 28px;
    color: var(--cb-rose);
    margin: 0 0 6px 0;
}

.cb-footer-tagline {
    font-size: 13.5px;
    color: var(--cb-text-muted);
    margin: 0 0 20px 0;
}

.cb-footer-divider {
    height: 1px;
    background: #e5d5c7;
    max-width: 360px;
    margin: 0 auto 18px auto;
}

.cb-footer-copyright {
    font-size: 12px;
    color: #9a8a80;
    margin: 0;
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 1024px) {
    .cb-hero-title {
        font-size: 68px !important;
    }
    .cb-cards-grid-4, .cb-categories-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cb-cards-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .cb-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cb-nav-menu {
        display: none;
    }
    .cb-hero-grid, .cb-about-split, .cb-artisanal-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cb-hero-content {
        align-items: center;
    }
    .cb-hero-title {
        font-size: 52px !important;
    }
    .cb-trust-bar-4 {
        flex-direction: column;
        border-radius: 20px;
        gap: 14px;
    }
    .cb-trust-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #efe5db;
        padding-right: 0;
        padding-bottom: 14px;
        width: 100%;
    }
    .cb-menu-page-wrap {
        margin: 5px auto 40px auto !important;
        padding: 0 16px !important;
    }
    .cb-menu-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    /* Mobile Menu Category Bar: Sticky horizontal pill bar */
    .cb-menu-sidebar {
        position: sticky !important;
        top: 82px !important;
        z-index: 90 !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 -16px 16px -16px !important;
        background: transparent !important;
        box-shadow: none !important;
        display: block !important;
        width: auto !important;
    }
    /* Hide desktop-only sidebar elements on mobile to prevent overlapping */
    .cb-sidebar-title {
        display: none !important;
    }
    .cb-sidebar-badge-card {
        display: none !important;
    }
    .cb-sidebar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 8px !important;
        padding: 10px 16px !important;
        background: rgba(250, 245, 239, 0.98) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        border-top: 1px solid rgba(226, 214, 203, 0.5) !important;
        border-bottom: 1px solid rgba(226, 214, 203, 0.8) !important;
        box-shadow: 0 4px 16px rgba(74, 55, 40, 0.05) !important;
    }
    .cb-sidebar-nav::-webkit-scrollbar {
        display: none !important;
    }
    .cb-sidebar-btn {
        flex-shrink: 0 !important;
        width: auto !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 16px !important;
        border-radius: 9999px !important;
        background: #ffffff !important;
        border: 1px solid rgba(226, 214, 203, 0.9) !important;
        color: #4a3728 !important;
        font-family: var(--cb-font-sans) !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        box-shadow: 0 2px 6px rgba(74, 55, 40, 0.04) !important;
        cursor: pointer !important;
        text-decoration: none !important;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .cb-sidebar-btn:hover {
        border-color: var(--cb-rose) !important;
        color: var(--cb-rose) !important;
    }
    .cb-sidebar-btn.active {
        background: var(--cb-rose) !important;
        color: #ffffff !important;
        border-color: var(--cb-rose) !important;
        box-shadow: 0 4px 14px rgba(184, 112, 119, 0.4) !important;
        transform: scale(1.02);
    }
    .cb-sidebar-btn .cb-badge-count {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: var(--cb-text-muted) !important;
        margin-left: 2px !important;
    }
    .cb-sidebar-btn.active .cb-badge-count {
        color: rgba(255, 255, 255, 0.95) !important;
    }
    .cb-catalog-section {
        scroll-margin-top: 155px !important;
        margin-bottom: 36px !important;
    }
    .cb-catalog-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 16px !important;
        padding: 0 2px !important;
        gap: 12px !important;
    }
    .cb-catalog-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        color: var(--cb-text-dark) !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        flex: 1 !important;
    }
    .cb-catalog-header .cb-arrow-link {
        font-size: 12.5px !important;
        font-weight: 600 !important;
        color: var(--cb-rose) !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    .cb-cards-grid-4, .cb-cards-grid-5, .cb-categories-grid-4, .cb-info-cards-row, .cb-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .cb-form-row-2 {
        grid-template-columns: 1fr;
    }
    .cb-navbar {
        height: 82px;
        padding: 0 18px;
    }
    .cb-logo-img {
        height: 62px;
        width: 62px;
        min-width: 62px;
        box-shadow: 0 3px 12px rgba(90, 74, 66, 0.12);
        border: 2px solid rgba(184, 112, 119, 0.2);
    }
    .cb-brand-name {
        font-size: 28px !important;
    }
    .cb-brand-sub {
        font-size: 9px !important;
        letter-spacing: 2.2px !important;
    }
}

@media (max-width: 480px) {
    .cb-navbar {
        height: 76px;
        padding: 0 14px;
    }
    .cb-logo-img {
        height: 56px;
        width: 56px;
        min-width: 56px;
        box-shadow: 0 3px 10px rgba(90, 74, 66, 0.1);
        border: 2px solid rgba(184, 112, 119, 0.2);
    }
    .cb-brand-name {
        font-size: 25px !important;
    }
    .cb-brand-sub {
        font-size: 8.5px !important;
        letter-spacing: 1.8px !important;
    }
    .cb-menu-sidebar {
        top: 76px !important;
        margin: 0 -14px 16px -14px !important;
    }
    .cb-sidebar-nav {
        padding: 8px 14px !important;
        gap: 6px !important;
    }
    .cb-sidebar-btn {
        padding: 7px 13px !important;
        font-size: 12px !important;
    }
    .cb-catalog-section {
        scroll-margin-top: 145px !important;
    }
    .cb-cards-grid-4, .cb-cards-grid-5, .cb-categories-grid-4, .cb-info-cards-row, .cb-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   WOOCOMMERCE CART, CHECKOUT & GLOBAL STYLES
   ============================================================= */

/* Page container */
.cb-page-container {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 24px;
    box-sizing: border-box;
}

.woocommerce-cart .cb-page-container,
.woocommerce-checkout .cb-page-container,
.woocommerce-account .cb-page-container {
    min-height: 60vh;
}

/* Page Titles */
.cb-cart-header,
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title {
    font-family: var(--cb-font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--cb-text-dark);
    text-align: center;
    margin-bottom: 30px;
}

/* Empty Cart State */
.woocommerce .cart-empty,
.woocommerce .wc-empty-cart-message {
    font-family: var(--cb-font-serif);
    font-size: 28px;
    color: var(--cb-text-dark);
    text-align: center;
    margin: 40px auto 16px;
}

.woocommerce .wd-empty-block-text {
    font-size: 15px;
    color: var(--cb-text-muted);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.woocommerce .return-to-shop {
    text-align: center;
    margin-bottom: 60px;
}

.woocommerce .return-to-shop a.button,
.woocommerce a.button.wc-backward {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 14px 36px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(184, 112, 119, 0.25) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce .return-to-shop a.button:hover,
.woocommerce a.button.wc-backward:hover {
    background: var(--cb-rose-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.35) !important;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: 1px solid var(--cb-border) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    margin-bottom: 40px;
}

.woocommerce table.shop_table th {
    background: #fcf9f5 !important;
    color: var(--cb-text-dark) !important;
    font-family: var(--cb-font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
}

.woocommerce table.shop_table td {
    padding: 20px !important;
    border-bottom: 1px solid #f5ede6 !important;
    vertical-align: middle !important;
}

.woocommerce table.shop_table td.product-name a {
    font-family: var(--cb-font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--cb-text-dark) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: var(--cb-rose) !important;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    font-weight: 600;
    color: var(--cb-rose) !important;
    font-size: 16px;
}

.woocommerce table.shop_table td.product-thumbnail img {
    border-radius: 12px;
    border: 1px solid var(--cb-border);
    max-width: 70px;
    height: auto;
}

.woocommerce a.remove {
    color: #a89488 !important;
    font-size: 20px;
    transition: color 0.2s;
}
.woocommerce a.remove:hover {
    color: var(--cb-rose) !important;
    background: transparent !important;
}

/* Coupon & Actions Bar */
.woocommerce table.shop_table td.actions {
    background: #fdfaf7;
    padding: 20px !important;
}

.woocommerce table.shop_table .coupon input.input-text {
    border-radius: 999px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 10px 20px !important;
    background: #ffffff !important;
    font-size: 14px;
}

.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"],
.woocommerce .coupon button.button,
.woocommerce-cart td.actions .button {
    border-radius: 999px !important;
    background: #fbf0ee !important;
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
    border: 1px solid #f0d5d7 !important;
    padding: 12px 26px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

.woocommerce button[name="apply_coupon"]:hover,
.woocommerce button[name="update_cart"]:hover,
.woocommerce .coupon button.button:hover,
.woocommerce-cart td.actions .button:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
    box-shadow: 0 4px 12px rgba(184, 112, 119, 0.25) !important;
}

/* Cart Totals Box */
.cart-collaterals .cart_totals {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
}

.cart-collaterals .cart_totals h2 {
    font-family: var(--cb-font-serif) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
    padding-bottom: 14px !important;
}

.cart-collaterals .cart_totals table.shop_table {
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 24px !important;
}

.cart-collaterals .cart_totals table.shop_table th,
.cart-collaterals .cart_totals table.shop_table td {
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--cb-border) !important;
    background: transparent !important;
}

.cart-collaterals .cart_totals .order-total td {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
}

.wc-proceed-to-checkout a.checkout-button,
.woocommerce a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: var(--cb-rose) !important;
    background-color: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    display: block !important;
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.35) !important;
    transition: all 0.25s ease !important;
    border: none !important;
    margin-top: 20px !important;
    cursor: pointer !important;
}

.wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--cb-rose-hover) !important;
    background-color: var(--cb-rose-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(184, 112, 119, 0.45) !important;
    color: #ffffff !important;
}

/* =============================================================
   CHECKOUT PAGE - 2-COLUMN LUXURY CARD LAYOUT
   ============================================================= */

/* Coupon Toggle Banner */
.woocommerce-form-coupon-toggle {
    margin-bottom: 24px !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-left: 4px solid var(--cb-rose) !important;
    border-radius: 14px !important;
    padding: 16px 24px !important;
    color: var(--cb-text-dark) !important;
    font-size: 14px !important;
    box-shadow: 0 2px 10px rgba(56, 43, 36, 0.03) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    transition: color 0.2s;
}

.woocommerce-form-coupon-toggle .woocommerce-info a:hover {
    color: var(--cb-rose-hover) !important;
}

form.checkout_coupon {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-bottom: 28px !important;
    box-shadow: 0 4px 20px rgba(56, 43, 36, 0.03) !important;
}

form.checkout_coupon input.input-text {
    border-radius: 999px !important;
    border: 1.5px solid var(--cb-border) !important;
    padding: 12px 22px !important;
    background: #ffffff !important;
    font-size: 14px !important;
}

form.checkout_coupon button.button {
    border-radius: 999px !important;
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

form.checkout_coupon button.button:hover {
    background: var(--cb-rose-hover) !important;
}

/* 2-Column Grid for Checkout Form */
.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 36px !important;
    align-items: start !important;
}

.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout .checkout-order-review {
    grid-column: 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
}

.woocommerce-checkout h3 {
    font-family: var(--cb-font-serif) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: var(--cb-text-dark) !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
    padding-bottom: 12px !important;
}

.woocommerce-checkout h3#order_review_heading {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 14px !important;
}

.woocommerce-checkout #order_review {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* WoodMart Table Wrapper Reset */
.woocommerce-checkout #order_review .wd-table-wrapper {
    overflow: visible !important;
    overflow-x: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Order Review Table - Perfect Column Proportions & Clean Spacing */
.woocommerce-checkout table.woocommerce-checkout-review-order-table,
.woocommerce table.woocommerce-checkout-review-order-table.shop_table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    margin: 0 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
    border: none !important;
    border-bottom: 1px solid #ebdcd0 !important;
    background: transparent !important;
    padding: 14px 6px !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-name,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-name {
    width: 65% !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: break-word !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-subtotal,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td {
    width: 35% !important;
    text-align: right !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
    white-space: nowrap !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total th {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    text-transform: uppercase !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td {
    font-size: 20px !important;
    font-weight: 800 !important;
}

/* Payment Box */
.woocommerce-checkout #payment {
    background: #fdfaf7 !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 14px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--cb-border) !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
    list-style: none !important;
    padding-left: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 12px !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    cursor: pointer !important;
    display: inline !important;
    margin-left: 8px !important;
    font-size: 14px !important;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    accent-color: var(--cb-rose) !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: #ffffff !important;
    border: 1px solid #f0e6dc !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    color: var(--cb-text-body) !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
    box-shadow: 0 2px 8px rgba(56, 43, 36, 0.02) !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #ffffff !important;
}

.woocommerce-checkout #payment .place-order {
    padding: 0 !important;
    margin: 16px 0 0 !important;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
    font-size: 12px !important;
    color: var(--cb-text-muted) !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text a {
    color: var(--cb-rose) !important;
    text-decoration: underline !important;
}

/* Place Order Button - Signature Dusty Rose Pill */
body.woocommerce-checkout #place_order,
body #place_order,
.woocommerce-checkout button#place_order,
.woocommerce button#place_order,
.woocommerce #payment #place_order {
    background: var(--cb-rose) !important;
    background-color: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.35) !important;
    border: none !important;
    transition: all 0.25s ease !important;
    width: 100% !important;
    display: block !important;
    cursor: pointer !important;
    text-align: center !important;
}

body.woocommerce-checkout #place_order:hover,
body #place_order:hover,
.woocommerce-checkout button#place_order:hover,
.woocommerce button#place_order:hover,
.woocommerce #payment #place_order:hover {
    background: var(--cb-rose-hover) !important;
    background-color: var(--cb-rose-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 26px rgba(184, 112, 119, 0.45) !important;
    color: #ffffff !important;
}

/* Responsive Grid for Tablets and Mobile */
@media (max-width: 991px) {
    .woocommerce-checkout form.checkout {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout .checkout-order-review,
    .woocommerce-checkout #order_review {
        width: 100% !important;
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .woocommerce-checkout table.woocommerce-checkout-review-order-table th,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table td {
        padding: 12px 4px !important;
    }

    .woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-name,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-name {
        width: 60% !important;
        font-size: 13.5px !important;
    }

    .woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-total,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-total,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td {
        width: 40% !important;
        font-size: 14.5px !important;
    }

    .woocommerce-checkout p.form-row-first,
    .woocommerce-checkout p.form-row-last {
        width: 100% !important;
    }
}

/* =============================================================
   MOBILE CART FIX: PREVENT THUMBNAIL AND REMOVE "X" FROM OVERLAPPING TITLE
   ============================================================= */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table.cart,
    .woocommerce-cart table.shop_table_responsive {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        display: block !important;
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table.cart tbody,
    .woocommerce-cart table.shop_table_responsive tbody {
        display: block !important;
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item,
    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        position: relative !important;
        display: block !important;
        padding: 18px 16px 14px 16px !important;
        margin-bottom: 18px !important;
        border: 1px solid var(--cb-border) !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 4px 18px rgba(56, 43, 36, 0.04) !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Product Thumbnail: strictly top-left inside card */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-thumbnail,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail {
        position: absolute !important;
        top: 18px !important;
        left: 16px !important;
        width: 80px !important;
        height: 80px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        display: block !important;
        z-index: 5 !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-thumbnail a,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail a {
        display: block !important;
        width: 80px !important;
        height: 80px !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-thumbnail img,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail img {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        max-width: 80px !important;
        border-radius: 14px !important;
        object-fit: cover !important;
        border: 1px solid var(--cb-border) !important;
        display: block !important;
    }

    /* Remove "X" button: strictly top-right inside card */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-remove,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-remove a.remove,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove a.remove {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: #fcf1f1 !important;
        color: var(--cb-rose) !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-remove a.remove:hover,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove a.remove:hover {
        background: var(--cb-rose) !important;
        color: #ffffff !important;
    }

    /* Product Name: Top row right beside thumbnail, leaves 96px for thumbnail and 40px for remove X */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-name,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name {
        display: block !important;
        margin-left: 96px !important; /* CRITICAL: 80px image + 16px space so text NEVER gets covered */
        padding-left: 0 !important;
        padding-right: 40px !important; /* clears remove X button */
        padding-top: 2px !important;
        padding-bottom: 14px !important;
        min-height: 82px !important; /* ensures row is at least as tall as thumbnail */
        border: none !important;
        border-bottom: 1px dashed rgba(226, 214, 203, 0.7) !important;
        box-sizing: border-box !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-name a,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name a {
        font-family: var(--cb-font-serif) !important;
        font-size: 17.5px !important;
        font-weight: 700 !important;
        color: var(--cb-text-dark) !important;
        line-height: 1.35 !important;
        display: block !important;
        word-break: break-word !important;
        text-decoration: none !important;
    }

    /* Hide pseudo ::before on thumbnail, name, remove */
    .woocommerce-cart table.shop_table.cart tr.cart_item td:is(.product-name, .product-thumbnail, .product-remove)::before,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td:is(.product-name, .product-thumbnail, .product-remove)::before {
        content: none !important;
        display: none !important;
    }

    /* Price, Quantity, Subtotal rows span full width under thumbnail + title */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-price,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price,
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-quantity,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-quantity,
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-subtotal,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        margin-left: 0 !important;
        padding: 12px 0 !important;
        border: none !important;
        border-bottom: 1px dashed rgba(226, 214, 203, 0.7) !important;
        box-sizing: border-box !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-subtotal,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal {
        border-bottom: none !important;
        padding-bottom: 4px !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td:is(.product-price, .product-quantity, .product-subtotal)::before,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td:is(.product-price, .product-quantity, .product-subtotal)::before {
        content: attr(data-title) !important;
        font-family: var(--cb-font-serif) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: var(--cb-rose) !important;
        margin-right: auto !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-price .amount,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price .amount {
        font-family: var(--cb-font-sans) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: var(--cb-text-body) !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-subtotal .amount,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal .amount {
        font-family: var(--cb-font-sans) !important;
        font-size: 15.5px !important;
        font-weight: 700 !important;
        color: var(--cb-rose) !important;
    }
}

/* WooCommerce Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(56, 43, 36, 0.04) !important;
    padding: 16px 20px !important;
    margin-bottom: 24px !important;
    font-size: 14px !important;
}

.woocommerce-message {
    border-left: 4px solid #70b885 !important;
}

.woocommerce-info {
    border-left: 4px solid var(--cb-rose) !important;
}

.woocommerce-error {
    border-left: 4px solid #d9534f !important;
    list-style: none !important;
}

/* =============================================================
   SINGLE PRODUCT PAGE - LUXURY BAKERY STYLING
   ============================================================= */

body.single-product {
    background-color: var(--cb-cream-bg) !important;
}

.single-product .main-page-wrapper,
.single-product .site-content {
    background-color: var(--cb-cream-bg) !important;
    padding-top: 10px !important;
    padding-bottom: 60px !important;
}

.single-product .product.type-product,
.single-product-page.type-product {
    max-width: 1240px !important;
    margin: 20px auto 60px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

/* Breadcrumbs */
.single-product .woocommerce-breadcrumb {
    font-size: 13px !important;
    color: var(--cb-text-muted) !important;
    margin-bottom: 24px !important;
    font-family: var(--cb-font-sans) !important;
}

.single-product .woocommerce-breadcrumb a {
    color: var(--cb-text-body) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.single-product .woocommerce-breadcrumb a:hover {
    color: var(--cb-rose) !important;
}

/* Product Gallery */
.single-product .woocommerce-product-gallery {
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid var(--cb-border) !important;
    background: #fdfaf7 !important;
    box-shadow: 0 4px 20px rgba(56, 43, 36, 0.03) !important;
}

.single-product .woocommerce-product-gallery img {
    border-radius: 18px !important;
    object-fit: cover !important;
}

.single-product .woocommerce-product-gallery .woocommerce-placeholder {
    background: #fcf8f5 !important;
    padding: 60px 40px !important;
    border-radius: 18px !important;
}

/* Product Summary / Info */
.single-product h1.product_title {
    font-family: var(--cb-font-serif) !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

.single-product .price,
.single-product p.price,
.single-product .price span.woocommerce-Price-amount {
    font-family: var(--cb-font-sans) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
}

.single-product .woocommerce-product-details__short-description {
    font-family: var(--cb-font-sans) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--cb-text-body) !important;
    margin: 16px 0 24px !important;
}

/* Quantity and Add to Cart Form */
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 28px 0 !important;
    flex-wrap: wrap !important;
}

.single-product form.cart .quantity {
    border: 1.5px solid var(--cb-border) !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 48px !important;
}

.single-product form.cart .quantity input.qty {
    font-family: var(--cb-font-sans) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    border: none !important;
    background: transparent !important;
    width: 44px !important;
    text-align: center !important;
    box-shadow: none !important;
}

.single-product form.cart .quantity input.plus,
.single-product form.cart .quantity input.minus,
.single-product form.cart .quantity .plus,
.single-product form.cart .quantity .minus {
    background: #fbf0ee !important;
    color: var(--cb-rose) !important;
    border: none !important;
    width: 36px !important;
    height: 48px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.single-product form.cart .quantity input.plus:hover,
.single-product form.cart .quantity input.minus:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
}

/* Single Add to Cart Button - Signature Dusty Rose Pill */
.single-product button.single_add_to_cart_button,
.single-product button[name="add-to-cart"],
.single-product .single_add_to_cart_button.button,
body .single-product button.button.alt {
    background: var(--cb-rose) !important;
    background-color: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 14px 40px !important;
    height: 48px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(184, 112, 119, 0.35) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.single-product button.single_add_to_cart_button:hover,
.single-product button[name="add-to-cart"]:hover,
.single-product .single_add_to_cart_button.button:hover,
body .single-product button.button.alt:hover {
    background: var(--cb-rose-hover) !important;
    background-color: var(--cb-rose-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(184, 112, 119, 0.45) !important;
    color: #ffffff !important;
}

/* Product Meta (Categories, Share, etc.) */
.single-product .product_meta {
    border-top: 1px solid var(--cb-border) !important;
    padding-top: 20px !important;
    margin-top: 24px !important;
    font-size: 13px !important;
    color: var(--cb-text-muted) !important;
}

.single-product .product_meta span.posted_in,
.single-product .product_meta span.tagged_as {
    display: block !important;
    margin-bottom: 6px !important;
}

.single-product .product_meta a {
    color: var(--cb-rose) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.single-product .product_meta a:hover {
    color: var(--cb-rose-hover) !important;
}

/* Tabs */
.single-product .woocommerce-tabs {
    margin-top: 40px !important;
    border-top: 1px solid var(--cb-border) !important;
    padding-top: 30px !important;
}

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

.single-product .woocommerce-tabs ul.tabs li {
    border-radius: 12px 12px 0 0 !important;
    border: 1px solid var(--cb-border) !important;
    border-bottom: none !important;
    background: #fdfaf7 !important;
    padding: 10px 24px !important;
}

.single-product .woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    color: var(--cb-text-dark) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--cb-rose) !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 20px 0;
}

/* =============================================================
   RELATED PRODUCTS - MASTER LUXURY STYLING (CRUMB & BOW ATELIER)
   ============================================================= */
.related-products,
.related.products {
    margin: 50px auto 30px auto !important;
    max-width: 1200px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.related-products .slider-title,
.related-products .element-title,
.related-products h2,
.related.products > h2 {
    font-family: var(--cb-font-serif) !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    text-align: center !important;
    margin: 0 0 28px 0 !important;
    display: block !important;
    width: 100% !important;
}

.related-products .slider-title span,
.related.products > h2 span {
    position: relative;
}

.related-products .slider-title span::after,
.related.products > h2 span::after {
    content: ' ♥';
    color: var(--cb-rose);
    font-size: 16px;
}

/* Carousel Track & Container */
.related-products .wd-carousel-inner {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 10px 0 24px 0 !important;
    margin: 0 !important;
}

.related-products .wd-carousel {
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
}

.related-products .wd-carousel-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

/* 4 Equal Slides Per View on Desktop - Zero Item Cutting */
.related-products .wd-carousel-item {
    flex: 0 0 25% !important;
    width: 25% !important;
    max-width: 25% !important;
    min-width: 25% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    height: auto !important;
    display: flex !important;
}

@media (max-width: 1024px) {
    .related-products .wd-carousel-item {
        flex: 0 0 33.333% !important;
        width: 33.333% !important;
        max-width: 33.333% !important;
        min-width: 33.333% !important;
    }
}

@media (max-width: 768px) {
    .related-products .wd-carousel-item {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        min-width: 50% !important;
        padding: 0 6px !important;
    }
}

@media (max-width: 480px) {
    .related-products .wd-carousel-item {
        flex: 0 0 85% !important;
        width: 85% !important;
        max-width: 85% !important;
        min-width: 85% !important;
    }
}

/* Individual Product Card */
.related-products .wd-product,
.related-products .product-grid-item,
.related.products .product {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 16px !important;
    box-shadow: 0 4px 16px rgba(74, 55, 40, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.related-products .wd-product:hover,
.related-products .product-grid-item:hover,
.related.products .product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 26px rgba(184, 112, 119, 0.16) !important;
    border-color: #ebdcd6 !important;
}

.related-products .wd-product-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

/* Photo Container */
.related-products .wd-product-thumb,
.related-products .product-element-top {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Image Link & Square Image */
.related-products .wd-product-img-link,
.related-products .product-image-link {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #fbf5ef !important;
    margin: 0 0 12px 0 !important;
    position: relative !important;
}

.related-products .wd-product-img-link img,
.related-products .product-image-link img,
.related-products .attachment-woocommerce_thumbnail {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 14px !important;
    transition: transform 0.4s ease !important;
}

.related-products .wd-product:hover img {
    transform: scale(1.05) !important;
}

/* Titles and Categories - ALWAYS VISIBLE */
.related-products .top-information,
.related-products .wd-hover-info .top-information {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.related-products .wd-entities-title,
.related-products .product-title,
.related.products .woocommerce-loop-product__title {
    font-family: var(--cb-font-serif) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.35 !important;
    text-align: center !important;
}

.related-products .wd-entities-title a,
.related-products .product-title a {
    color: var(--cb-text-dark) !important;
    text-decoration: none !important;
}

.related-products .wd-entities-title a:hover {
    color: var(--cb-rose) !important;
}

.related-products .wd-product-cats {
    font-size: 11px !important;
    color: var(--cb-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
    text-align: center !important;
}

.related-products .wd-product-cats a {
    color: var(--cb-text-muted) !important;
    text-decoration: none !important;
}

/* Price */
.related-products .bottom-information,
.related-products .wd-hover-info .bottom-information {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.related-products .bottom-information .price,
.related-products .price,
.related-products .price .amount,
.related.products .price {
    font-family: var(--cb-font-sans) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Add to Basket Full-width Pill Button - ALWAYS VISIBLE, ZERO GLITCH */
.related-products .wd-buttons,
.related-products .wd-buttons[class*="wd-pos-r"] {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.related-products .wd-add-btn {
    width: 100% !important;
    display: block !important;
}

.related-products .wd-add-btn a.button,
.related-products .wd-add-btn a.add_to_cart_button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 42px !important;
    padding: 0 16px !important;
    background: #fdf5f3 !important;
    color: var(--cb-rose) !important;
    border: 1px solid rgba(184, 112, 119, 0.3) !important;
    border-radius: 9999px !important;
    font-family: var(--cb-font-sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.related-products .wd-add-btn a.button:hover,
.related-products .wd-add-btn a.add_to_cart_button:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Make "Add to cart" text visible inside the button */
.related-products .wd-add-btn .wd-action-text {
    display: inline-block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: inherit !important;
}

.related-products .wd-add-btn .wd-action-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    color: inherit !important;
}

/* Hide clutter tooltips and buttons: wishlist heart, compare, quick-view, labels */
.related-products .wd-tooltip,
.related-products [class*="tooltip"],
.related-products .wd-compare-btn,
.related-products .wd-quick-view-btn,
.related-products .wd-wishlist-btn,
.related-products .product-labels {
    display: none !important;
}

/* Carousel navigation arrows */
.related-products .wd-carousel-container .wd-arrow {
    background: #ffffff !important;
    border: 1px solid #ede4db !important;
    color: #2d2420 !important;
    box-shadow: 0 4px 14px rgba(90, 74, 66, 0.1) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.2s ease !important;
}

.related-products .wd-carousel-container .wd-arrow:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
}


/* =============================================================
   WOOCOMMERCE CART, CHECKOUT & GLOBAL STYLES
   ============================================================= */

/* Page container */
.cb-page-container {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 24px;
    box-sizing: border-box;
}

.woocommerce-cart .cb-page-container,
.woocommerce-checkout .cb-page-container,
.woocommerce-account .cb-page-container {
    min-height: 60vh;
}

/* Page Titles */
.cb-cart-header,
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title {
    font-family: var(--cb-font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--cb-text-dark);
    text-align: center;
    margin-bottom: 30px;
}

/* Empty Cart State */
.woocommerce .cart-empty,
.woocommerce .wc-empty-cart-message {
    font-family: var(--cb-font-serif);
    font-size: 28px;
    color: var(--cb-text-dark);
    text-align: center;
    margin: 40px auto 16px;
}

.woocommerce .wd-empty-block-text {
    font-size: 15px;
    color: var(--cb-text-muted);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.woocommerce .return-to-shop {
    text-align: center;
    margin-bottom: 60px;
}

.woocommerce .return-to-shop a.button,
.woocommerce a.button.wc-backward {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 14px 36px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(184, 112, 119, 0.25) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce .return-to-shop a.button:hover,
.woocommerce a.button.wc-backward:hover {
    background: var(--cb-rose-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.35) !important;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: 1px solid var(--cb-border) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    margin-bottom: 40px;
}

.woocommerce table.shop_table th {
    background: #fcf9f5 !important;
    color: var(--cb-text-dark) !important;
    font-family: var(--cb-font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
}

.woocommerce table.shop_table td {
    padding: 20px !important;
    border-bottom: 1px solid #f5ede6 !important;
    vertical-align: middle !important;
}

.woocommerce table.shop_table td.product-name a {
    font-family: var(--cb-font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--cb-text-dark) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: var(--cb-rose) !important;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    font-weight: 600;
    color: var(--cb-rose) !important;
    font-size: 16px;
}

.woocommerce table.shop_table td.product-thumbnail img {
    border-radius: 12px;
    border: 1px solid var(--cb-border);
    max-width: 70px;
    height: auto;
}

.woocommerce a.remove {
    color: #a89488 !important;
    font-size: 20px;
    transition: color 0.2s;
}
.woocommerce a.remove:hover {
    color: var(--cb-rose) !important;
    background: transparent !important;
}

/* Coupon & Actions Bar */
.woocommerce table.shop_table td.actions {
    background: #fdfaf7;
    padding: 20px !important;
}

.woocommerce table.shop_table .coupon input.input-text {
    border-radius: 999px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 10px 20px !important;
    background: #ffffff !important;
    font-size: 14px;
}

.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"],
.woocommerce .coupon button.button,
.woocommerce-cart td.actions .button {
    border-radius: 999px !important;
    background: #fbf0ee !important;
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
    border: 1px solid #f0d5d7 !important;
    padding: 12px 26px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

.woocommerce button[name="apply_coupon"]:hover,
.woocommerce button[name="update_cart"]:hover,
.woocommerce .coupon button.button:hover,
.woocommerce-cart td.actions .button:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
    box-shadow: 0 4px 12px rgba(184, 112, 119, 0.25) !important;
}

/* Cart Totals Box */
.cart-collaterals .cart_totals {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
}

.cart-collaterals .cart_totals h2 {
    font-family: var(--cb-font-serif) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
    padding-bottom: 14px !important;
}

.cart-collaterals .cart_totals table.shop_table {
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 24px !important;
}

.cart-collaterals .cart_totals table.shop_table th,
.cart-collaterals .cart_totals table.shop_table td {
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--cb-border) !important;
    background: transparent !important;
}

.cart-collaterals .cart_totals .order-total td {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
}

.wc-proceed-to-checkout a.checkout-button,
.woocommerce a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: var(--cb-rose) !important;
    background-color: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    display: block !important;
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.35) !important;
    transition: all 0.25s ease !important;
    border: none !important;
    margin-top: 20px !important;
    cursor: pointer !important;
}

.wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--cb-rose-hover) !important;
    background-color: var(--cb-rose-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(184, 112, 119, 0.45) !important;
    color: #ffffff !important;
}

/* =============================================================
   CHECKOUT PAGE - 2-COLUMN LUXURY CARD LAYOUT
   ============================================================= */

/* Coupon Toggle Banner */
.woocommerce-form-coupon-toggle {
    margin-bottom: 24px !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-left: 4px solid var(--cb-rose) !important;
    border-radius: 14px !important;
    padding: 16px 24px !important;
    color: var(--cb-text-dark) !important;
    font-size: 14px !important;
    box-shadow: 0 2px 10px rgba(56, 43, 36, 0.03) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    transition: color 0.2s;
}

.woocommerce-form-coupon-toggle .woocommerce-info a:hover {
    color: var(--cb-rose-hover) !important;
}

form.checkout_coupon {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-bottom: 28px !important;
    box-shadow: 0 4px 20px rgba(56, 43, 36, 0.03) !important;
}

form.checkout_coupon input.input-text {
    border-radius: 999px !important;
    border: 1.5px solid var(--cb-border) !important;
    padding: 12px 22px !important;
    background: #ffffff !important;
    font-size: 14px !important;
}

form.checkout_coupon button.button {
    border-radius: 999px !important;
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

form.checkout_coupon button.button:hover {
    background: var(--cb-rose-hover) !important;
}

/* 2-Column Grid for Checkout Form */
.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 36px !important;
    align-items: start !important;
}

.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout .checkout-order-review {
    grid-column: 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
}

.woocommerce-checkout h3 {
    font-family: var(--cb-font-serif) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: var(--cb-text-dark) !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
    padding-bottom: 12px !important;
}

.woocommerce-checkout h3#order_review_heading {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 14px !important;
}

.woocommerce-checkout #order_review {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* WoodMart Table Wrapper Reset */
.woocommerce-checkout #order_review .wd-table-wrapper {
    overflow: visible !important;
    overflow-x: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Order Review Table - Perfect Column Proportions & Clean Spacing */
.woocommerce-checkout table.woocommerce-checkout-review-order-table,
.woocommerce table.woocommerce-checkout-review-order-table.shop_table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    margin: 0 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
    border: none !important;
    border-bottom: 1px solid #ebdcd0 !important;
    background: transparent !important;
    padding: 14px 6px !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-name,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-name {
    width: 65% !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: break-word !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-subtotal,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td {
    width: 35% !important;
    text-align: right !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
    white-space: nowrap !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total th {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    text-transform: uppercase !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td {
    font-size: 20px !important;
    font-weight: 800 !important;
}

/* Payment Box */
.woocommerce-checkout #payment {
    background: #fdfaf7 !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 14px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--cb-border) !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
    list-style: none !important;
    padding-left: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 12px !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    cursor: pointer !important;
    display: inline !important;
    margin-left: 8px !important;
    font-size: 14px !important;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    accent-color: var(--cb-rose) !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: #ffffff !important;
    border: 1px solid #f0e6dc !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    color: var(--cb-text-body) !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
    box-shadow: 0 2px 8px rgba(56, 43, 36, 0.02) !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #ffffff !important;
}

.woocommerce-checkout #payment .place-order {
    padding: 0 !important;
    margin: 16px 0 0 !important;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
    font-size: 12px !important;
    color: var(--cb-text-muted) !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text a {
    color: var(--cb-rose) !important;
    text-decoration: underline !important;
}

/* Place Order Button - Signature Dusty Rose Pill */
body.woocommerce-checkout #place_order,
body #place_order,
.woocommerce-checkout button#place_order,
.woocommerce button#place_order,
.woocommerce #payment #place_order {
    background: var(--cb-rose) !important;
    background-color: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.35) !important;
    border: none !important;
    transition: all 0.25s ease !important;
    width: 100% !important;
    display: block !important;
    cursor: pointer !important;
    text-align: center !important;
}

body.woocommerce-checkout #place_order:hover,
body #place_order:hover,
.woocommerce-checkout button#place_order:hover,
.woocommerce button#place_order:hover,
.woocommerce #payment #place_order:hover {
    background: var(--cb-rose-hover) !important;
    background-color: var(--cb-rose-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 26px rgba(184, 112, 119, 0.45) !important;
    color: #ffffff !important;
}

/* Responsive Grid for Tablets and Mobile */
@media (max-width: 991px) {
    .woocommerce-checkout form.checkout {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout .checkout-order-review,
    .woocommerce-checkout #order_review {
        width: 100% !important;
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .woocommerce-checkout table.woocommerce-checkout-review-order-table th,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table td {
        padding: 12px 4px !important;
    }

    .woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-name,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-name {
        width: 60% !important;
        font-size: 13.5px !important;
    }

    .woocommerce-checkout table.woocommerce-checkout-review-order-table th.product-total,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table td.product-total,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
    .woocommerce-checkout table.woocommerce-checkout-review-order-table tr.order-total td {
        width: 40% !important;
        font-size: 14.5px !important;
    }

    .woocommerce-checkout p.form-row-first,
    .woocommerce-checkout p.form-row-last {
        width: 100% !important;
    }
}

/* =============================================================
   MOBILE CART FIX: PREVENT THUMBNAIL AND REMOVE "X" FROM OVERLAPPING TITLE
   ============================================================= */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table.cart,
    .woocommerce-cart table.shop_table_responsive {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        display: block !important;
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table.cart tbody,
    .woocommerce-cart table.shop_table_responsive tbody {
        display: block !important;
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item,
    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        position: relative !important;
        display: block !important;
        padding: 18px 16px 14px 16px !important;
        margin-bottom: 18px !important;
        border: 1px solid var(--cb-border) !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 4px 18px rgba(56, 43, 36, 0.04) !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Product Thumbnail: strictly top-left inside card */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-thumbnail,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail {
        position: absolute !important;
        top: 18px !important;
        left: 16px !important;
        width: 80px !important;
        height: 80px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        display: block !important;
        z-index: 5 !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-thumbnail a,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail a {
        display: block !important;
        width: 80px !important;
        height: 80px !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-thumbnail img,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail img {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        max-width: 80px !important;
        border-radius: 14px !important;
        object-fit: cover !important;
        border: 1px solid var(--cb-border) !important;
        display: block !important;
    }

    /* Remove "X" button: strictly top-right inside card */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-remove,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-remove a.remove,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove a.remove {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: #fcf1f1 !important;
        color: var(--cb-rose) !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-remove a.remove:hover,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove a.remove:hover {
        background: var(--cb-rose) !important;
        color: #ffffff !important;
    }

    /* Product Name: Top row right beside thumbnail, leaves 96px for thumbnail and 40px for remove X */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-name,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name {
        display: block !important;
        margin-left: 96px !important; /* CRITICAL: 80px image + 16px space so text NEVER gets covered */
        padding-left: 0 !important;
        padding-right: 40px !important; /* clears remove X button */
        padding-top: 2px !important;
        padding-bottom: 14px !important;
        min-height: 82px !important; /* ensures row is at least as tall as thumbnail */
        border: none !important;
        border-bottom: 1px dashed rgba(226, 214, 203, 0.7) !important;
        box-sizing: border-box !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-name a,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name a {
        font-family: var(--cb-font-serif) !important;
        font-size: 17.5px !important;
        font-weight: 700 !important;
        color: var(--cb-text-dark) !important;
        line-height: 1.35 !important;
        display: block !important;
        word-break: break-word !important;
        text-decoration: none !important;
    }

    /* Hide pseudo ::before on thumbnail, name, remove */
    .woocommerce-cart table.shop_table.cart tr.cart_item td:is(.product-name, .product-thumbnail, .product-remove)::before,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td:is(.product-name, .product-thumbnail, .product-remove)::before {
        content: none !important;
        display: none !important;
    }

    /* Price, Quantity, Subtotal rows span full width under thumbnail + title */
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-price,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price,
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-quantity,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-quantity,
    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-subtotal,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        margin-left: 0 !important;
        padding: 12px 0 !important;
        border: none !important;
        border-bottom: 1px dashed rgba(226, 214, 203, 0.7) !important;
        box-sizing: border-box !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-subtotal,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal {
        border-bottom: none !important;
        padding-bottom: 4px !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td:is(.product-price, .product-quantity, .product-subtotal)::before,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td:is(.product-price, .product-quantity, .product-subtotal)::before {
        content: attr(data-title) !important;
        font-family: var(--cb-font-serif) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: var(--cb-rose) !important;
        margin-right: auto !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-price .amount,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price .amount {
        font-family: var(--cb-font-sans) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: var(--cb-text-body) !important;
    }

    .woocommerce-cart table.shop_table.cart tr.cart_item td.product-subtotal .amount,
    .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal .amount {
        font-family: var(--cb-font-sans) !important;
        font-size: 15.5px !important;
        font-weight: 700 !important;
        color: var(--cb-rose) !important;
    }
}

/* WooCommerce Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(56, 43, 36, 0.04) !important;
    padding: 16px 20px !important;
    margin-bottom: 24px !important;
    font-size: 14px !important;
}

.woocommerce-message {
    border-left: 4px solid #70b885 !important;
}

.woocommerce-info {
    border-left: 4px solid var(--cb-rose) !important;
}

.woocommerce-error {
    border-left: 4px solid #d9534f !important;
    list-style: none !important;
}

/* =============================================================
   SINGLE PRODUCT PAGE - LUXURY BAKERY STYLING
   ============================================================= */

body.single-product {
    background-color: var(--cb-cream-bg) !important;
}

.single-product .main-page-wrapper,
.single-product .site-content {
    background-color: var(--cb-cream-bg) !important;
    padding-top: 10px !important;
    padding-bottom: 60px !important;
}

.single-product .product.type-product {
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 4px 25px rgba(56, 43, 36, 0.04) !important;
    box-sizing: border-box !important;
}

/* Breadcrumbs */
.single-product .woocommerce-breadcrumb {
    font-size: 13px !important;
    color: var(--cb-text-muted) !important;
    margin-bottom: 24px !important;
    font-family: var(--cb-font-sans) !important;
}

.single-product .woocommerce-breadcrumb a {
    color: var(--cb-text-body) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.single-product .woocommerce-breadcrumb a:hover {
    color: var(--cb-rose) !important;
}

/* Product Gallery */
.single-product .woocommerce-product-gallery {
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid var(--cb-border) !important;
    background: #fdfaf7 !important;
    box-shadow: 0 4px 20px rgba(56, 43, 36, 0.03) !important;
}

.single-product .woocommerce-product-gallery img {
    border-radius: 18px !important;
    object-fit: cover !important;
}

.single-product .woocommerce-product-gallery .woocommerce-placeholder {
    background: #fcf8f5 !important;
    padding: 60px 40px !important;
    border-radius: 18px !important;
}

/* Product Summary / Info */
.single-product h1.product_title {
    font-family: var(--cb-font-serif) !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

.single-product .price,
.single-product p.price,
.single-product .price span.woocommerce-Price-amount {
    font-family: var(--cb-font-sans) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
}

.single-product .woocommerce-product-details__short-description {
    font-family: var(--cb-font-sans) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--cb-text-body) !important;
    margin: 16px 0 24px !important;
}

/* Quantity and Add to Cart Form */
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 28px 0 !important;
    flex-wrap: wrap !important;
}

.single-product form.cart .quantity {
    border: 1.5px solid var(--cb-border) !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 48px !important;
}

.single-product form.cart .quantity input.qty {
    font-family: var(--cb-font-sans) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    border: none !important;
    background: transparent !important;
    width: 44px !important;
    text-align: center !important;
    box-shadow: none !important;
}

.single-product form.cart .quantity input.plus,
.single-product form.cart .quantity input.minus,
.single-product form.cart .quantity .plus,
.single-product form.cart .quantity .minus {
    background: #fbf0ee !important;
    color: var(--cb-rose) !important;
    border: none !important;
    width: 36px !important;
    height: 48px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.single-product form.cart .quantity input.plus:hover,
.single-product form.cart .quantity input.minus:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
}

/* Single Add to Cart Button - Signature Dusty Rose Pill */
.single-product button.single_add_to_cart_button,
.single-product button[name="add-to-cart"],
.single-product .single_add_to_cart_button.button,
body .single-product button.button.alt {
    background: var(--cb-rose) !important;
    background-color: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 14px 40px !important;
    height: 48px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(184, 112, 119, 0.35) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.single-product button.single_add_to_cart_button:hover,
.single-product button[name="add-to-cart"]:hover,
.single-product .single_add_to_cart_button.button:hover,
body .single-product button.button.alt:hover {
    background: var(--cb-rose-hover) !important;
    background-color: var(--cb-rose-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(184, 112, 119, 0.45) !important;
    color: #ffffff !important;
}

/* Product Meta (Categories, Share, etc.) */
.single-product .product_meta {
    border-top: 1px solid var(--cb-border) !important;
    padding-top: 20px !important;
    margin-top: 24px !important;
    font-size: 13px !important;
    color: var(--cb-text-muted) !important;
}

.single-product .product_meta span.posted_in,
.single-product .product_meta span.tagged_as {
    display: block !important;
    margin-bottom: 6px !important;
}

.single-product .product_meta a {
    color: var(--cb-rose) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.single-product .product_meta a:hover {
    color: var(--cb-rose-hover) !important;
}

/* Tabs */
.single-product .woocommerce-tabs {
    margin-top: 40px !important;
    border-top: 1px solid var(--cb-border) !important;
    padding-top: 30px !important;
}

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

.single-product .woocommerce-tabs ul.tabs li {
    border-radius: 12px 12px 0 0 !important;
    border: 1px solid var(--cb-border) !important;
    border-bottom: none !important;
    background: #fdfaf7 !important;
    padding: 10px 24px !important;
}

.single-product .woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    color: var(--cb-text-dark) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--cb-rose) !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 20px 0;
}



/* =============================================================
   MY ACCOUNT, AUTHENTICATION & WISHLIST LUXURY STYLING
   ============================================================= */

/* Page container breathing room */
.woocommerce-account .cb-page-container,
.woocommerce-wishlist .cb-page-container {
    padding-top: 36px !important;
}

/* My Account Header */
.woocommerce-account h2,
.woocommerce-account h1 {
    font-family: var(--cb-font-serif) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 20px 0 !important;
}

/* 1. LOGIN & REGISTRATION FORMS (PAGE & POPUP) */
.woocommerce form.login,
.woocommerce form.register,
.wd-login-form,
.login-form-side {
    background: #ffffff !important;
    border: 1px solid var(--cb-border-card) !important;
    border-radius: 24px !important;
    padding: 36px 32px !important;
    box-shadow: 0 6px 24px rgba(90, 74, 66, 0.05) !important;
    max-width: 480px !important;
    margin: 20px auto !important;
    box-sizing: border-box !important;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row,
.wd-login-form .form-row {
    margin-bottom: 16px !important;
    padding: 0 !important;
}

.woocommerce form.login label,
.woocommerce form.register label,
.wd-login-form label {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.woocommerce form.login input.input-text,
.woocommerce form.register input.input-text,
.wd-login-form input.input-text,
.woocommerce-Input {
    width: 100% !important;
    padding: 13px 18px !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 12px !important;
    font-family: var(--cb-font-sans) !important;
    font-size: 14px !important;
    color: var(--cb-text-dark) !important;
    background: #fdfbf9 !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.woocommerce form.login input.input-text:focus,
.woocommerce form.register input.input-text:focus,
.wd-login-form input.input-text:focus,
.woocommerce-Input:focus {
    border-color: var(--cb-rose) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(184, 112, 119, 0.15) !important;
    outline: none !important;
}

/* Submit Buttons: Dusty Rose replaces Hot Pink */
.woocommerce form.login .button,
.woocommerce form.register .button,
.woocommerce-form-login__submit,
.wd-login-form input[type="submit"],
.wd-login-form button[type="submit"],
.login-form-side .button,
.woocommerce-Button.button {
    background: var(--cb-rose) !important;
    border: 1px solid var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 13px 32px !important;
    font-family: var(--cb-font-sans) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    width: 100% !important;
    text-align: center !important;
    text-transform: uppercase !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.25) !important;
    display: block !important;
    margin-top: 14px !important;
}

.woocommerce form.login .button:hover,
.woocommerce form.register .button:hover,
.woocommerce-form-login__submit:hover,
.wd-login-form input[type="submit"]:hover,
.wd-login-form button[type="submit"]:hover,
.login-form-side .button:hover,
.woocommerce-Button.button:hover {
    background: var(--cb-rose-hover) !important;
    border-color: var(--cb-rose-hover) !important;
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.4) !important;
    transform: translateY(-1px) !important;
}

.woocommerce-form-login .lost_password a,
.woocommerce-form-login .woocommerce-LostPassword a,
.login-form-side a {
    color: var(--cb-rose) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-form-login .lost_password a:hover,
.login-form-side a:hover {
    text-decoration: underline !important;
}

/* "No account yet? CREATE AN ACCOUNT" banner */
.login-form-side .create-account-link,
.wd-login-form .create-account-link {
    text-align: center !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px dashed var(--cb-border) !important;
}

.create-account-link .btn,
.create-account-link a {
    color: var(--cb-rose) !important;
    border-color: var(--cb-rose) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* 2. MY ACCOUNT NAVIGATION & DASHBOARD */
.woocommerce-MyAccount-navigation {
    margin-bottom: 24px !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
}

.woocommerce-MyAccount-navigation ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.woocommerce-MyAccount-navigation ul li::before {
    content: none !important;
    display: none !important;
}

.woocommerce-MyAccount-navigation ul li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 18px !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    border: 1px solid rgba(226, 214, 203, 0.9) !important;
    color: #4a3728 !important;
    font-family: var(--cb-font-sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(90, 74, 66, 0.04) !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    border-color: var(--cb-rose) !important;
    color: var(--cb-rose) !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.active a {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.35) !important;
}

/* My Account Content Area */
.woocommerce-MyAccount-content {
    background: #ffffff !important;
    border: 1px solid var(--cb-border-card) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    box-shadow: 0 4px 20px rgba(90, 74, 66, 0.04) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--cb-text-dark) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.woocommerce-MyAccount-content p strong {
    color: var(--cb-rose) !important;
}

.woocommerce-MyAccount-content a {
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: underline !important;
}

/* Orders / Addresses Tables inside My Account */
.woocommerce-MyAccount-content table.shop_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-top: 16px !important;
    background: #ffffff !important;
}

.woocommerce-MyAccount-content table.shop_table th {
    background: #fcf8f5 !important;
    color: var(--cb-text-dark) !important;
    font-family: var(--cb-font-serif) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid var(--cb-border) !important;
}

.woocommerce-MyAccount-content table.shop_table td {
    padding: 14px 18px !important;
    font-size: 14px !important;
    border-bottom: 1px solid var(--cb-border) !important;
    vertical-align: middle !important;
}

.woocommerce-MyAccount-content table.shop_table tr:last-child td {
    border-bottom: none !important;
}

.woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-MyAccount-content .button.view {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 8px 18px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    display: inline-block !important;
}

/* 3. WISHLIST PAGE & PRODUCT CARDS */
.wd-wishlist-content,
.wishlist-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px 0 !important;
}

.wd-wishlist-content .wd-empty-block,
.wishlist-empty {
    background: #ffffff !important;
    border: 1px solid var(--cb-border-card) !important;
    border-radius: 24px !important;
    padding: 48px 32px !important;
    text-align: center !important;
    box-shadow: 0 4px 18px rgba(90, 74, 66, 0.04) !important;
    max-width: 540px !important;
    margin: 30px auto !important;
}

.wd-wishlist-content .wd-empty-block-title {
    font-family: var(--cb-font-serif) !important;
    font-size: 24px !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 12px !important;
}

.wd-wishlist-content .wd-empty-block-btn {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 16px !important;
}

/* Wishlist Product Cards */
.wd-wishlist-content .wd-products,
.wd-wishlist-content .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px !important;
}

.wd-wishlist-content .wd-product,
.wd-wishlist-content .product-grid-item {
    background: #ffffff !important;
    border: 1px solid var(--cb-border-card) !important;
    border-radius: 20px !important;
    padding: 14px !important;
    box-shadow: 0 4px 16px rgba(90, 74, 66, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    overflow: hidden !important;
}

.wd-wishlist-content .wd-product-thumb,
.wd-wishlist-content .product-element-top {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #fbf5ef !important;
    margin-bottom: 12px !important;
}

.wd-wishlist-content .wd-product-img-link img,
.wd-wishlist-content .product-image-link img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    display: block !important;
}

/* Wishlist Info Elements (Title, Category, Price): Positioned BELOW image, NOT on top */
.wd-wishlist-content .top-information,
.wd-wishlist-content .bottom-information {
    position: static !important;
    display: block !important;
    transform: none !important;
    inset: auto !important;
    padding: 0 !important;
    margin: 0 0 6px 0 !important;
    width: 100% !important;
    text-align: left !important;
    background: transparent !important;
}

.wd-wishlist-content .wd-entities-title,
.wd-wishlist-content .product-title {
    font-family: var(--cb-font-serif) !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 4px 0 !important;
    display: block !important;
    text-shadow: none !important;
}

.wd-wishlist-content .wd-entities-title a {
    color: var(--cb-text-dark) !important;
    text-decoration: none !important;
}

.wd-wishlist-content .wd-product-cats {
    font-size: 11px !important;
    color: var(--cb-text-muted) !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.wd-wishlist-content .price,
.wd-wishlist-content .price .amount {
    font-family: var(--cb-font-sans) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.wd-wishlist-content .wd-buttons,
.wd-wishlist-content .wd-add-btn {
    position: static !important;
    display: block !important;
    margin-top: auto !important;
    width: 100% !important;
}

.wd-wishlist-content .add_to_cart_button,
.wd-wishlist-content .button.product_type_simple {
    display: block !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border-radius: 9999px !important;
    background: #fdf5f3 !important;
    color: var(--cb-rose) !important;
    border: 1px solid rgba(184, 112, 119, 0.25) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.wd-wishlist-content .add_to_cart_button:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
}

/* Mobile Adjustments for Account & Wishlist */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation ul {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 8px !important;
    }
    .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
        display: none !important;
    }
    .woocommerce-MyAccount-content {
        padding: 20px 16px !important;
        border-radius: 18px !important;
    }
    .woocommerce form.login,
    .woocommerce form.register {
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }
    .wd-wishlist-content .wd-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .wd-wishlist-content .wd-product {
        padding: 10px !important;
        border-radius: 16px !important;
    }
}


/* ==========================================================================
   SECTION: GALLERY PAGE (/gallery/) - MASTER ATELIER PORTFOLIO
   ========================================================================== */
.cb-gallery-page {
    max-width: 1240px !important;
    margin: 20px auto 80px !important;
    padding: 0 20px !important;
}

.cb-gallery-header-wrap {
    text-align: center !important;
    max-width: 780px !important;
    margin: 0 auto 40px !important;
}

.cb-gallery-title {
    font-family: var(--cb-font-serif) !important;
    font-size: clamp(32px, 4.5vw, 44px) !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 12px 0 14px !important;
    line-height: 1.2 !important;
}

.cb-gallery-subtitle {
    font-size: 16px !important;
    color: #6d6260 !important;
    line-height: 1.65 !important;
    margin-bottom: 28px !important;
}

.cb-gallery-filters {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
    margin-bottom: 36px !important;
}

.cb-gallery-filter-btn {
    padding: 10px 22px !important;
    border-radius: 9999px !important;
    border: 1.5px solid var(--cb-border) !important;
    background: #ffffff !important;
    color: var(--cb-text-dark) !important;
    font-family: var(--cb-font-sans) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 6px rgba(70, 45, 40, 0.03) !important;
}

.cb-gallery-filter-btn:hover,
.cb-gallery-filter-btn.active {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.35) !important;
}

.cb-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
    gap: 28px !important;
    margin-bottom: 60px !important;
}

@media (max-width: 768px) {
    .cb-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.cb-gallery-card {
    background: #ffffff !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    border: 1px solid var(--cb-border) !important;
    box-shadow: 0 6px 22px rgba(70, 45, 40, 0.05) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, opacity 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.cb-gallery-card.cb-hidden {
    display: none !important;
}

.cb-gallery-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 36px rgba(184, 112, 119, 0.16) !important;
    border-color: rgba(184, 112, 119, 0.4) !important;
}

.cb-gallery-media {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    overflow: hidden !important;
    background: #fbf5ef !important;
}

.cb-gallery-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cb-gallery-card:hover .cb-gallery-media img {
    transform: scale(1.06) !important;
}

.cb-gallery-overlay {
    display: none !important;
}

.cb-gallery-badge {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(8px) !important;
    color: var(--cb-rose) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 5px 14px !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(184, 112, 119, 0.25) !important;
    box-shadow: 0 3px 10px rgba(70, 45, 40, 0.08) !important;
    z-index: 2 !important;
}

.cb-gallery-card-body {
    padding: 22px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    background: #ffffff !important;
}

.cb-gallery-item-title {
    font-family: var(--cb-font-serif) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}

.cb-gallery-item-desc {
    font-size: 13.5px !important;
    color: #6d6260 !important;
    line-height: 1.55 !important;
    margin: 0 0 16px 0 !important;
    flex: 1 !important;
}

.cb-gallery-card-footer {
    margin-top: auto !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(226, 214, 203, 0.6) !important;
}

.cb-gallery-inquire-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border-radius: 9999px !important;
    background: #fdf5f3 !important;
    color: var(--cb-rose) !important;
    font-family: var(--cb-font-sans) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(184, 112, 119, 0.25) !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.25s ease !important;
}

.cb-gallery-inquire-link:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-color: var(--cb-rose) !important;
    box-shadow: 0 4px 14px rgba(184, 112, 119, 0.35) !important;
}

.cb-gallery-cta-card {
    background: linear-gradient(135deg, #b87077 0%, #9e5b62 100%) !important;
    border-radius: 24px !important;
    padding: 44px 38px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    box-shadow: 0 16px 40px rgba(184, 112, 119, 0.25) !important;
}

.cb-gallery-cta-text {
    flex: 1 1 480px !important;
    max-width: 580px !important;
}

.cb-gallery-cta-text .cb-about-tag {
    display: inline-flex !important;
    align-items: center !important;
    padding: 5px 14px !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    margin-bottom: 12px !important;
    width: fit-content !important;
}

.cb-gallery-cta-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    flex-shrink: 0 !important;
    align-items: center !important;
}

.cb-gallery-cta-text h2 {
    font-family: var(--cb-font-serif) !important;
    font-size: 28px !important;
    color: #ffffff !important;
    margin: 10px 0 !important;
}

.cb-gallery-cta-text p {
    font-size: 15.5px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.cb-gallery-cta-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
}

@media (max-width: 768px) {
    .cb-gallery-page {
        padding: 10px 10px 40px !important;
    }

    .cb-gallery-cta-card {
        padding: 34px 18px !important;
        border-radius: 20px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        gap: 20px !important;
        box-sizing: border-box !important;
        margin-top: 24px !important;
        width: 100% !important;
    }

    .cb-gallery-cta-text {
        flex: none !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .cb-gallery-cta-text .cb-about-tag {
        margin: 0 auto 12px auto !important;
    }

    .cb-gallery-cta-text h2 {
        font-size: clamp(21px, 5.5vw, 25px) !important;
        line-height: 1.3 !important;
        margin: 8px 0 10px !important;
        text-align: center !important;
    }

    .cb-gallery-cta-text p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.92) !important;
    }

    .cb-gallery-cta-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 12px !important;
        align-items: stretch !important;
        box-sizing: border-box !important;
        flex: none !important;
    }

    .cb-gallery-cta-actions a,
    .cb-gallery-cta-actions .cb-btn-white,
    .cb-gallery-cta-actions .cb-btn-outline {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
}


/* ==========================================================================
   SECTION: CUSTOM ORDERS PAGE (/custom-orders/) - MASTER BESPOKE FORM & ATELIER
   ========================================================================== */
.cb-custom-orders-page {
    max-width: 1240px !important;
    margin: 20px auto 80px !important;
    padding: 0 20px !important;
}

.cb-custom-header-wrap {
    text-align: center !important;
    max-width: 820px !important;
    margin: 0 auto 40px !important;
}

.cb-custom-title {
    font-family: var(--cb-font-serif) !important;
    font-size: clamp(32px, 4.5vw, 44px) !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 12px 0 14px !important;
    line-height: 1.2 !important;
}

.cb-custom-subtitle {
    font-size: 16px !important;
    color: #6d6260 !important;
    line-height: 1.65 !important;
}

.cb-custom-orders-layout {
    display: grid !important;
    grid-template-columns: 1.25fr 0.75fr !important;
    gap: 36px !important;
    align-items: start !important;
}

@media (max-width: 991.98px) {
    .cb-custom-orders-layout {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}

.cb-custom-form-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 38px !important;
    box-shadow: 0 10px 32px rgba(70, 45, 40, 0.05) !important;
}

@media (max-width: 768px) {
    .cb-custom-form-card {
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }
}

.cb-custom-form-header {
    margin-bottom: 26px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid var(--cb-border) !important;
}

.cb-form-title {
    font-family: var(--cb-font-serif) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 8px !important;
}

.cb-form-sub {
    font-size: 14.5px !important;
    color: #7a6f6d !important;
    margin: 0 !important;
    line-height: 1.55 !important;
}

.cb-form-section-title {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: var(--cb-font-serif) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    padding-bottom: 10px !important;
    border-bottom: 1px dashed var(--cb-border) !important;
    margin-bottom: 20px !important;
}

.cb-step-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

.cb-form-row-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    margin-bottom: 4px !important;
    width: 100% !important;
}

@media (max-width: 600px) {
    .cb-form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
}

.cb-input-group {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.cb-input-label {
    display: block !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 7px !important;
}

.cb-form-select,
.cb-form-input,
.cb-form-textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    border: 1.5px solid #e5d8cd !important;
    background: #faf7f5 !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    color: var(--cb-text-dark) !important;
    font-family: var(--cb-font-sans) !important;
    transition: all 0.25s ease !important;
    outline: none !important;
}

.cb-form-select:focus,
.cb-form-input:focus,
.cb-form-textarea:focus {
    background: #ffffff !important;
    border-color: var(--cb-rose) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(184, 112, 119, 0.14) !important;
}

.cb-form-textarea {
    min-height: 110px !important;
    resize: vertical !important;
}

/* Sidebar Cards */
.cb-custom-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    position: sticky !important;
    top: 90px !important;
}

.cb-custom-info-card,
.cb-contact-direct-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 28px !important;
    box-shadow: 0 6px 22px rgba(70, 45, 40, 0.04) !important;
}

.cb-custom-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--cb-font-serif);
    font-size: 20px;
    color: var(--cb-text-dark);
    margin: 0 0 16px 0;
    font-weight: 600;
}

.cb-contact-direct-card h4 {
    font-family: var(--cb-font-serif) !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 16px !important;
}

.cb-contact-direct-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
    color: var(--cb-text-dark) !important;
}

.cb-contact-direct-item svg {
    color: var(--cb-rose) !important;
    flex-shrink: 0 !important;
}

.cb-contact-direct-item a {
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.cb-contact-direct-item a:hover {
    color: var(--cb-text-dark) !important;
    text-decoration: underline !important;
}

.cb-form-section-title {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: var(--cb-font-serif) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--cb-border) !important;
    margin-bottom: 20px !important;
}

.cb-step-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.cb-input-label {
    display: block !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 6px !important;
}

.cb-form-select,
.cb-form-input,
.cb-form-textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    border: 1px solid var(--cb-border) !important;
    background: #faf7f5 !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    color: var(--cb-text-dark) !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
}

.cb-form-select:focus,
.cb-form-input:focus,
.cb-form-textarea:focus {
    background: #ffffff !important;
    border-color: var(--cb-rose) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(184, 112, 119, 0.15) !important;
}

.cb-custom-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.cb-custom-info-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 28px !important;
    box-shadow: 0 6px 20px rgba(70, 45, 40, 0.04) !important;
}

.cb-custom-card-title {
    font-family: var(--cb-font-serif) !important;
    font-size: 20px !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 20px !important;
}

.cb-process-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.cb-process-step {
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.cb-step-badge {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: #fbf0f1 !important;
    color: var(--cb-rose) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(184, 112, 119, 0.25) !important;
}

.cb-step-content h4 {
    margin: 0 0 4px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
}

.cb-step-content p {
    margin: 0 !important;
    font-size: 13.5px !important;
    color: #6e6462 !important;
    line-height: 1.5 !important;
}

.cb-portion-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.cb-portion-list li {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px dashed var(--cb-border) !important;
}

.cb-portion-list li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.cb-portion-list strong {
    font-size: 15px !important;
    color: var(--cb-text-dark) !important;
}

.cb-portion-list span {
    font-size: 13.5px !important;
    color: var(--cb-rose) !important;
    font-weight: 600 !important;
}

/* Modal Popup */
.cb-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(35, 20, 20, 0.65) !important;
    backdrop-filter: blur(5px) !important;
    display: none !important; /* Hidden by default */
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    padding: 20px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.cb-modal-backdrop.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cb-modal-box {
    background: #ffffff !important;
    border-radius: 26px !important;
    padding: 42px 34px 34px 34px !important;
    max-width: 480px !important;
    width: 100% !important;
    text-align: center !important;
    box-shadow: 0 24px 60px rgba(40, 20, 20, 0.25) !important;
    animation: cbPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    box-sizing: border-box !important;
    border: 1px solid var(--cb-border) !important;
}

.cb-modal-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #fdf5f3 !important;
    border: 1px solid rgba(184, 112, 119, 0.25) !important;
    color: var(--cb-rose) !important;
    font-size: 24px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}

.cb-modal-close:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    transform: rotate(90deg) !important;
}

@keyframes cbPopIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}


/* ==========================================================================
   SECTION: CART FIX - ELIMINATE "2 X SHOWING"
   ========================================================================== */
/* Suppress all pseudo-elements rendering secondary X */
.woocommerce-cart td.product-remove a.remove::before,
.woocommerce-cart td.product-remove a::before,
table.shop_table td.product-remove a::before,
table.shop_table td.product-remove a.remove::before,
td.product-remove a.remove::before,
td.product-remove a::before {
    content: none !important;
    display: none !important;
}

/* Ensure clean single circular badge for remove button on desktop and mobile */
.woocommerce-cart table.shop_table td.product-remove a.remove,
.woocommerce-cart table.shop_table_responsive td.product-remove a.remove,
table.cart td.product-remove a.remove,
td.product-remove a.remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #fdf2f2 !important;
    color: var(--cb-rose) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.woocommerce-cart table.shop_table td.product-remove a.remove:hover,
.woocommerce-cart table.shop_table_responsive td.product-remove a.remove:hover,
table.cart td.product-remove a.remove:hover,
td.product-remove a.remove:hover {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
}


/* ==========================================================================
   SECTION: SINGLE PRODUCT PAGE & RELATED PRODUCTS STYLING
   ========================================================================== */
.single-product-page {
    max-width: 1240px !important;
    margin: 20px auto 60px !important;
    padding: 0 20px !important;
}

.single-product-page .product-image-summary-wrap {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 36px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 8px 30px rgba(70, 45, 40, 0.05) !important;
}

.single-product-page .product-image-summary-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

@media (max-width: 768px) {
    .single-product-page .product-image-summary-inner {
        grid-template-columns: 1fr !important;
    }
}

.single-product-page .product-images {
    border-radius: 18px !important;
    overflow: hidden !important;
}

.single-product-page .product-images img {
    border-radius: 18px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

.single-product-page h1.product_title {
    font-family: var(--cb-font-serif) !important;
    font-size: clamp(28px, 4vw, 36px) !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 12px !important;
    line-height: 1.25 !important;
}

.single-product-page p.price {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--cb-rose) !important;
    margin-bottom: 18px !important;
}

.single-product-page form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 24px 0 !important;
}

.single-product-page form.cart .single_add_to_cart_button,
.single-product-page form.cart button[type="submit"] {
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 14px 36px !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(184, 112, 119, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.single-product-page form.cart .single_add_to_cart_button:hover {
    background: #9e5b62 !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   SECTION: CHECKOUT PAGE RESPONSIVENESS & STYLING
   ========================================================================== */
.woocommerce-checkout .cb-page-container {
    max-width: 1240px !important;
    margin: 20px auto 80px !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Coupon Banner at Top */
.woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin-bottom: 28px !important;
    width: 100% !important;
}

.woocommerce-checkout .woocommerce-info {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-left: 4px solid var(--cb-rose) !important;
    border-radius: 14px !important;
    padding: 16px 22px !important;
    font-size: 14.5px !important;
    color: var(--cb-text-dark) !important;
    box-shadow: 0 4px 14px rgba(70, 45, 40, 0.04) !important;
}

.woocommerce-checkout .woocommerce-info a.showcoupon {
    color: var(--cb-rose) !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
}

/* Coupon Form */
form.checkout_coupon {
    background: #ffffff !important;
    border: 1px solid var(--cb-border) !important;
    border-radius: 18px !important;
    padding: 24px !important;
    margin-bottom: 28px !important;
    box-shadow: 0 4px 14px rgba(70, 45, 40, 0.04) !important;
}

/* Main Checkout Form: 2-Column Responsive Grid */
@media (min-width: 992px) {
    form.woocommerce-checkout {
        display: grid !important;
        grid-template-columns: 1.18fr 0.82fr !important;
        gap: 36px !important;
        align-items: start !important;
        width: 100% !important;
    }
}

@media (max-width: 991.98px) {
    form.woocommerce-checkout {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        width: 100% !important;
    }
}

/* Left Column: Billing Details Card */
#customer_details,
form.woocommerce-checkout .customer-details {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 36px !important;
    box-shadow: 0 6px 24px rgba(70, 45, 40, 0.05) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    float: none !important;
}

#customer_details h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
    font-family: var(--cb-font-serif) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid var(--cb-border) !important;
}

/* Form inputs inside billing card */
.woocommerce-checkout p.form-row {
    margin-bottom: 18px !important;
}

.woocommerce-checkout p.form-row label {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark) !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    border: 1px solid var(--cb-border) !important;
    background: #faf7f5 !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    color: var(--cb-text-dark) !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    background: #ffffff !important;
    border-color: var(--cb-rose) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(184, 112, 119, 0.15) !important;
}

/* Right Column: Your Order Card */
.checkout-order-review,
#order_review {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--cb-border) !important;
    padding: 36px !important;
    box-shadow: 0 6px 24px rgba(70, 45, 40, 0.05) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    float: none !important;
    position: sticky !important;
    top: 90px !important;
}

#order_review_heading {
    font-family: var(--cb-font-serif) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--cb-text-dark) !important;
    margin: 0 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid var(--cb-border) !important;
}

/* FIX: Stop "PRODU CT" from wrapping! */
table.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 24px !important;
}

table.woocommerce-checkout-review-order-table th.product-name,
table.woocommerce-checkout-review-order-table td.product-name {
    width: 65% !important;
    min-width: 160px !important;
    white-space: normal !important;
    word-break: normal !important;
    text-align: left !important;
    font-size: 14.5px !important;
    padding: 14px 0 !important;
}

table.woocommerce-checkout-review-order-table th.product-total,
table.woocommerce-checkout-review-order-table td.product-total {
    width: 35% !important;
    white-space: nowrap !important;
    text-align: right !important;
    font-size: 15px !important;
    padding: 14px 0 !important;
}

table.woocommerce-checkout-review-order-table th {
    font-family: var(--cb-font-serif) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    color: var(--cb-text-dark) !important;
    border-bottom: 2px solid var(--cb-border) !important;
}

table.woocommerce-checkout-review-order-table tr.cart_item td {
    border-bottom: 1px solid #f2ebe6 !important;
}

table.woocommerce-checkout-review-order-table tr.cart-subtotal th,
table.woocommerce-checkout-review-order-table tr.cart-subtotal td {
    border-top: 1px solid var(--cb-border) !important;
    padding-top: 16px !important;
    font-size: 15px !important;
}

table.woocommerce-checkout-review-order-table tr.order-total th,
table.woocommerce-checkout-review-order-table tr.order-total td {
    border-top: 2px solid var(--cb-border) !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

table.woocommerce-checkout-review-order-table tr.order-total td strong .amount {
    color: var(--cb-rose) !important;
    font-size: 22px !important;
}

/* Payment Gateways */
#payment.woocommerce-checkout-payment {
    background: #faf6f4 !important;
    border-radius: 18px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}

#payment ul.payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px !important;
}

#payment ul.payment_methods li {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px dashed rgba(226, 214, 203, 0.7) !important;
}

#payment ul.payment_methods li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#payment ul.payment_methods label {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--cb-text-dark) !important;
    cursor: pointer !important;
}

#payment div.payment_box {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 13.5px !important;
    color: #6d6260 !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
    border: 1px solid var(--cb-border) !important;
}

/* Place Order Button */
#payment #place_order {
    width: 100% !important;
    background: var(--cb-rose) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(184, 112, 119, 0.3) !important;
    transition: all 0.25s ease !important;
}

#payment #place_order:hover {
    background: #9e5b62 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(184, 112, 119, 0.38) !important;
}


/* =============================================================
   MOBILE MENU & NAVBAR - ZERO OVERLAPPING & SEAMLESS TOUCH SCROLL
   ============================================================= */
@media (max-width: 768px) {
    /* Navbar is solid, flush at top 0 on mobile - ZERO GAP for products to bleed through */
    .cb-navbar-wrap {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1000 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(74, 55, 40, 0.05) !important;
    }

    .cb-navbar {
        height: 62px !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid var(--cb-border) !important;
        box-shadow: none !important;
        padding: 0 16px !important;
    }

    .cb-logo-img {
        height: 48px !important;
        width: 48px !important;
        min-width: 48px !important;
        border-width: 1.5px !important;
    }

    .cb-brand-name {
        font-size: 24px !important;
    }

    .cb-brand-sub {
        font-size: 8px !important;
        letter-spacing: 1.8px !important;
    }

    /* Category filter bar sits FLUSH under the 62px navbar with solid background */
    .cb-menu-sidebar {
        position: sticky !important;
        top: 62px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 990 !important;
        background: #faf5ef !important; /* Solid warm cream, perfectly opaque */
        border-bottom: 1px solid rgba(226, 214, 203, 0.9) !important;
        box-shadow: 0 4px 14px rgba(74, 55, 40, 0.06) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .cb-sidebar-title,
    .cb-sidebar-badge-card {
        display: none !important;
    }

    /* Horizontal Category Pill Bar with Scroll Controls */
    .cb-sidebar-nav-wrap {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        background: #faf5ef !important;
    }

    .cb-sidebar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 8px !important;
        padding: 10px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        scroll-behavior: smooth !important;
    }
    .cb-sidebar-nav::-webkit-scrollbar {
        display: none !important;
    }

    /* Touch Arrow Navigation Buttons */
    .cb-pills-scroll-btn { display: none !important; }

    .cb-sidebar-btn {
        flex-shrink: 0 !important;
        width: auto !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 15px !important;
        border-radius: 9999px !important;
        background: #ffffff !important;
        border: 1px solid rgba(226, 214, 203, 0.9) !important;
        color: #4a3728 !important;
        font-family: var(--cb-font-sans) !important;
        font-size: 12.5px !important;
        font-weight: 600 !important;
        box-shadow: 0 2px 6px rgba(74, 55, 40, 0.04) !important;
        cursor: pointer !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .cb-sidebar-btn.active {
        background: var(--cb-rose) !important;
        color: #ffffff !important;
        border-color: var(--cb-rose) !important;
        box-shadow: 0 4px 12px rgba(184, 112, 119, 0.35) !important;
    }

    .cb-sidebar-btn .cb-badge-count {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: var(--cb-text-muted) !important;
    }
    .cb-sidebar-btn.active .cb-badge-count {
        color: rgba(255, 255, 255, 0.92) !important;
    }

    /* Catalog Sections Scroll Margin: ensures category heading is 100% visible */
    .cb-catalog-section {
        scroll-margin-top: 130px !important;
        margin-bottom: 32px !important;
    }

    .cb-catalog-header {
        margin-bottom: 14px !important;
    }
    .cb-catalog-title {
        font-size: 18px !important;
    }
}

/* ==========================================================================
   SECTION: SINGLE PRODUCT PAGE - BULLETPROOF SIDE-BY-SIDE LAYOUT
   ========================================================================== */
.single-product .main-page-wrapper,
.single-product .site-content,
.single-product-page {
    background-color: var(--cb-cream-bg, #fdfbf7) !important;
    width: 100% !important;
}

.single-product .container,
.single-product-page .container {
    max-width: 1240px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Master 2-Column Luxury Card */
.single-product-page .product-image-summary-wrap,
.single-product .product-image-summary-wrap {
    background: #ffffff !important;
    border-radius: 28px !important;
    border: 1px solid var(--cb-border, #ede4db) !important;
    padding: 44px 40px !important;
    margin: 0 auto 40px auto !important;
    box-shadow: 0 8px 30px rgba(90, 74, 66, 0.05) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 1240px !important;
}

/* Master Flex Row: Force Side-by-Side */
.single-product-page .product-image-summary,
.single-product .product-image-summary {
    width: 100% !important;
}

.single-product-page .product-image-summary-inner,
.single-product .product-image-summary-inner,
.single-product .product-image-summary-inner.wd-grid-g,
.product-image-summary-inner.wd-grid-g {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 48px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Left Column: Product Gallery / Images (50%) */
.single-product-page .product-images,
.single-product .product-images,
.single-product .product-images.wd-grid-col,
.product-images.wd-grid-col {
    flex: 0 0 calc(50% - 24px) !important;
    width: calc(50% - 24px) !important;
    max-width: calc(50% - 24px) !important;
    min-width: 0 !important;
    float: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    position: sticky !important;
    top: 110px !important;
}

/* Right Column: Product Summary & Details (50%) */
.single-product-page .summary.entry-summary,
.single-product .summary.entry-summary,
.single-product .summary.entry-summary.wd-grid-col,
.summary.entry-summary.wd-grid-col {
    flex: 0 0 calc(50% - 24px) !important;
    width: calc(50% - 24px) !important;
    max-width: calc(50% - 24px) !important;
    min-width: 0 !important;
    float: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

/* Gallery and Image elements */
.single-product-page .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid var(--cb-border, #ede4db) !important;
    background: #fdfaf7 !important;
    box-shadow: 0 4px 18px rgba(90, 74, 66, 0.04) !important;
}

.single-product-page .woocommerce-product-gallery img,
.single-product .woocommerce-product-gallery img,
.single-product-page .wp-post-image,
.single-product .wp-post-image {
    border-radius: 18px !important;
    width: 100% !important;
    height: auto !important;
    max-height: 520px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Summary Details */
.single-product-page .summary-inner,
.single-product .summary-inner {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Breadcrumbs */
.single-product-page .single-breadcrumbs-wrapper,
.single-product .single-breadcrumbs-wrapper,
.single-product .woocommerce-breadcrumb {
    margin-bottom: 12px !important;
    font-size: 13px !important;
    color: var(--cb-text-muted, #8a7a72) !important;
}

.single-product-page .woocommerce-breadcrumb a,
.single-product .woocommerce-breadcrumb a {
    color: var(--cb-text-body, #5a4a42) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.single-product-page .woocommerce-breadcrumb a:hover,
.single-product .woocommerce-breadcrumb a:hover {
    color: var(--cb-rose, #b87077) !important;
}

/* Product Title */
.single-product-page h1.product_title,
.single-product h1.product_title {
    font-family: var(--cb-font-serif, "Playfair Display", Georgia, serif) !important;
    font-size: clamp(28px, 3.5vw, 36px) !important;
    font-weight: 600 !important;
    color: var(--cb-text-dark, #2d2420) !important;
    line-height: 1.25 !important;
    margin: 0 0 10px 0 !important;
}

/* Price */
.single-product-page .price,
.single-product-page p.price,
.single-product .price,
.single-product p.price,
.single-product .price span.woocommerce-Price-amount {
    font-family: var(--cb-font-sans, "Plus Jakarta Sans", sans-serif) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--cb-rose, #b87077) !important;
    margin: 0 0 16px 0 !important;
}

/* Short Description */
.single-product-page .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description {
    font-family: var(--cb-font-sans, "Plus Jakarta Sans", sans-serif) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: var(--cb-text-body, #5a4a42) !important;
    margin: 0 0 24px 0 !important;
}

/* Add to Cart Form */
.single-product-page form.cart,
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 20px 0 24px 0 !important;
    flex-wrap: wrap !important;
}

.single-product-page form.cart .quantity,
.single-product form.cart .quantity {
    display: inline-flex !important;
    align-items: center !important;
    height: 48px !important;
    border-radius: 9999px !important;
    border: 1.5px solid var(--cb-border, #ede4db) !important;
    background: #fdfaf7 !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
}

.single-product-page form.cart .quantity input.qty,
.single-product form.cart .quantity input.qty {
    width: 48px !important;
    height: 100% !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--cb-text-dark, #2d2420) !important;
}

.single-product-page form.cart .single_add_to_cart_button,
.single-product form.cart .single_add_to_cart_button,
.single-product-page form.cart button[type="submit"],
.single-product form.cart button[type="submit"] {
    background: var(--cb-rose, #b87077) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    height: 48px !important;
    padding: 0 36px !important;
    border-radius: 9999px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(184, 112, 119, 0.3) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: uppercase !important;
}

.single-product-page form.cart .single_add_to_cart_button:hover,
.single-product form.cart .single_add_to_cart_button:hover {
    background: #a35d64 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(184, 112, 119, 0.4) !important;
}

/* Product Meta (Categories, SKU, etc) & Social Share - Bulletproof Left Alignment */
.single-product-page .product_meta,
.single-product .product_meta,
.single-product .summary-inner .product_meta {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    float: none !important;
    clear: both !important;
    padding-top: 18px !important;
    border-top: 1px solid #ede4db !important;
    font-size: 13.5px !important;
    color: var(--cb-text-muted, #8a7a72) !important;
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    gap: 6px !important;
}

.single-product-page .product_meta span.posted_in,
.single-product .product_meta span.posted_in,
.single-product .product_meta > span,
.single-product .posted_in {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    float: none !important;
    margin: 0 !important;
    font-size: 13.5px !important;
    color: var(--cb-text-muted, #8a7a72) !important;
    width: auto !important;
    flex: 0 1 auto !important;
}

.single-product .product_meta .meta-label {
    font-weight: 600 !important;
    color: var(--cb-text-dark, #2d2420) !important;
    margin-right: 4px !important;
    display: inline-block !important;
}

.single-product-page .product_meta a,
.single-product .product_meta a,
.single-product .posted_in a {
    color: var(--cb-rose, #b87077) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.single-product-page .product_meta a:hover,
.single-product .product_meta a:hover,
.single-product .posted_in a:hover {
    color: #a35d64 !important;
    text-decoration: underline !important;
}

/* Social Share - Left Alignment */
.single-product .product-share,
.single-product .summary-inner .product-share,
.single-product .social-share {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    float: none !important;
    margin-top: 6px !important;
    margin-bottom: 16px !important;
    gap: 10px !important;
}

.single-product .product-share .share-title,
.single-product .product-share .wd-label {
    font-weight: 600 !important;
    font-size: 13.5px !important;
    color: var(--cb-text-dark, #2d2420) !important;
    margin-right: 2px !important;
}

/* Product Tabs */
.product-tabs-wrapper {
    max-width: 1240px !important;
    margin: 0 auto 60px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.product-tabs-wrapper .product-tabs-inner {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid var(--cb-border, #ede4db) !important;
    padding: 36px 40px !important;
    box-shadow: 0 4px 20px rgba(90, 74, 66, 0.04) !important;
}

/* Responsive: stack only on mobile (< 768px) */
@media (max-width: 768px) {
    .single-product-page .product-image-summary-wrap,
    .single-product .product-image-summary-wrap {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }
    .single-product-page .product-image-summary-inner,
    .single-product .product-image-summary-inner,
    .single-product .product-image-summary-inner.wd-grid-g,
    .product-image-summary-inner.wd-grid-g {
        flex-direction: column !important;
        gap: 28px !important;
    }
    .single-product-page .product-images,
    .single-product .product-images,
    .single-product .product-images.wd-grid-col,
    .product-images.wd-grid-col,
    .single-product-page .summary.entry-summary,
    .single-product .summary.entry-summary,
    .single-product .summary.entry-summary.wd-grid-col,
    .summary.entry-summary.wd-grid-col {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
    }
}

/* ==========================================================================
   SECTION: FOOTER STYLING
   ========================================================================== */

/* =========================================================
   CRITICAL MOBILE FORM & OVERFLOW DRIFT FIX
   Prevents horizontal scroll blowout, centers form cards symmetrically,
   and ensures 100% width fluid inputs and submit buttons.
   ========================================================= */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative !important;
}

/* Hide closed mobile drawer completely from layout calculation */
.cb-mobile-drawer:not(.open) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.cb-mobile-drawer.open {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
}

/* Constrain WP Admin Bar on Mobile */
#wpadminbar {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}
#wpadminbar * {
    max-width: 100vw !important;
}

/* Mobile Form Layouts & Inputs (< 768px) */
@media (max-width: 768px) {
    html body .cb-page-container,
    html body .cb-section-container,
    html body .cb-custom-orders-page,
    html body .cb-contact-wrapper,
    html body .cb-about-page-wrap {
        padding-left: 12px !important;
        padding-right: 12px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .cb-custom-orders-layout,
    .cb-contact-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        gap: 20px !important;
        box-sizing: border-box !important;
    }

    .cb-contact-form-card,
    .cb-custom-form-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
        margin: 0 auto 30px auto !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 20px rgba(70, 45, 40, 0.06) !important;
        overflow: hidden !important;
    }

    .cb-form-row-2 {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
    }

    .cb-input-group {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 16px !important;
    }

    .cb-input-group label {
        font-size: 13.5px !important;
        margin-bottom: 6px !important;
    }

    .cb-input-with-icon,
    .cb-form-input,
    .cb-form-select,
    .cb-form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .cb-input-with-icon input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .cb-form-textarea {
        min-height: 110px !important;
        resize: vertical !important;
    }

    .cb-contact-form-card button[type="submit"],
    .cb-custom-form-card button[type="submit"],
    .cb-contact-form-card .cb-btn-rose,
    .cb-custom-form-card .cb-btn-rose {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 15px 20px !important;
        font-size: 15px !important;
        letter-spacing: 0.05em !important;
        border-radius: 9999px !important;
        margin-top: 10px !important;
    }

    .cb-form-section-title {
        font-size: 17px !important;
        gap: 10px !important;
        margin-bottom: 16px !important;
    }

    .cb-form-section-num {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        font-size: 12px !important;
    }

    .cb-custom-hero-title,
    .cb-custom-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
        padding: 0 4px !important;
    }
    .cb-custom-subtitle,
    .cb-page-intro {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        padding: 0 4px !important;
    }
    .cb-form-title {
        font-size: 21px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    .cb-form-desc {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
}
