/* =============================================
   GBK PARTS THEME — CUSTOM CSS v2.1
   All sections are 100% wide.
   Inner content uses .gbk-container for max-width centering.
   ============================================= */

/* =============================================
   TOP BAR
   ============================================= */
/* Old top bar styles replaced by new .gbk-topbar__* styles below */

/* =============================================
   HEADER
   ============================================= */
.gbk-header {
    width: 100%;
    background: var(--gbk-white);
    border-bottom: 2px solid var(--gbk-green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gbk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}
.gbk-logo a { display: flex; align-items: center; }
.gbk-logo img { height: 64px; width: auto; }
.custom-logo { height: 64px; width: auto; }

/* Nav */
.gbk-nav { flex: 1; }
.gbk-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gbk-nav-list li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gbk-black);
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.gbk-nav-list li a:hover,
.gbk-nav-list li.current-menu-item > a {
    color: var(--gbk-green);
    background: rgba(118,170,36,0.08);
}

/* Header Actions */
.gbk-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.gbk-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gbk-black);
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.gbk-search-toggle:hover { color: var(--gbk-green); }
.gbk-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--gbk-border);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 280px;
    z-index: 999;
}
.gbk-search-dropdown[hidden] { display: none; }
.gbk-search-dropdown .search-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gbk-border);
    border-radius: 4px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.9rem;
}
.gbk-cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gbk-green);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.gbk-cart-link:hover { background: #5d8a1a; color: white; }

/* My Account link */
.gbk-account-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gbk-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}
.gbk-account-link:hover {
    border-color: var(--gbk-green);
    color: var(--gbk-green);
}
.gbk-cart-count {
    background: white;
    color: var(--gbk-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}
.gbk-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.gbk-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gbk-black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* =============================================
   HERO — FULL WIDTH
   ============================================= */
.gbk-hero {
    width: 100%;
    background: var(--gbk-black);
    color: white;
    min-height: 580px;
    overflow: hidden;
    position: relative;
}

/* Two-column layout: full-bleed, no container */
.gbk-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    align-items: stretch;
}

/* LEFT column — text */
.gbk-hero-left {
    padding: 100px 60px 80px max(40px, calc((100vw - 1280px) / 2 + 40px));
    max-width: 700px;
    z-index: 2;
    position: relative;
}
@media (max-width: 1280px) {
    .gbk-hero-left { padding: 80px 40px 60px 40px; }
}

/* RIGHT column — image with left-fade */
.gbk-hero-right {
    position: relative;
    height: 100%;
    min-height: 580px;
    overflow: hidden;
}
.gbk-hero-truck-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 30%, black 55%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 30%, black 55%);
}

.gbk-hero-content { max-width: 580px; }
.gbk-badge {
    display: inline-block;
    background: var(--gbk-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.gbk-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gbk-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-hero-eyebrow::before {
    display: none;
}
.gbk-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: white;
    line-height: 1.0;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-green { color: var(--gbk-green); }
.gbk-hero-desc {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.7;
}
.gbk-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.gbk-hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 32px;
}
.gbk-stat { display: flex; flex-direction: column; gap: 4px; }
.gbk-stat-num { font-size: 1.8rem; font-weight: 900; }
.gbk-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #888; }

/* =============================================
   TRUST BAR — FULL WIDTH
   ============================================= */
.gbk-trust-bar {
    width: 100%;
    background: var(--gbk-green);
    padding: 16px 0;
}
.gbk-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.gbk-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =============================================
   CATEGORIES — FULL WIDTH
   ============================================= */
.gbk-categories {
    width: 100%;
    background: var(--gbk-gray);
    padding: 80px 0;
}
.gbk-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.gbk-section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 8px;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-section-header p { color: #666; font-size: 1rem; }
.gbk-section-header--light h2 { color: white; }
.gbk-section-header--light p { color: rgba(255,255,255,0.7); }

.gbk-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gbk-cat-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--gbk-black);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.gbk-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--gbk-green);
    color: var(--gbk-black);
}
.gbk-cat-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #1a1a1a;
}
.gbk-cat-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gbk-cat-card:hover .gbk-cat-img-wrap img {
    transform: scale(1.05);
}
.gbk-cat-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}
.gbk-cat-no-img span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gbk-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gbk-cat-info { padding: 18px 16px; }
.gbk-cat-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 5px; }
.gbk-cat-info span { font-size: 0.9rem; color: #888; }

/* =============================================
   FEATURED PRODUCTS — FULL WIDTH
   ============================================= */
.gbk-featured-products {
    width: 100%;
    background: white;
    padding: 80px 0;
}
.gbk-section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Custom product grid */
.gbk-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gbk-product-card {
    background: white;
    border: 1px solid var(--gbk-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.gbk-product-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--gbk-green);
}
.gbk-product-img-wrap {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}
.gbk-product-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gbk-product-card:hover .gbk-product-img-wrap img {
    transform: scale(1.04);
}
.gbk-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.gbk-product-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.gbk-product-info h3 a {
    color: var(--gbk-black);
    text-decoration: none;
    transition: color 0.2s;
}
.gbk-product-info h3 a:hover { color: var(--gbk-green); }
.gbk-product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gbk-green);
}
.gbk-product-price del { color: #aaa; font-weight: 400; font-size: 0.85rem; margin-right: 4px; }
.gbk-btn-sm {
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
    margin-top: auto;
}
/* WooCommerce fallback overrides */
.gbk-featured-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
}
.gbk-featured-products ul.products li.product {
    background: white;
    border: 1px solid var(--gbk-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}
.gbk-featured-products ul.products li.product a.button,
.gbk-featured-products ul.products li.product button.button {
    background: var(--gbk-green) !important;
    color: white !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    border: none !important;
}
.gbk-featured-products .price { color: var(--gbk-green) !important; font-weight: 700 !important; }

/* =============================================
   WHY GBK — FULL WIDTH DARK
   ============================================= */
.gbk-why {
    width: 100%;
    background: var(--gbk-black);
    padding: 80px 0;
}
.gbk-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.gbk-why-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: border-color 0.2s;
}
.gbk-why-card:hover { border-color: var(--gbk-green); }
.gbk-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(118,170,36,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gbk-green);
}
.gbk-why-card h3 { color: var(--gbk-green); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.gbk-why-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }

/* =============================================
   BRANDS — FULL WIDTH
   ============================================= */
.gbk-brands {
    width: 100%;
    background: var(--gbk-gray);
    padding: 60px 0;
    text-align: center;
}
/* gbk-brands h2 styling is handled by .gbk-section-header h2 when wrapped */
.gbk-brands h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 32px; color: #666; text-transform: uppercase; letter-spacing: 0.1em; }
.gbk-brands .gbk-section-header { margin-bottom: 32px; }
.gbk-brands .gbk-section-header h2 { margin-bottom: 0; }
.gbk-brands-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.gbk-brands-list span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}
.gbk-brands-list span:hover { color: var(--gbk-green); }

/* =============================================
   CTA — FULL WIDTH GREEN
   ============================================= */
.gbk-cta {
    width: 100%;
    background: var(--gbk-green);
    padding: 80px 0;
    text-align: center;
}
.gbk-cta h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.gbk-cta p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.gbk-cta .gbk-btn-primary {
    background: var(--gbk-black);
    border-color: var(--gbk-black);
    color: white;
}
.gbk-cta .gbk-btn-primary:hover {
    background: #333;
    border-color: #333;
}

/* =============================================
   FOOTER — FULL WIDTH
   ============================================= */
.gbk-footer {
    width: 100%;
    background: var(--gbk-black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.gbk-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gbk-footer-logo { margin-bottom: 16px; }
.gbk-footer-logo img, .gbk-footer-logo .custom-logo { height: 60px; width: auto; }
.gbk-footer-col p { font-size: 0.9rem; line-height: 1.7; }
.gbk-footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.gbk-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gbk-footer-col ul li { margin-bottom: 8px; }
.gbk-footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.gbk-footer-col ul li a:hover { color: var(--gbk-green); }
.gbk-footer-contact li { font-size: 0.9rem; margin-bottom: 10px; }
.gbk-footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.gbk-footer-badges span { font-size: 0.8rem; color: var(--gbk-green); font-weight: 600; }
.gbk-footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   GENERAL PAGE CONTENT
   ============================================= */
.gbk-page-content {
    padding: 60px 40px;
    min-height: 400px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .gbk-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .gbk-why-grid { grid-template-columns: repeat(2, 1fr); }
    .gbk-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gbk-featured-products ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    :root { --container-pad: 0 20px; }
    /* old topbar responsive rule removed */
    .gbk-nav { display: none; }
    .gbk-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: white; border-top: 1px solid var(--gbk-border); padding: 16px; z-index: 999; }
    .gbk-nav.is-open .gbk-nav-list { flex-direction: column; align-items: flex-start; }
    .gbk-mobile-toggle { display: flex; }
    /* Hero: stack vertically on mobile */
    .gbk-hero-layout { grid-template-columns: 1fr; min-height: auto; align-items: stretch; }
    .gbk-hero-left { padding: 60px 20px 40px 20px; max-width: 100%; }
    .gbk-hero-right { min-height: 260px; }
    .gbk-hero-truck-img {
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }
    .gbk-hero-stats { gap: 24px; }
    .gbk-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .gbk-why-grid { grid-template-columns: 1fr; }
    .gbk-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gbk-trust-items { gap: 16px; }
    .gbk-brands-list { gap: 24px; }
    .gbk-featured-products ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
    .gbk-cat-grid { grid-template-columns: 1fr; }
    .gbk-hero-btns { flex-direction: column; }
    .gbk-hero-stats { flex-direction: column; gap: 16px; }
    .gbk-featured-products ul.products { grid-template-columns: 1fr !important; }
}

/* =============================================
   PAGE MAIN — ELEMENTOR COMPATIBLE
   ============================================= */
.gbk-page-main {
    width: 100%;
}
.gbk-page-main--fullwidth {
    padding: 0;
    margin: 0;
}
/* Elementor overrides */
.elementor-page .gbk-page-main,
.elementor-page .gbk-page-main--fullwidth {
    padding: 0 !important;
}

/* =============================================
   PAGE HERO (used by About, Contact, Wholesale)
   ============================================= */
.gbk-page-hero {
    width: 100%;
    background: var(--gbk-gray);
    padding: 72px 0 64px;
    border-bottom: 3px solid var(--gbk-green);
}
.gbk-page-hero--dark {
    background: var(--gbk-black);
}
.gbk-page-hero-content {
    max-width: 720px;
}
.gbk-page-breadcrumb {
    display: inline-block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gbk-page-breadcrumb a { color: var(--gbk-green); }
.gbk-page-breadcrumb--light,
.gbk-page-breadcrumb--light a { color: rgba(255,255,255,0.5); }
.gbk-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gbk-black);
    margin-bottom: 16px;
    line-height: 1.2;
}
.gbk-page-hero--dark h1 { color: #ffffff; }
.gbk-page-hero p {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    line-height: 1.7;
}
.gbk-page-hero--dark p { color: rgba(255,255,255,0.7); }
.gbk-green { color: var(--gbk-green); }

/* =============================================
   ABOUT US PAGE
   ============================================= */
.gbk-about-story {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}
.gbk-about-story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}
.gbk-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gbk-green);
    margin-bottom: 12px;
}
.gbk-about-story-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gbk-black);
    margin-bottom: 20px;
}
.gbk-about-story-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}
.gbk-about-highlight-box {
    background: var(--gbk-gray);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.gbk-about-highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.gbk-about-highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(118,170,36,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbk-green);
    flex-shrink: 0;
}
.gbk-about-highlight-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gbk-black);
    margin-bottom: 4px;
}
.gbk-about-highlight-item p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}
.gbk-about-values {
    width: 100%;
    background: var(--gbk-gray);
    padding: 80px 0;
}
.gbk-section-header { text-align: center; margin-bottom: 48px; }
.gbk-section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--gbk-black);
    margin-bottom: 8px;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-section-header p { color: #777; font-size: 1rem; }
.gbk-section-header--light h2 { color: #ffffff; }
.gbk-section-header--light p { color: rgba(255,255,255,0.6); }
.gbk-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gbk-value-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gbk-border);
    transition: box-shadow 0.2s, transform 0.2s;
}
.gbk-value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.gbk-value-card h3 { font-size: 1rem; font-weight: 700; color: var(--gbk-black); margin: 16px 0 8px; }
.gbk-value-card p { font-size: 0.875rem; color: #777; line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.gbk-contact-body {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}
.gbk-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.gbk-contact-info h2,
.gbk-contact-form-wrap h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gbk-black);
    margin-bottom: 12px;
}
.gbk-contact-intro { color: #777; font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.gbk-contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.gbk-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.gbk-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(118,170,36,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbk-green);
    flex-shrink: 0;
}
.gbk-contact-item strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #999; margin-bottom: 2px; }
.gbk-contact-item a { color: var(--gbk-black); font-size: 0.95rem; font-weight: 500; }
.gbk-contact-item a:hover { color: var(--gbk-green); }
.gbk-contact-faq h3 { font-size: 1rem; font-weight: 700; color: var(--gbk-black); margin-bottom: 16px; }
.gbk-faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gbk-border); border-radius: 8px; overflow: hidden; }
.gbk-faq-item { border-bottom: 1px solid var(--gbk-border); }
.gbk-faq-item:last-child { border-bottom: none; }
.gbk-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 16px;
    text-align: left;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gbk-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
}
.gbk-faq-q:hover { background: var(--gbk-gray); }
.gbk-faq-q[aria-expanded="true"] { color: var(--gbk-green); }
.gbk-faq-a { padding: 0 16px 14px; }
.gbk-faq-a p { font-size: 0.875rem; color: #666; line-height: 1.7; margin: 0; }
.gbk-faq-a a { color: var(--gbk-green); }

/* =============================================
   WHOLESALE PAGE
   ============================================= */
.gbk-wholesale-benefits {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}
.gbk-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gbk-benefit-card {
    background: var(--gbk-gray);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gbk-border);
    transition: box-shadow 0.2s;
}
.gbk-benefit-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.gbk-benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--gbk-black); margin: 16px 0 8px; }
.gbk-benefit-card p { font-size: 0.875rem; color: #777; line-height: 1.6; }
.gbk-wholesale-form-section {
    width: 100%;
    background: var(--gbk-gray);
    padding: 80px 0;
}
.gbk-wholesale-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.gbk-wholesale-form-intro h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gbk-black);
    margin-bottom: 16px;
}
.gbk-wholesale-form-intro p { color: #666; font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.gbk-wholesale-requirements { background: #fff; border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.gbk-wholesale-requirements h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #999; margin-bottom: 12px; }
.gbk-wholesale-requirements ul { list-style: none; padding: 0; margin: 0; }
.gbk-wholesale-requirements ul li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: #555; padding: 5px 0; }
.gbk-wholesale-requirements ul li svg { color: var(--gbk-green); flex-shrink: 0; }
.gbk-wholesale-contact-note { font-size: 0.875rem; color: #777; }
.gbk-wholesale-contact-note a { color: var(--gbk-green); font-weight: 600; }
.gbk-wholesale-form-wrap {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* =============================================
   SHARED FORM STYLES
   ============================================= */
.gbk-form { display: flex; flex-direction: column; gap: 0; }
.gbk-form-row { display: flex; gap: 16px; }
.gbk-form-row--2col > .gbk-form-group { flex: 1; }
.gbk-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.gbk-form-group label { font-size: 0.8rem; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.04em; }
.gbk-form-group .req { color: #e53e3e; }
.gbk-form-group input,
.gbk-form-group select,
.gbk-form-group textarea {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--gbk-black);
    background: #fafafa;
    border: 1.5px solid var(--gbk-border);
    border-radius: 6px;
    padding: 10px 14px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.gbk-form-group input:focus,
.gbk-form-group select:focus,
.gbk-form-group textarea:focus {
    outline: none;
    border-color: var(--gbk-green);
    box-shadow: 0 0 0 3px rgba(118,170,36,0.12);
    background: #fff;
}
.gbk-form-group textarea { resize: vertical; min-height: 120px; }
.gbk-btn-full { width: 100%; justify-content: center; }
.gbk-form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(118,170,36,0.1);
    border: 1px solid var(--gbk-green);
    color: #2d6a00;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =============================================
   SINGLE PRODUCT PAGE
   ============================================= */
.gbk-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #999;
    padding: 20px 0;
    flex-wrap: wrap;
}
.gbk-product-breadcrumb a { color: var(--gbk-green); }
.gbk-product-breadcrumb span { color: #ccc; }
/* WooCommerce single product overrides */
.single-product .woocommerce-breadcrumb { display: none; }
.single-product .related.products { display: none !important; }
.single-product .up-sells { display: none !important; }

/* Neutralize WooCommerce default float-based 2-col layout inside div.product
   Our gbk-sp-wrap grid handles the layout instead */
.single-product div.product {
    display: block !important;
    float: none !important;
    width: 100% !important;
}
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .entry-summary {
    float: none !important;
    width: 100% !important;
    clear: none !important;
}
.single-product .product_title {
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    color: var(--gbk-black) !important;
}
.single-product .price {
    color: var(--gbk-green) !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    letter-spacing: -0.01em !important;
}
.single-product .price del {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #aaa !important;
    margin-right: 6px !important;
}
.single-product .price ins {
    text-decoration: none !important;
}
/* Price + stock block on single product page (v3.9.35) */
/* Price on first line, stock on second line below */
.gbk-single-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.gbk-single-price-row .price {
    margin-bottom: 0 !important;
    line-height: 1 !important;
}
.gbk-single-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
}
.gbk-single-stock strong { font-weight: 800; }
.gbk-single-stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.gbk-single-stock--in { color: #4a7a10; }
.gbk-single-stock--in .gbk-single-stock-dot {
    background: #5fa30f;
    box-shadow: 0 0 0 3px rgba(118,170,36,0.18);
}
.gbk-single-stock--out { color: #c0392b; }
.gbk-single-stock--out .gbk-single-stock-dot {
    background: #d33;
    box-shadow: 0 0 0 3px rgba(211,51,51,0.15);
}
.single-product .single_add_to_cart_button {
    background: var(--gbk-green) !important;
    color: #fff !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    cursor: pointer;
    transition: background 0.2s !important;
}
.single-product .single_add_to_cart_button:hover { background: #5d8a1a !important; }
.single-product .woocommerce-product-gallery { border-radius: 10px; overflow: hidden; }

/* Add to Cart form — quantity + button inline */
.single-product form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px !important;
}
.single-product form.cart .quantity {
    display: flex;
    align-items: center;
}
.single-product form.cart .qty {
    width: 70px !important;
    height: 48px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    text-align: center;
    padding: 0 10px !important;
}
.single-product form.cart .qty:focus {
    border-color: var(--gbk-green) !important;
    outline: none !important;
}
.single-product form.cart .single_add_to_cart_button {
    height: 48px !important;
    padding: 0 32px !important;
    font-size: 1rem !important;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Product summary layout */
.single-product div.product .entry-summary,
.single-product div.product .woocommerce-product-details__short-description {
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 0.95rem !important;
    color: #555 !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

/* Hide WC native p.stock — replaced by gbk-single-price-row (v3.9.34) */
.single-product p.stock {
    display: none !important;
}

/* SKU / Category / Tags meta */
.single-product .product_meta {
    margin-top: 24px !important;
    padding-top: 16px !important;
    border-top: 1px solid #eee !important;
    font-size: 0.85rem !important;
    color: #777 !important;
    font-family: 'Inter', Arial, sans-serif !important;
}
.single-product .product_meta a {
    color: var(--gbk-green) !important;
    text-decoration: none;
}
.single-product .product_meta a:hover { text-decoration: underline; }
.single-product .woocommerce-tabs .tabs li.active a { color: var(--gbk-green) !important; border-bottom-color: var(--gbk-green) !important; }
.single-product .woocommerce-tabs .tabs li a { font-family: 'Inter', Arial, sans-serif !important; font-weight: 600 !important; }

/* =============================================
   RESPONSIVE — NEW PAGES
   ============================================= */
@media (max-width: 1024px) {
    .gbk-values-grid { grid-template-columns: repeat(2, 1fr); }
    .gbk-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .gbk-about-story-content { grid-template-columns: 1fr; gap: 32px; }
    .gbk-contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .gbk-wholesale-form-layout { grid-template-columns: 1fr; gap: 32px; }
    .gbk-form-row--2col { flex-direction: column; }
    .gbk-values-grid { grid-template-columns: 1fr; }
    .gbk-benefits-grid { grid-template-columns: 1fr; }
    .gbk-wholesale-form-wrap { padding: 24px; }
}

/* =============================================
   ABOUT INTRO SECTION (replaces Featured Products)
   ============================================= */
.gbk-about-intro {
    padding: 80px 0;
    background: #fff;
}
.gbk-about-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.gbk-about-intro-label {
    display: inline-block;
    background: #f0f7e6;
    color: var(--gbk-green, #76aa24);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.gbk-about-intro-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #0b0a0c;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-about-intro-text p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.gbk-about-intro-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.gbk-btn-outline-dark {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #0b0a0c;
    color: #0b0a0c;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-btn-outline-dark:hover {
    background: #0b0a0c;
    color: #fff;
}

/* Stats grid */
.gbk-about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.gbk-stat-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.gbk-stat-card:hover {
    border-color: var(--gbk-green, #76aa24);
    box-shadow: 0 4px 16px rgba(118,170,36,0.12);
}
.gbk-stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gbk-green, #76aa24);
    line-height: 1;
    margin-bottom: 8px;
}
.gbk-stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .gbk-about-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gbk-about-intro-text h2 { font-size: 1.6rem; }
}

/* =============================================
   COMPATIBLE BRANDS — GREEN VERSION
   ============================================= */
.gbk-brands--green {
    background: var(--gbk-green, #76aa24) !important;
}
.gbk-brands--green h2 {
    color: #fff !important;
}
.gbk-brands--green .gbk-section-header h2 {
    color: #fff !important;
}
.gbk-brands--green .gbk-brands-list span {
    color: #fff !important;
    border-color: rgba(255,255,255,0.4) !important;
    background: rgba(255,255,255,0.1) !important;
}
.gbk-brands--green .gbk-brands-list span:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.8) !important;
}

/* =============================================
   ABOUT US — STATS BAR
   ============================================= */
.gbk-about-stats-bar {
    background: var(--gbk-black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 0;
}
.gbk-about-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.gbk-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 48px;
}
.gbk-about-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gbk-green, #76aa24);
    line-height: 1;
}
.gbk-about-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}
.gbk-about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .gbk-about-stat { padding: 12px 24px; }
    .gbk-about-stat-divider { display: none; }
    .gbk-about-stats-row { gap: 0; }
}

/* =============================================
   CATALOG PAGE
   ============================================= */

/* PDF Download Banner */
.gbk-catalog-download-bar {
    background: #f0f7e6;
    border-top: 3px solid var(--gbk-green, #76aa24);
    border-bottom: 1px solid #d8edb8;
    padding: 32px 0;
}
.gbk-catalog-download-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.gbk-catalog-download-icon {
    color: var(--gbk-green, #76aa24);
    flex-shrink: 0;
}
.gbk-catalog-download-text {
    flex: 1;
    min-width: 200px;
}
.gbk-catalog-download-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b0a0c;
    margin: 0 0 4px;
}
.gbk-catalog-download-text p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .gbk-catalog-download-inner { flex-direction: column; align-items: flex-start; }
}

/* Catalog Categories Section */
.gbk-catalog-categories {
    padding: 80px 0;
    background: #fff;
}
.gbk-catalog-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.gbk-catalog-cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.gbk-catalog-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gbk-green, #76aa24);
    transform: scaleY(0);
    transition: transform 0.2s;
    transform-origin: bottom;
}
.gbk-catalog-cat-card:hover {
    border-color: var(--gbk-green, #76aa24);
    box-shadow: 0 8px 32px rgba(118,170,36,0.12);
    transform: translateY(-3px);
}
.gbk-catalog-cat-card:hover::before {
    transform: scaleY(1);
}
.gbk-catalog-cat-icon {
    color: var(--gbk-green, #76aa24);
    margin-bottom: 16px;
    opacity: 0.9;
}
.gbk-catalog-cat-body {
    flex: 1;
}
.gbk-catalog-cat-body h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0b0a0c;
    margin: 0 0 8px;
}
.gbk-catalog-cat-body p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.gbk-catalog-cat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.gbk-catalog-cat-count {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gbk-green, #76aa24);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gbk-catalog-cat-arrow {
    color: #bbb;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}
.gbk-catalog-cat-card:hover .gbk-catalog-cat-arrow {
    color: var(--gbk-green, #76aa24);
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .gbk-catalog-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gbk-catalog-cat-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */

/* Products Hero */
.gbk-products-hero {
    background: var(--gbk-black);
    color: white;
    padding: 80px 0 60px;
}
.gbk-products-hero .gbk-page-breadcrumb {
    display: block;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.gbk-products-hero .gbk-page-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.gbk-products-hero .gbk-page-breadcrumb a:hover { color: var(--gbk-green); }
.gbk-products-hero .gbk-page-breadcrumb span { margin: 0 8px; }
.gbk-products-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin: 0 0 16px;
}
.gbk-products-hero p {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.gbk-products-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Products Category Grid */
.gbk-products-cats-section {
    padding: 72px 0 80px;
    background: #f8f9fa;
}
.gbk-products-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}
.gbk-products-cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.gbk-products-cat-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.gbk-products-cat-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}
.gbk-products-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gbk-products-cat-card:hover .gbk-products-cat-img-wrap img {
    transform: scale(1.05);
}
.gbk-products-cat-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.gbk-products-cat-placeholder-icon {
    color: rgba(118,170,36,0.4);
}
.gbk-products-cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,10,12,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.gbk-products-cat-card:hover .gbk-products-cat-overlay {
    opacity: 1;
}
.gbk-products-cat-browse {
    background: var(--gbk-green, #76aa24);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Inter', Arial, sans-serif;
}
.gbk-products-cat-info {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gbk-products-cat-info h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0b0a0c;
    margin: 0;
}
.gbk-products-cat-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.gbk-products-cat-count {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gbk-green, #76aa24);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}
@media (max-width: 1024px) {
    .gbk-products-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gbk-products-cat-grid { grid-template-columns: 1fr; }
    .gbk-products-hero { padding: 60px 0 40px; }
    .gbk-products-hero-actions { flex-direction: column; }
}

/* =============================================
   WOOCOMMERCE — GLOBAL ADD TO CART GREEN
   ============================================= */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product a.button.add_to_cart_button,
.woocommerce .cart .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order {
    background-color: #76aa24 !important;
    background: #76aa24 !important;
    color: #ffffff !important;
    border: 2px solid #5d8a1a !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce .cart .button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover {
    background-color: #5d8a1a !important;
    background: #5d8a1a !important;
    color: #ffffff !important;
}

/* =============================================
   GUEST PRICE HIDE — login prompt styles
   ============================================= */
.gbk-price-login-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gbk-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.gbk-price-login-link:hover {
    color: var(--gbk-black);
}
.gbk-guest-notice {
    background: var(--gbk-gray);
    border-left: 4px solid var(--gbk-green);
    border-radius: 4px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 0.95rem;
    color: var(--gbk-text);
}
.gbk-guest-notice a {
    color: var(--gbk-green);
    font-weight: 700;
    text-decoration: underline;
}
.gbk-guest-notice a:hover {
    color: var(--gbk-black);
}


/* =============================================
   MY ACCOUNT & LOGIN PAGE
   ============================================= */

/* Outer wrapper — page background + padding */
.woocommerce-account .gbk-page-main,
.woocommerce-account .site-content {
    background: #f4f4f4;
    padding: 60px 0 80px;
}

/* Center container */
.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ── DASHBOARD (logged in): side-nav + content ── */
/* Force clear WooCommerce native float layout */
.woocommerce-account.logged-in .woocommerce {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    gap: 32px !important;
    align-items: start !important;
}
.woocommerce-account.logged-in .woocommerce::after {
    display: none !important; /* remove clearfix */
}

/* Left nav — force column 1 */
.woocommerce-MyAccount-navigation {
    float: none !important;
    width: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #f9f9f9;
    color: var(--gbk-green, #76aa24);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    background: var(--gbk-green, #76aa24);
    color: #fff;
}
.woocommerce-MyAccount-navigation ul li:last-child a {
    border-bottom: none;
}

/* Right content area — force column 2 */
.woocommerce-MyAccount-content {
    float: none !important;
    width: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    background: #fff;
    border-radius: 8px;
    padding: 32px 36px;
    border: 1px solid #e5e5e5;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #333;
    min-width: 0;
    overflow-x: auto; /* prevent bulk order table overflow */
    box-sizing: border-box;
}

/* Bulk Order Form table — constrain to content area */
.woocommerce-MyAccount-content .wholesalex-bulk-order-table,
.woocommerce-MyAccount-content table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

/* ── LOGIN PAGE (guest): two columns ── */
/* Override WooCommerce default max-width: 520px on the .woocommerce container */
.woocommerce-account:not(.logged-in) .woocommerce,
.woocommerce-account:not(.logged-in) .woocommerce-page {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important; /* override logged-in grid */
    grid-template-columns: unset !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}
/* WooCommerce renders login+register inside .col2-set > .col-1 + .col-2 */
.woocommerce-account:not(.logged-in) .u-columns,
.woocommerce-account:not(.logged-in) .col2-set {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;  /* stretch = equal height columns */
    gap: 28px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.woocommerce-account:not(.logged-in) .col2-set::after,
.woocommerce-account:not(.logged-in) .col2-set::before {
    display: none !important;
    content: none !important;
}
.woocommerce-account:not(.logged-in) .col-1,
.woocommerce-account:not(.logged-in) .col-2 {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    float: none !important;
    width: auto !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register {
    background: #fff;
    border-radius: 8px;
    padding: 32px 28px;
    border: 1px solid #e5e5e5;
    flex: 1 1 auto !important; /* fill full column height */
    display: flex;
    flex-direction: column;
}

/* Retail Register label */
.gbk-retail-register-label {
    font-size: 0.82rem;
    color: #666;
    margin: -8px 0 16px;
    line-height: 1.4;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login h2,
.woocommerce-account:not(.logged-in) .woocommerce-form-register h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gbk-green, #76aa24);
    color: #1a1a1a;
}

/* Inputs */
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account textarea,
.woocommerce-account select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.woocommerce-account input[type="text"]:focus,
.woocommerce-account input[type="email"]:focus,
.woocommerce-account input[type="password"]:focus {
    border-color: var(--gbk-green, #76aa24);
    outline: none;
}

/* Buttons */
.woocommerce-account .woocommerce-form-login__submit,
.woocommerce-account .woocommerce-form-register__submit,
.woocommerce-account .woocommerce-Button,
.woocommerce-account button[type="submit"],
.woocommerce-account input[type="submit"],
.woocommerce-account .button {
    display: inline-block;
    background: var(--gbk-green, #76aa24);
    color: #fff !important;
    padding: 11px 24px;
    border: none;
    border-radius: 5px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    font-family: 'Inter', Arial, sans-serif;
}
.woocommerce-account .woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce-form-register__submit:hover,
.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button[type="submit"]:hover,
.woocommerce-account input[type="submit"]:hover,
.woocommerce-account .button:hover {
    background: #5d8a1a;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-account.logged-in .woocommerce {
        grid-template-columns: 1fr;
    }
    .woocommerce-account:not(.logged-in) .u-columns,
    .woocommerce-account:not(.logged-in) .col2-set {
        flex-direction: column !important;
    }
    .woocommerce-account .woocommerce {
        padding: 0 20px;
    }
    .woocommerce-MyAccount-content {
        padding: 24px 20px;
    }
}

/* =============================================
   B2B REGISTER CTA ON LOGIN PAGE
   ============================================= */

.gbk-b2b-cta {
    margin-top: 28px;
    text-align: center;
}
.gbk-b2b-cta__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #999;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.gbk-b2b-cta__divider::before,
.gbk-b2b-cta__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.gbk-b2b-cta__btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--gbk-green, #76aa24);
    border-radius: 5px;
    color: var(--gbk-green, #76aa24) !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
}
.gbk-b2b-cta__btn:hover {
    background: var(--gbk-green, #76aa24);
    color: #fff !important;
}
.gbk-b2b-cta__note {
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
}

/* =====================================================
   UI FIXES: View Cart gap, Read More, Checkout btn,
   Request Quote btn
   ===================================================== */

/* 1. View Cart 按钮与 Add to Cart 之间的间距 */
.added_to_cart.wc-forward {
    display: inline-block !important;
    margin-top: 8px !important;
    margin-left: 0 !important;
}

/* 2. Read More 按钮样式统一（当产品没有 regular price 时 WC 显示 Read More）
      原因：产品没有设置 regular price，WooCommerce 就不允许直接加购，显示 Read More。
      CSS 只能美化样式，真正的修复需要在产品后台填写 Regular Price。
      这里先统一样式让它看起来一致。 */
a.button.product_type_simple:not(.add_to_cart_button),
a.button.product_type_variable:not(.add_to_cart_button) {
    background-color: var(--gbk-green, #76aa24) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.82rem !important;
    transition: background 0.2s !important;
}
a.button.product_type_simple:not(.add_to_cart_button):hover,
a.button.product_type_variable:not(.add_to_cart_button):hover {
    background-color: #5d8a1a !important;
    color: #fff !important;
}

/* 3. Proceed to Checkout 按钮 - 加上明显的绿色实心样式 */
.wc-proceed-to-checkout .checkout-button,
a.checkout-button.wc-forward {
    display: block !important;
    width: 100% !important;
    background-color: var(--gbk-green, #76aa24) !important;
    color: #fff !important;
    border: 2px solid #5d8a1a !important;
    border-radius: 5px !important;
    padding: 15px 24px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    margin-top: 12px !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}
.wc-proceed-to-checkout .checkout-button:hover,
a.checkout-button.wc-forward:hover {
    background-color: #5d8a1a !important;
    color: #fff !important;
}

/* 4. Request Quote 按钮美化 */
#wholesalex_request_btn,
button.wholesalex_request_custom_quote_btn {
    display: block !important;
    width: 100% !important;
    background-color: transparent !important;
    color: var(--gbk-green, #76aa24) !important;
    border: 2px solid var(--gbk-green, #76aa24) !important;
    border-radius: 5px !important;
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: background 0.2s, color 0.2s !important;
    margin-top: 10px !important;
    box-sizing: border-box !important;
    font-family: 'Inter', Arial, sans-serif !important;
}
#wholesalex_request_btn:hover,
button.wholesalex_request_custom_quote_btn:hover {
    background-color: var(--gbk-green, #76aa24) !important;
    color: #fff !important;
}

/* === Login page: two-column register CTA === */
.gbk-b2b-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}
.gbk-b2b-cta__col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
/* Retail 按钮 - 灰色描边 */
.gbk-b2b-cta__btn--outline {
    background: transparent !important;
    border: 2px solid #aaa !important;
    color: #555 !important;
}
.gbk-b2b-cta__btn--outline:hover {
    background: #f0f0f0 !important;
    color: #333 !important;
}
/* B2B 按钮 - 绿色实心 */
.gbk-b2b-cta__btn--solid {
    background: var(--gbk-green, #76aa24) !important;
    border: 2px solid var(--gbk-green, #76aa24) !important;
    color: #fff !important;
}
.gbk-b2b-cta__btn--solid:hover {
    background: #5d8a1a !important;
    border-color: #5d8a1a !important;
    color: #fff !important;
}
@media (max-width: 480px) {
    .gbk-b2b-cta__grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CART: Weight-based Freight Quote (>= 100 lbs)
   ===================================================== */

/* Warning notice above the quote button */
.gbk-freight-notice {
    background: #fff8e1;
    border: 1px solid #f5c518;
    border-left: 4px solid #f5c518;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: #5a4a00;
    line-height: 1.55;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.gbk-freight-notice strong {
    color: #3a3000;
}
.gbk-freight-icon {
    font-style: normal;
    margin-right: 4px;
}

/* Request a Freight Quote button — full-width, green outline */
.gbk-freight-quote-btn {
    display: block !important;
    width: 100% !important;
    background-color: var(--gbk-green, #76aa24) !important;
    color: #fff !important;
    border: 2px solid var(--gbk-green, #76aa24) !important;
    border-radius: 5px !important;
    padding: 15px 24px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
    margin-top: 0 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    font-family: 'Inter', Arial, sans-serif !important;
}
.gbk-freight-quote-btn:hover {
    background-color: #5d8a1a !important;
    border-color: #5d8a1a !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* =====================================================
   WC BLOCKS CART: Proceed to Checkout button override
   The Blocks cart uses .wc-block-cart__submit-button
   which is a React component and needs separate rules
   ===================================================== */
.wc-block-cart__submit-button,
.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container a.wc-block-components-button {
    background-color: var(--gbk-green, #76aa24) !important;
    background: var(--gbk-green, #76aa24) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 15px 24px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    font-family: 'Inter', Arial, sans-serif !important;
    text-decoration: none !important;
}
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-container .wc-block-components-button:hover,
.wc-block-cart__submit-container a.wc-block-components-button:hover {
    background-color: #5d8a1a !important;
    background: #5d8a1a !important;
    color: #ffffff !important;
    border-color: #5d8a1a !important;
}

/* WC Blocks inner text span */
.wc-block-cart__submit-button .wc-block-components-button__text,
.wc-block-cart__submit-container .wc-block-components-button__text {
    color: #ffffff !important;
}

/* =====================================================
   WHOLESALEX REQUEST QUOTE: ensure visibility
   WholesaleX injects the button dynamically via JS.
   These rules ensure it's always styled correctly
   even if it renders after page load.
   ===================================================== */
#wholesalex_request_btn,
button.wholesalex_request_custom_quote_btn,
.wc-block-cart__submit-container #wholesalex_request_btn {
    display: block !important;
    width: 100% !important;
    background-color: transparent !important;
    color: var(--gbk-green, #76aa24) !important;
    border: 2px solid var(--gbk-green, #76aa24) !important;
    border-radius: 6px !important;
    padding: 13px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: background 0.2s, color 0.2s !important;
    margin-top: 10px !important;
    box-sizing: border-box !important;
    font-family: 'Inter', Arial, sans-serif !important;
    visibility: visible !important;
    opacity: 1 !important;
}
#wholesalex_request_btn:hover,
button.wholesalex_request_custom_quote_btn:hover {
    background-color: var(--gbk-green, #76aa24) !important;
    color: #ffffff !important;
}

/* =============================================
   CART FREIGHT NOTICE
   ============================================= */

.gbk-freight-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff8e1;
    border: 1.5px solid #f5a623;
    border-left: 5px solid #f5a623;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a3e00;
}

.gbk-freight-notice--checkout {
    margin-bottom: 28px;
    margin-top: 8px;
}

.gbk-freight-notice__icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    color: #f5a623;
}

.gbk-freight-notice__body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #3d2800;
    margin-bottom: 6px;
}

.gbk-freight-notice__body p {
    margin: 0 0 6px;
}

.gbk-freight-notice__body p:last-child {
    margin-bottom: 0;
}

.gbk-freight-notice__body a {
    color: var(--gbk-green, #76aa24);
    font-weight: 600;
    text-decoration: underline;
}

/* =============================================
   MY ACCOUNT — FAQ PAGE
   ============================================= */

.gbk-faq {
    max-width: 720px;
}

.gbk-faq__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gbk-black, #1a1a1a);
    margin: 0 0 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e5e5e5;
}

.gbk-faq__item {
    margin-bottom: 28px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.gbk-faq__question {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f9f4;
    padding: 16px 20px;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--gbk-black, #1a1a1a);
    border-bottom: 1px solid #e8e8e8;
}

.gbk-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--gbk-green, #76aa24);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.gbk-faq__answer {
    padding: 18px 20px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #444;
}

.gbk-faq__answer p {
    margin: 0 0 10px;
}

.gbk-faq__answer p:last-child {
    margin-bottom: 0;
}

.gbk-faq__answer ul {
    margin: 8px 0 12px 20px;
    padding: 0;
}

.gbk-faq__answer ul li {
    margin-bottom: 5px;
}

.gbk-faq__answer a {
    color: var(--gbk-green, #76aa24);
    font-weight: 600;
    text-decoration: underline;
}

/* State tags grid */
.gbk-faq__states {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.gbk-faq__states span {
    background: #eef4e0;
    color: #3d5a00;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #c8dfa0;
    white-space: nowrap;
}

/* Apply button */
.gbk-faq__apply-btn {
    display: inline-block;
    background: var(--gbk-green, #76aa24);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    margin-top: 6px;
    transition: background 0.2s;
}

.gbk-faq__apply-btn:hover {
    background: #5e8a1a;
    color: #fff !important;
}

/* =============================================
   PRODUCT PAGE — MOQ / PALLET NOTICE
   ============================================= */

.gbk-moq-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f0f7e6;
    border: 1px solid #c5dfa0;
    border-left: 4px solid var(--gbk-green, #76aa24);
    border-radius: 6px;
    padding: 10px 14px;
    margin: 8px 0 12px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #3a4a1e;
}

.gbk-moq-notice__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.gbk-moq-notice__text a {
    color: var(--gbk-green, #76aa24);
    font-weight: 600;
    text-decoration: underline;
}

/* =============================================
   CHECKOUT PAGE — SHIPPING FAQ LINK
   ============================================= */

.gbk-checkout-faq-link {
    background: #f4f8ff;
    border: 1px solid #c5d8f5;
    border-left: 4px solid #4a90d9;
    border-radius: 6px;
    padding: 10px 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #2c3e6a;
    line-height: 1.5;
}

.gbk-checkout-faq-link span {
    margin-right: 6px;
}

.gbk-checkout-faq-link a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

/* =============================================
   RESET PASSWORD PAGE — LAYOUT FIX
   ============================================= */

/* Lost password / reset password page — center the form */
.woocommerce-ResetPassword,
.woocommerce-form-login,
body.woocommerce-account:not(.logged-in) .woocommerce {
    display: block !important;
    max-width: 520px;
    margin: 40px auto !important;
    padding: 0 20px;
}

body.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-ResetPassword,
body.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form-login {
    width: 100%;
    max-width: 100%;
}

/* Ensure lost password page form is properly styled */
.woocommerce-ResetPassword.lost_reset_password {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.woocommerce-ResetPassword.lost_reset_password p {
    margin-bottom: 16px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row {
    margin-bottom: 16px;
}

.woocommerce-ResetPassword.lost_reset_password label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 6px;
}

.woocommerce-ResetPassword.lost_reset_password input[type="text"],
.woocommerce-ResetPassword.lost_reset_password input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.woocommerce-ResetPassword.lost_reset_password input[type="text"]:focus,
.woocommerce-ResetPassword.lost_reset_password input[type="email"]:focus {
    border-color: var(--gbk-green, #76aa24);
    outline: none;
}

.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button {
    background: var(--gbk-green, #76aa24);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button:hover {
    background: #5e8a1a;
}

/* Freight notice free shipping tip line */
.gbk-freight-notice__tip {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #3a5a1a;
    background: rgba(118, 170, 36, 0.12);
    border-radius: 4px;
    padding: 5px 10px;
    display: inline-block;
}

/* =============================================
   POPULAR PARTS — SEO KEYWORD SECTION
   ============================================= */
.gbk-popular-parts {
    padding: 60px 0;
    background: #f8f9fa;
}

.gbk-parts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.gbk-part-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    border: 1.5px solid #d0d0d0;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.gbk-part-tag:hover {
    background: #76aa24;
    border-color: #76aa24;
    color: #ffffff;
    text-decoration: none;
}


/* =============================================
   PRODUCT PAGE — AMAZON-STYLE LAYOUT (v3.4.0)
   ============================================= */

/* ── Main product row: gallery left, summary right ── */
.gbk-sp-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 32px 0 40px;
}

/* ── Gallery column ── */
.gbk-sp-gallery {
    position: sticky;
    top: 100px; /* below sticky header */
}

/* WooCommerce gallery: main image */
.gbk-sp-gallery .woocommerce-product-gallery {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
}

/* Stock badge overlaid on gallery image (single product) */
.gbk-buy__block--gallery {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

/* Main product image — 1:1 square with contain (no crop) */
.gbk-sp-gallery .woocommerce-product-gallery__image a,
.gbk-sp-gallery .woocommerce-product-gallery__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fafafa;
}
.gbk-sp-gallery .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
    padding: 16px;
    box-sizing: border-box;
}

/* Thumbnails strip */
.gbk-sp-gallery .flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    margin: 0 !important;
    list-style: none;
}
.gbk-sp-gallery .flex-control-thumbs li {
    flex: 0 0 calc(16.666% - 7px);
    max-width: 80px;
}
.gbk-sp-gallery .flex-control-thumbs li img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #fafafa;
    padding: 4px;
    box-sizing: border-box;
}
.gbk-sp-gallery .flex-control-thumbs li img.flex-active,
.gbk-sp-gallery .flex-control-thumbs li img:hover {
    border-color: var(--gbk-green, #76aa24);
}

/* ── Summary column ── */
.gbk-sp-summary {
    padding: 8px 0;
}
.gbk-sp-summary .product_title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    color: #0b0a0c !important;
}
.gbk-sp-summary .price {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--gbk-green, #76aa24) !important;
    margin-bottom: 16px !important;
    display: block;
    letter-spacing: -0.01em !important;
}
.gbk-sp-summary .price del {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #aaa !important;
    margin-right: 6px !important;
}
.gbk-sp-summary .price ins {
    text-decoration: none !important;
}
.gbk-sp-summary .woocommerce-product-rating {
    margin-bottom: 12px !important;
}
.gbk-sp-summary .woocommerce-product-details__short-description {
    font-size: 0.92rem !important;
    color: #555 !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #eee !important;
}
.gbk-sp-summary form.cart {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.gbk-sp-summary .product_meta {
    font-size: 0.82rem !important;
    color: #888 !important;
    margin-top: 20px !important;
    padding-top: 16px !important;
    border-top: 1px solid #eee !important;
}

/* ── PRODUCT TABS ── */
.gbk-product-tabs {
    margin-top: 48px;
    border-top: 3px solid var(--gbk-green, #76aa24);
}

/* Tab navigation bar */
.gbk-product-tabs__nav {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gbk-product-tabs__btn {
    flex: 0 0 auto;
    padding: 16px 28px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #555;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
    margin-bottom: -1px;
    outline: none;
}
.gbk-product-tabs__btn:hover {
    color: var(--gbk-green, #76aa24);
    background: rgba(118,170,36,0.05);
}
.gbk-product-tabs__btn.is-active {
    color: var(--gbk-green, #76aa24);
    border-bottom-color: var(--gbk-green, #76aa24);
    background: #fff;
}

/* Tab panels */
.gbk-product-tabs__panel {
    padding: 40px 0;
    display: none;
}
.gbk-product-tabs__panel.is-active {
    display: block;
}
.gbk-product-tabs__panel[hidden] {
    display: none !important;
}
.gbk-product-tabs__content {
    max-width: 100%;
}
.gbk-product-tabs__empty {
    color: #888;
    font-style: italic;
}

/* ── Tab 1: Product Description ── */
.gbk-product-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}
.gbk-product-description h2,
.gbk-product-description h3,
.gbk-product-description h4 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    color: #0b0a0c;
    margin-top: 28px;
    margin-bottom: 12px;
}
.gbk-product-description h2 { font-size: 1.4rem; }
.gbk-product-description h3 { font-size: 1.15rem; }
.gbk-product-description h4 { font-size: 1rem; }
.gbk-product-description p { margin-bottom: 14px; }
.gbk-product-description ul,
.gbk-product-description ol {
    padding-left: 24px;
    margin-bottom: 14px;
}
.gbk-product-description li { margin-bottom: 6px; }
.gbk-product-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}
.gbk-product-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}
.gbk-product-description table th,
.gbk-product-description table td {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.gbk-product-description table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}
.gbk-product-description table tr:nth-child(even) td {
    background: #fafafa;
}

/* Spec table (from product attributes) */
.gbk-spec-table-wrap {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 32px;
    border-top: none;
}
.gbk-spec-table__title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b0a0c;
    margin-bottom: 16px;
}
.gbk-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.gbk-spec-table th,
.gbk-spec-table td {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}
.gbk-spec-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #444;
    width: 35%;
    white-space: nowrap;
}
.gbk-spec-table tr:nth-child(even) td {
    background: #fafafa;
}

/* ── Tab 2: Company Info ── */
.gbk-company-info__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}
.gbk-company-info__text h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b0a0c;
    margin-bottom: 16px;
}
.gbk-company-info__text h4 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0b0a0c;
    margin: 24px 0 10px;
}
.gbk-company-info__text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}
.gbk-company-info__list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}
.gbk-company-info__list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}
.gbk-company-info__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gbk-green, #76aa24);
    font-weight: 700;
}
.gbk-company-info__cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gbk-green, #76aa24);
    color: #fff;
    border-radius: 6px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 8px;
}
.gbk-company-info__cta:hover {
    background: #5d8a1a;
    color: #fff;
}

/* Company stats sidebar */
.gbk-company-info__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 200px;
}
.gbk-company-stat {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.gbk-company-stat:hover {
    border-color: var(--gbk-green, #76aa24);
}
.gbk-company-stat__num {
    display: block;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gbk-green, #76aa24);
    line-height: 1.1;
    margin-bottom: 4px;
}
.gbk-company-stat__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Tab 3: Packaging & Delivery ── */
.gbk-packaging-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.gbk-packaging-block {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 28px 24px;
    border: 1px solid #e8e8e8;
}
.gbk-packaging-block__icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.gbk-packaging-block h4 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0b0a0c;
    margin-bottom: 12px;
}
.gbk-packaging-block p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}
.gbk-packaging-block ul {
    padding-left: 18px;
    margin-bottom: 12px;
}
.gbk-packaging-block li {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}
.gbk-packaging-block a {
    color: var(--gbk-green, #76aa24);
    font-weight: 600;
    text-decoration: none;
}
.gbk-packaging-block a:hover { text-decoration: underline; }

/* Packaging delivery table */
.gbk-packaging-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.gbk-packaging-table th,
.gbk-packaging-table td {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}
.gbk-packaging-table th {
    background: #eef5e0;
    font-weight: 600;
    color: #3a5a1a;
}
.gbk-packaging-table tr:nth-child(even) td {
    background: #fff;
}
.gbk-packaging-info__tip {
    background: rgba(118,170,36,0.1);
    border-left: 3px solid var(--gbk-green, #76aa24);
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: #3a5a1a;
    margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .gbk-sp-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .gbk-company-info__grid {
        grid-template-columns: 1fr;
    }
    .gbk-company-info__stats {
        grid-template-columns: repeat(2, 1fr);
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .gbk-sp-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .gbk-sp-gallery {
        position: static;
    }
    .gbk-product-tabs__btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    .gbk-packaging-info__grid {
        grid-template-columns: 1fr;
    }
    .gbk-company-info__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .gbk-spec-table th {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .gbk-product-tabs__nav {
        gap: 0;
    }
    .gbk-product-tabs__btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .gbk-company-info__stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================
   PACKAGING & DELIVERY TAB — PHOTO LAYOUT (v3.4.1)
   ============================================= */

.gbk-packaging-intro {
    margin-bottom: 32px;
}
.gbk-packaging-intro__title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b0a0c;
    margin-bottom: 10px;
}
.gbk-packaging-intro__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    max-width: 820px;
}

/* Three photos in a row */
.gbk-packaging-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.gbk-packaging-photo {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
    transition: box-shadow 0.2s;
}
.gbk-packaging-photo:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.gbk-packaging-photo__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}
.gbk-packaging-photo__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.gbk-packaging-photo:hover .gbk-packaging-photo__img-wrap img {
    transform: scale(1.04);
}
.gbk-packaging-photo__caption {
    padding: 14px 16px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
}
.gbk-packaging-photo__caption strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0b0a0c;
    margin-bottom: 4px;
}

/* Shipping info strip */
.gbk-packaging-shipping-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 24px;
    border: 1px solid #e8e8e8;
}
.gbk-packaging-shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}
.gbk-packaging-shipping-item__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.gbk-packaging-shipping-item strong {
    display: block;
    font-weight: 700;
    color: #0b0a0c;
    margin-bottom: 2px;
    font-size: 0.88rem;
}
.gbk-packaging-shipping-item a {
    color: var(--gbk-green, #76aa24);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .gbk-packaging-photos {
        grid-template-columns: 1fr;
    }
    .gbk-packaging-photo__img-wrap {
        aspect-ratio: 16 / 9;
    }
    .gbk-packaging-shipping-strip {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .gbk-packaging-shipping-strip {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   TOP BAR (v3.5.1)
   ============================================= */

.gbk-topbar {
    background: #0b0a0c;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-family: 'Inter', Arial, sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gbk-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    gap: 20px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.gbk-topbar__contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}
.gbk-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.15s;
    white-space: nowrap;
}
.gbk-topbar__item:hover {
    color: var(--gbk-green, #76aa24);
    text-decoration: none;
}
.gbk-topbar__item svg {
    flex-shrink: 0;
    opacity: 0.75;
}
.gbk-topbar__hours {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    cursor: default;
}
@media (max-width: 640px) {
    .gbk-topbar__right { display: none; }
    .gbk-topbar__contacts { gap: 14px; }
    .gbk-topbar__item { font-size: 0.75rem; }
}
@media (max-width: 400px) {
    .gbk-topbar__item span.topbar-label { display: none; }
}

/* =============================================
   PRODUCT GALLERY ZOOM FIX (v3.5.1)
   Allow WooCommerce zoom overlay to overflow
   ============================================= */

/* Remove overflow:hidden that blocks the zoom lens */
.gbk-sp-gallery .woocommerce-product-gallery {
    overflow: visible !important;
}
.gbk-sp-gallery .woocommerce-product-gallery__image a,
.gbk-sp-gallery .woocommerce-product-gallery__image {
    overflow: visible !important;
}
/* Keep the main image contained within its box */
.gbk-sp-gallery .woocommerce-product-gallery__image img {
    position: relative;
    z-index: 1;
}
/* Zoom lens overlay */
.gbk-sp-gallery .zoomImg {
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
/* Lightbox (PhotoSwipe) trigger icon */
.gbk-sp-gallery .woocommerce-product-gallery__trigger {
    z-index: 10;
}


/* =============================================
   NEWSLETTER POPUP (v3.7.0)
   ============================================= */
#gbk-newsletter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
#gbk-newsletter-overlay.gbk-nl-active {
    display: flex;
    animation: gbkNlFadeIn 0.35s ease;
}
@keyframes gbkNlFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.gbk-nl-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: gbkNlSlideUp 0.35s ease;
}
@keyframes gbkNlSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.gbk-nl-header {
    background: #76aa24;
    padding: 36px 40px 28px;
    text-align: center;
    position: relative;
}
.gbk-nl-header::before {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    margin: 0 auto 18px;
}
.gbk-nl-header h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
    line-height: 1.2;
}
.gbk-nl-header p {
    color: rgba(255,255,255,0.88);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}
.gbk-nl-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}
.gbk-nl-close:hover { color: #fff; }
.gbk-nl-body { padding: 32px 40px 36px; }
.gbk-nl-field { margin-bottom: 14px; }
.gbk-nl-field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gbk-nl-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #222;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.gbk-nl-field input:focus {
    outline: none;
    border-color: #76aa24;
    box-shadow: 0 0 0 3px rgba(118,170,36,0.15);
    background: #fff;
}
.gbk-nl-submit {
    width: 100%;
    padding: 13px;
    background: #76aa24;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
}
.gbk-nl-submit:hover { background: #5e8a1a; transform: translateY(-1px); }
.gbk-nl-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; }
.gbk-nl-notice {
    display: none;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-align: center;
}
.gbk-nl-notice.success {
    background: #edf7e1;
    color: #3a6b0e;
    border: 1px solid #b6d97a;
    display: block;
}
.gbk-nl-notice.error {
    background: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c6c6;
    display: block;
}
.gbk-nl-skip {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #aaa;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
}
.gbk-nl-skip:hover { color: #777; }
@media (max-width: 560px) {
    .gbk-nl-header { padding: 28px 24px 22px; }
    .gbk-nl-body   { padding: 24px 24px 28px; }
    .gbk-nl-header h3 { font-size: 1.2rem; }
}

/* =============================================
   FOOTER SUBSCRIBE BAR (v3.7.0)
   ============================================= */
.gbk-footer-subscribe {
    margin-top: 20px;
}
.gbk-footer-subscribe__label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    line-height: 1.4;
}
.gbk-footer-subscribe__form {
    display: flex;
    gap: 0;
    border-radius: 5px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s;
}
.gbk-footer-subscribe__form:focus-within {
    border-color: #76aa24;
}
.gbk-footer-subscribe__form input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255,255,255,0.08);
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: #fff;
    min-width: 0;
}
.gbk-footer-subscribe__form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}
.gbk-footer-subscribe__form button {
    padding: 10px 16px;
    background: #76aa24;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}
.gbk-footer-subscribe__form button:hover {
    background: #5e8a1a;
}
.gbk-footer-subscribe__notice {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    margin-top: 7px;
    min-height: 1em;
    line-height: 1.4;
}
.gbk-footer-subscribe__notice.success { color: #a8d96a; }
.gbk-footer-subscribe__notice.error   { color: #ff8a80; }

/* =============================================
   TOP BAR SUBSCRIBE (v3.7.0)
   ============================================= */
.gbk-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}
/* Shipping badge (replaces subscribe) */
.gbk-topbar__shipping-badge {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.gbk-shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}
.gbk-shipping-badge svg {
    flex-shrink: 0;
}
/* Guest / Retail: green pill */
.gbk-shipping-badge--guest,
.gbk-shipping-badge--retail {
    background: rgba(118, 170, 36, 0.20);
    color: #a8d84a;
    border: 1px solid rgba(118, 170, 36, 0.45);
}
/* Wholesale: gold/amber pill */
.gbk-shipping-badge--wholesale {
    background: rgba(255, 193, 7, 0.15);
    color: #ffd54f;
    border: 1px solid rgba(255, 193, 7, 0.40);
}
@media (max-width: 768px) {
    .gbk-shipping-badge { font-size: 0.68rem; padding: 3px 8px; }
}
@media (max-width: 480px) {
    .gbk-topbar__shipping-badge { display: none; }
}

/* =============================================
   SKU BADGE — PROMINENT (v3.8.0)
   ============================================= */
/* SKU + Cross Ref row (no outer box) */
.gbk-product-sku-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 4px 0 12px;
    flex-wrap: wrap;
}
.gbk-product-sku-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.gbk-product-sku-item__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #0b0a0c;
    padding: 2px 7px;
    border-radius: 3px;
}
.gbk-product-sku-item__value {
    font-family: 'Inter', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #0b0a0c;
    letter-spacing: 0.04em;
}

/* =============================================
   PALLET PRICING BOX (v3.8.0)
   ============================================= */
.gbk-pallet-box {
    margin: 16px 0;
    border: 2px solid #76aa24;
    border-radius: 6px;
    overflow: hidden;
}
.gbk-pallet-box__header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #76aa24;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 14px;
}
.gbk-pallet-box__body {
    padding: 14px 16px;
    background: #fafff5;
}
.gbk-pallet-box__price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2px;
}
.gbk-pallet-box__label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #555;
}
.gbk-pallet-box__price {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0b0a0c;
}
.gbk-pallet-box__unit {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #76aa24;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: right;
}
.gbk-pallet-box__qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.gbk-pallet-box__qty-row label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}
.gbk-pallet-box__qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.gbk-pallet-qty-btn {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: background 0.15s;
    flex-shrink: 0;
}
.gbk-pallet-qty-btn:hover { background: #e0e0e0; }
#gbk-pallet-qty {
    width: 44px;
    height: 30px;
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    outline: none;
}
.gbk-pallet-box__total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: #333;
    margin-left: auto;
}
.gbk-pallet-box__btn {
    width: 100%;
    padding: 13px 0;
    background: #0b0a0c;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
}
.gbk-pallet-box__btn:hover { background: #333; }
.gbk-pallet-box__btn:disabled { background: #999; cursor: not-allowed; }
.gbk-pallet-box__notice {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    margin-top: 8px;
    min-height: 1em;
    line-height: 1.4;
}
.gbk-pallet-box__notice.success { color: #2e7d32; }
.gbk-pallet-box__notice.error   { color: #c62828; }
.gbk-pallet-box__dims {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin: 8px 0 12px;
    padding: 8px 10px;
    background: #f0f7e6;
    border-radius: 4px;
    border-left: 3px solid #76aa24;
}
.gbk-pallet-box__dim-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #444;
}
.gbk-pallet-box__dim-item strong {
    color: #0b0a0c;
    font-weight: 700;
}

/* Product gallery: CSS hover zoom (no magnifier widget) */
.woocommerce-product-gallery__image img {
    transition: transform 0.35s ease;
    cursor: zoom-in;
}
.woocommerce-product-gallery__image:hover img {
    transform: scale(1.08);
}
.woocommerce-product-gallery__image {
    overflow: hidden;
}

/* =============================================
   LIVE SEARCH DROPDOWN (v3.8.0)
   ============================================= */
.gbk-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 740px;
    max-width: 96vw;
    background: #0b0a0c;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.55);
    z-index: 9999;
    overflow: hidden;
    display: none;
}
.gbk-search-dropdown.is-open { display: block; }
.gbk-search-dropdown__fields {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #2a2a2a;
    background: #141414;
}
.gbk-search-dropdown__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 20px 14px;
    border-right: 2px solid #2a2a2a;
}
.gbk-search-dropdown__field:last-child { border-right: none; }
.gbk-search-dropdown__field label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #76aa24;
    margin-bottom: 8px;
}
.gbk-search-dropdown__field input {
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    padding: 0;
}
.gbk-search-dropdown__field input::placeholder { color: #555; font-weight: 400; }
.gbk-search-dropdown__results {
    max-height: 400px;
    overflow-y: auto;
    background: #0b0a0c;
}
.gbk-search-dropdown__result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    text-decoration: none;
    color: #eee;
    border-bottom: 1px solid #1e1e1e;
    transition: background 0.15s;
}
.gbk-search-dropdown__result:last-child { border-bottom: none; }
.gbk-search-dropdown__result:hover { background: #1a2a0a; }
.gbk-search-dropdown__result-thumb {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
}
.gbk-search-dropdown__result-thumb-placeholder {
    width: 54px;
    height: 54px;
    background: #1e1e1e;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.4rem;
    border: 1px solid #2a2a2a;
}
.gbk-search-dropdown__result-info { flex: 1; min-width: 0; }
.gbk-search-dropdown__result-sku {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #76aa24;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}
.gbk-search-dropdown__result-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    font-weight: 500;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gbk-search-dropdown__result-xref {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gbk-search-dropdown__result-xref-label {
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    margin-right: 3px;
}
.gbk-search-dropdown__empty,
.gbk-search-dropdown__loading {
    padding: 24px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #666;
    text-align: center;
    background: #0b0a0c;
}
.gbk-search-dropdown__footer {
    border-top: 2px solid #2a2a2a;
    padding: 11px 20px;
    display: flex;
    justify-content: flex-end;
    background: #141414;
}
.gbk-search-dropdown__footer a {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #76aa24;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}
.gbk-search-dropdown__footer a:hover { color: #fff; }

/* Make the search toggle wrapper relative for dropdown positioning */
.gbk-header-actions {
    position: relative;
}
.gbk-search-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .gbk-search-dropdown {
        width: calc(100vw - 24px);
        right: -12px;
    }
    .gbk-search-dropdown__fields { flex-direction: column; }
    .gbk-search-dropdown__field { border-right: none; border-bottom: 1.5px solid #2a2a2a; }
    .gbk-search-dropdown__field:last-child { border-bottom: none; }
}

/* =============================================
   PRODUCT CARD — FULL-WIDTH ALIGNED ADD TO CART (v3.8.2)
   ============================================= */

/* Make each product li a flex column so button sticks to bottom */
.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
}

/* Push the button area to the bottom */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product .woocommerce-loop-category__link {
    flex: 1 !important;
}

/* Full-width green Add to Cart button, fixed height, bottom-aligned */
/* ── Shop loop Add to Cart button — Amazon style (v3.9.32) ── */
/* Default: solid green, full-width, pill/rounded */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.button.add_to_cart_button {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    padding: 11px 0 !important;
    text-align: center !important;
    background: #76aa24 !important;
    color: #fff !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: 2px solid #76aa24 !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
    transition: background 0.18s, border-color 0.18s !important;
    cursor: pointer !important;
}
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product a.button.add_to_cart_button:hover {
    background: #5d8a1a !important;
    border-color: #5d8a1a !important;
    color: #fff !important;
}
/* After added: show qty stepper wrapper instead */
.woocommerce ul.products li.product .gbk-qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    border: 2px solid #76aa24;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
}
.gbk-qty-stepper__btn {
    background: none;
    border: none;
    color: #76aa24;
    font-size: 1.3rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    line-height: 1;
}
.gbk-qty-stepper__btn:hover {
    background: #f0f7e6;
}
.gbk-qty-stepper__btn--remove {
    color: #e74c3c;
}
.gbk-qty-stepper__label {
    flex: 1;
    text-align: center;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    pointer-events: none;
}
/* Editable quantity field in the shop-card stepper */
.gbk-qty-stepper__input {
    flex: 1;
    width: 100%;
    min-width: 0;
    text-align: center;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 4px 2px;
    -moz-appearance: textfield;
}
.gbk-qty-stepper__input:focus {
    outline: 2px solid var(--gbk-green, #76aa24);
    background: #fff;
}
.gbk-qty-stepper__input::-webkit-outer-spin-button,
.gbk-qty-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
/* Hide stepper by default, show only when active */
.woocommerce ul.products li.product .gbk-qty-stepper {
    display: none;
}
.woocommerce ul.products li.product.gbk-in-cart .gbk-qty-stepper {
    display: flex;
}
.woocommerce ul.products li.product.gbk-in-cart > a.button,
.woocommerce ul.products li.product.gbk-in-cart a.button.add_to_cart_button {
    display: none !important;
}
/* View Cart link — hide the default WC one in loop */
.woocommerce ul.products li.product .added_to_cart {
    display: none !important;
}

/* Remove any bottom padding/margin on product li so button flush with card edge */
/* Card: no border on whole card (v3.9.32) */
.woocommerce ul.products li.product {
    padding-bottom: 0 !important;
    overflow: visible !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
/* No border on image thumbnail area (v3.9.33) */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    border: none !important;
    display: block !important;
    background: transparent !important;
}

/* =============================================
   CLEAN BUY PANEL — box-free (v3.9.54)
   Price + stock line, then [qty | Add to Cart], then [pallet qty | Add Pallet]
   ============================================= */

.gbk-buy {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ---- Section + label ---- */
.gbk-buy__section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gbk-buy__section--pallet {
    border-top: 1px solid #eee;
    padding-top: 16px;
}
/* ---- Meta row: [solid block badge] [green price] — identical for Single & Pallet.
   No section labels, just a clear block + the price. ---- */
.gbk-buy__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.gbk-buy__block {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #4a7a10;
    background: #eef6d6;
    border: 1px solid #d3e8ad;
    padding: 6px 15px;
    border-radius: 20px;
}
.gbk-buy__block--out {
    color: #c0392b;
    background: #fdecea;
    border-color: #f5c6c6;
}
.gbk-buy__price {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #76aa24;
    white-space: nowrap;
}
.gbk-buy__price .amount { color: #76aa24; }
.gbk-buy__pallet-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
}


/* ---- Single order row: qty (left) + Add to Cart (right) — matches the pallet row.
   Scoped with .single-product to override the generic .single-product form.cart rules. ---- */
.gbk-buy__row { display: flex; align-items: center; gap: 10px; }

/* qty + button ALWAYS on one line (nowrap). Any plugin notice is relocated out
   of the form by JS, so only .quantity + the button remain here. */
.single-product .gbk-buy__row--single form.cart {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin: 0 !important;
    width: 100%;
}
/* Inline add-to-cart message (e.g. stock cap) — shown in place above the qty row
   instead of dumping WooCommerce's notice at the top of the page. (v3.9.70) */
.gbk-buy__msg {
    display: none;
    margin: 0 0 12px;
    padding: 11px 14px;
    background: #fdecea;
    border: 1px solid #f5b7b1;
    border-radius: 8px;
    color: #a23734;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}
.gbk-buy__msg.is-visible { display: block; }

/* Same idea for the shop/category loop card stepper — a small note under it. */
.woocommerce ul.products li.product .gbk-stepper-msg {
    display: none;
    margin: 8px 0 0;
    padding: 7px 10px;
    background: #fdecea;
    border: 1px solid #f5b7b1;
    border-radius: 6px;
    color: #a23734;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}
.woocommerce ul.products li.product .gbk-stepper-msg.is-visible { display: block; }

/* MOQ / minimum-order notice, relocated above the qty row */
.gbk-buy__section .gbk-moq-notice {
    background: #fff7ed;
    border: 1px solid #fcd9a8;
    color: #9a5b00;
    border-radius: 8px;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Fixed quantity (only 1 in stock) — static number where the input would be */
.single-product .gbk-buy__row--single .gbk-qty-fixed {
    min-width: 52px;
    padding: 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}
/* Quantity rendered as a stepper that matches the pallet stepper */
.single-product .gbk-buy__row--single .quantity {
    flex-shrink: 0;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    height: 48px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.single-product .gbk-buy__row--single .gbk-qstep {
    width: 38px;
    height: 100%;
    border: none;
    background: #f5f5f5;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.single-product .gbk-buy__row--single .gbk-qstep:hover { background: #e8e8e8; }
.single-product .gbk-buy__row--single input.qty {
    width: 56px !important;
    height: 100% !important;
    border: none !important;
    border-left: 1.5px solid #ddd !important;
    border-right: 1.5px solid #ddd !important;
    border-radius: 0 !important;
    text-align: center;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    padding: 0 4px !important;
    -moz-appearance: textfield;
}
.single-product .gbk-buy__row--single input.qty::-webkit-outer-spin-button,
.single-product .gbk-buy__row--single input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
/* Higher specificity (includes the `button` element) so it beats the global
   `.woocommerce button.button.alt` rule — no border, full width, 48px like the
   Add Pallet button. */
.single-product .gbk-buy__row--single button.single_add_to_cart_button {
    flex: 1 1 auto !important;
    width: auto !important;
    height: 48px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #76aa24 !important;
    color: #fff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    padding: 0 20px !important;
    white-space: nowrap;
}
.single-product .gbk-buy__row--single button.single_add_to_cart_button:hover { background: #5d8a1a !important; }

/* ---- Pallet block ---- */
.gbk-buy__section--pallet { gap: 10px; }

/* Pallet qty stepper */
.gbk-buy__row--pallet .gbk-pallet-box__qty-ctrl {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}
.gbk-buy__row--pallet .gbk-pallet-qty-btn {
    width: 38px;
    height: 100%;
    border: none;
    background: #f5f5f5;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    line-height: 1;
}
.gbk-buy__row--pallet .gbk-pallet-qty-btn:hover { background: #e8e8e8; }
.gbk-buy__row--pallet #gbk-pallet-qty {
    width: 56px;
    height: 100%;
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    -moz-appearance: textfield;
}
.gbk-buy__row--pallet #gbk-pallet-qty::-webkit-outer-spin-button,
.gbk-buy__row--pallet #gbk-pallet-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Add Pallet to Cart — fills rest of row, black */
.gbk-buy__row--pallet .gbk-pallet-box__btn {
    flex: 1 1 auto;
    width: auto;
    height: 48px;
    padding: 0 20px;
    background: #0b0a0c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
}
.gbk-buy__row--pallet .gbk-pallet-box__btn:hover { background: #333; }
.gbk-buy__row--pallet .gbk-pallet-box__btn:disabled { background: #999; cursor: not-allowed; }

/* Guest "Log in to order" */
.gbk-buy__login { padding-top: 2px; }
.gbk-buy__login-link {
    display: inline-block;
    padding: 13px 28px;
    background: #0b0a0c;
    color: #fff !important;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: background 0.2s;
}
.gbk-buy__login-link:hover { background: #333; }


/* =============================================
   PRODUCT CARD — STOCK BADGES (v3.8.9)
   ============================================= */
.gbk-stock-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    line-height: 1.4;
    pointer-events: none;
}
.gbk-stock-badge--out {
    background: #e74c3c;
    color: #fff;
}
.gbk-stock-badge--low {
    background: #f39c12;
    color: #fff;
}
.gbk-stock-badge--in {
    background: #eff5e5;            /* solid equivalent of the old rgba green tint */
    color: #4a7a10;
    border: 1px solid #cfe1b2;     /* solid equivalent of the old translucent border */
}
/* Ensure badge sits above the image area inside WC loop item */
.woocommerce ul.products li.product .gbk-stock-badge {
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    margin-bottom: 0;
}
/* Make the thumbnail wrapper position:relative so absolute badge works */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    position: relative;
    display: block;
}

/* =============================================
   THREE-ROW HEADER REDESIGN (v3.9.6)
   Row 1: Logo + Primary Nav + Account/Cart (white bg)
   Row 2: Search bar (white bg, full width)
   Row 3: Parts category nav (black bg, white text, sticky)
   ============================================= */

/* Override old single-layer header */
.gbk-header {
    border-bottom: none;
    box-shadow: none;
    padding: 0;
}

/* --- Row 1: Logo + Nav + Actions --- */
.gbk-header-row1 {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.gbk-header-row1__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    width: 100%;
}
.gbk-header-row1 .gbk-logo {
    flex-shrink: 0;
}
.gbk-header-row1 .gbk-logo img,
.gbk-header-row1 .custom-logo {
    height: 52px;
    width: auto;
}
.gbk-primary-nav-center {
    flex: 1;
    min-width: 0;
}
.gbk-header-row1 .gbk-header-actions {
    flex-shrink: 0;
    margin-left: auto;
}

/* --- Row 2: Search bar (white bg, full width) --- */
.gbk-header-row2 {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
}
.gbk-header-row2 .gbk-search-bar-wrap {
    width: 100%;
}
.gbk-header-row2 .gbk-search-bar {
    width: 100%;
}

/* Search bar (shared) */
.gbk-header-search {
    flex: 1;
    max-width: 600px;
    position: relative;
}
.gbk-search-bar-wrap {
    position: relative;
}
.gbk-search-bar {
    display: flex;
    align-items: center;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    background: #f9f9f9;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.gbk-search-bar:focus-within {
    border-color: var(--gbk-green, #76aa24);
    box-shadow: 0 0 0 3px rgba(118,170,36,0.12);
    background: #fff;
}
.gbk-search-bar__icon {
    flex-shrink: 0;
    margin: 0 10px;
    color: #999;
}
.gbk-search-bar__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    color: #222;
    outline: none;
    min-width: 0;
}
.gbk-search-bar__input::placeholder {
    color: #aaa;
}
.gbk-search-bar__input--xref {
    flex: 0 0 160px;
    border-left: 1px solid #e0e0e0;
    color: var(--gbk-green, #76aa24);
    font-size: 0.85rem;
}
.gbk-search-bar__input--xref::placeholder {
    color: #bbb;
}
.gbk-search-bar__divider {
    width: 1px;
    height: 24px;
    background: #e0e0e0;
    flex-shrink: 0;
}
.gbk-search-bar__btn {
    background: var(--gbk-green, #76aa24);
    border: none;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.gbk-search-bar__btn:hover {
    background: #5d8a1a;
}

/* Search dropdown now anchored to search bar */
.gbk-search-bar-wrap .gbk-search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: unset;
    z-index: 1100;
}

/* Hide old search toggle button (replaced by inline bar) */
.gbk-search-toggle { display: none !important; }

/* --- Layer 2: Parts Category Nav Bar --- */
.gbk-parts-nav {
    background: var(--gbk-black, #0b0a0c);
    border-bottom: 3px solid var(--gbk-green, #76aa24);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
/* Row 3: Parts categories — BLACK bg, WHITE text, full width */
.gbk-parts-cat-row {
    background: var(--gbk-black, #0b0a0c);
    width: 100%;
}
.gbk-primary-nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.gbk-primary-nav-list li a {
    display: block;
    padding: 10px 16px;
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
/* Selected / hover — solid brand-green fill, no underline */
.gbk-primary-nav-list li a:hover,
.gbk-primary-nav-list li.current-menu-item > a {
    color: #fff;
    background: var(--gbk-green, #76aa24);
}

/* Divider — hidden since primary nav and parts are now on separate rows */
.gbk-parts-nav__divider {
    display: none;
}

/* Mobile nav drawer — hidden by default, shown when toggled */
.gbk-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    overflow-y: auto;
}
.gbk-mobile-nav.is-open {
    display: block;
}
.gbk-mobile-nav__inner {
    padding: 60px 30px 40px;
}
.gbk-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.gbk-mobile-nav__list li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gbk-mobile-nav__list li a:hover {
    color: var(--gbk-green, #76aa24);
}

/* Parts category links row — content list, bg handled by .gbk-parts-cat-row */
.gbk-parts-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}
.gbk-parts-nav__list::-webkit-scrollbar { display: none; }
.gbk-parts-nav__list li a {
    display: block;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
/* Selected / hover — solid brand-green fill, no underline */
.gbk-parts-nav__list li a:hover,
.gbk-parts-nav__list li.is-active > a {
    color: #fff;
    background: var(--gbk-green, #76aa24);
}
.gbk-parts-nav__all a {
    color: var(--gbk-green, #76aa24) !important;
    background: transparent !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    border-radius: 0;
}
.gbk-parts-nav__all a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--gbk-green, #76aa24) !important;
}

/* Mobile toggle in parts nav */
.gbk-parts-nav .gbk-mobile-toggle {
    display: none;
    margin-left: auto;
    padding: 8px 12px;
}
.gbk-parts-nav .gbk-mobile-toggle span {
    background: #fff;
}

/* =============================================
   HERO CAROUSEL (v3.9.0)
   Compact 320px height, 3 slides, auto-play
   ============================================= */
.gbk-hero-carousel {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: #0b0a0c;
}
.gbk-carousel__track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.gbk-carousel__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 55%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: block;
}
/* Inner wrapper fills the slide and centers content vertically */
.gbk-carousel__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
/* gbk-container inside inner: standard width + padding, left-aligned */
.gbk-carousel__inner > .gbk-container {
    width: 100%;
}
.gbk-carousel__slide--active {
    opacity: 1;
    z-index: 1;
}
.gbk-carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11,10,12,0.82) 0%, rgba(11,10,12,0.55) 55%, rgba(11,10,12,0.2) 100%);
    z-index: 1;
}
.gbk-carousel__overlay--green {
    background: linear-gradient(to right, rgba(11,10,12,0.88) 0%, rgba(30,60,10,0.65) 60%, rgba(11,10,12,0.25) 100%);
}
.gbk-carousel__content {
    max-width: 680px;
    text-align: left;
    position: relative;
    z-index: 2;
}
.gbk-carousel__eyebrow {
    display: inline-block;
    color: var(--gbk-green, #76aa24);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.gbk-carousel__title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.0;
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}
.gbk-carousel__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 520px;
}
.gbk-carousel__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.gbk-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.gbk-btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Carousel arrows */
.gbk-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.45);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.gbk-carousel__arrow:hover { background: rgba(118,170,36,0.8); }
.gbk-carousel__arrow--prev { left: 16px; }
.gbk-carousel__arrow--next { right: 16px; }

/* Carousel dots */
.gbk-carousel__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.gbk-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.gbk-carousel__dot--active {
    background: var(--gbk-green, #76aa24);
    transform: scale(1.3);
}

/* =============================================
   RESPONSIVE — DUAL HEADER + CAROUSEL
   ============================================= */
@media (max-width: 900px) {
    /* Hide parts nav list on mobile, show hamburger */
    .gbk-parts-nav__list { display: none; }
    .gbk-parts-nav .gbk-mobile-toggle { display: flex; }
    .gbk-parts-nav__inner { justify-content: space-between; padding: 4px 0; }

    /* Mobile: show primary nav inside parts nav drawer */
    .gbk-parts-nav.is-open .gbk-parts-nav__list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0b0a0c;
        z-index: 999;
        padding: 8px 0;
        border-bottom: 2px solid var(--gbk-green, #76aa24);
    }
    .gbk-parts-nav.is-open .gbk-parts-nav__list li a {
        padding: 10px 20px;
        border-bottom: none;
    }
    .gbk-parts-nav.is-open .gbk-primary-nav-wrap {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        z-index: 998;
        padding: 8px 0 12px;
    }

    /* Compact search on mobile */
    .gbk-search-bar__input--xref { display: none; }
    .gbk-search-bar__divider { display: none; }
    .gbk-header-search { max-width: 100%; }

    /* Carousel shorter on mobile */
    .gbk-hero-carousel { height: 320px; }
    .gbk-carousel__title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .gbk-carousel__desc { font-size: 0.9rem; }
}
@media (max-width: 600px) {
    .gbk-header-main__inner { gap: 10px; }
    .gbk-header-main .gbk-logo img,
    .gbk-header-main .custom-logo { height: 44px; }
    .gbk-hero-carousel { height: 260px; }
    .gbk-carousel__btns { gap: 8px; }
    .gbk-carousel__desc { display: none; }
    .gbk-btn-outline-white { display: none; }
}

/* =============================================
   PRODUCT CARD — CROSS REFERENCE (v3.9.9)
   Shown below product title in shop listing
   ============================================= */
.gbk-card-cross-ref {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 0 4px;
}
.gbk-card-cross-ref__label {
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}
.gbk-card-cross-ref__value {
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
}
/* Align with product title — match WooCommerce default card content padding */
.woocommerce ul.products li.product .gbk-card-cross-ref {
    padding: 8px 0 2px;
    margin: 0;
    display: block;
}

/* =============================================
   PRICING TIERS TABLE (v3.9.13)
   Shown below short description, above order boxes.
   Replaces WholesaleX auto-injected "Buy More, Save More" table.
   ============================================= */

/* Hide WholesaleX auto-injected tier table — ONLY on single product page */
/* Scoped to .single-product to avoid hiding cart/checkout price displays */
.single-product .wholesalex-tier-table-wrap,
.single-product .wsx-tier-table-wrap,
.single-product .wholesalex_tier_price_table,
.single-product .wsx_tier_price_table,
.single-product .wholesalex-quantity-discount-table,
.single-product .wsx-quantity-discount-table,
.single-product .wholesalex-discount-table,
.single-product .wsx-discount-table,
.single-product .wholesalex_discount_table,
.single-product .wholesalex-product-discount-wrap,
.single-product .wsx-product-discount-wrap,
.woocommerce-product-details__short-description + .wholesalex-tier-table-wrap {
    display: none !important;
}

/* ── Container ── */
.gbk-pricing-tiers {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    margin: 14px 0 18px;
    border: 2px solid #76aa24;
    border-radius: 8px;
    overflow: hidden;
}

/* ── Header bar ── */
.gbk-pricing-tiers__header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #76aa24;
    padding: 9px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}
.gbk-pricing-tiers__header svg {
    flex-shrink: 0;
    opacity: 0.9;
}

/* ── Table ── */
.gbk-pricing-tiers__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.gbk-pricing-tiers__table thead tr {
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
}
.gbk-pricing-tiers__table th {
    padding: 7px 16px;
    text-align: left;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.gbk-pricing-tiers__table td {
    padding: 10px 16px;
    vertical-align: middle;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    color: #222;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.4;
}
.gbk-pricing-tiers__table tbody tr:last-child td {
    border-bottom: none;
}

/* ── Wholesale row ── */
.gbk-pricing-tiers__row td {
    background: #fff;
    font-weight: 400;
}

/* ── Pallet price row ── */
.gbk-pricing-tiers__row--pallet td {
    background: #f5faea;
    font-weight: 600;
}
.gbk-pricing-tiers__pallet-price {
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #76aa24 !important;
}

/* ── BEST badge ── */
.gbk-pricing-tiers__badge {
    display: inline-block;
    background: #76aa24;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 7px;
    vertical-align: middle;
    text-transform: uppercase;
    line-height: 1.5;
}

/* ── Note column ── */
.gbk-pricing-tiers__note {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}
.gbk-pricing-tiers__note--pallet {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #76aa24 !important;
}
.gbk-pricing-tiers__savings {
    display: block;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5d8a1a;
    margin-top: 2px;
}

/* ── Hint text below table ── */
.gbk-pricing-tiers__hint {
    margin: 0;
    padding: 9px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #555;
    background: #f9f9f9;
    border-top: 1px solid #e8e8e8;
    line-height: 1.6;
}
.gbk-pricing-tiers__hint strong {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    color: #0b0a0c;
}

/* =============================================
   PALLET BOX — MULTIPLE HINT (v3.9.13)
   ============================================= */
.gbk-pallet-box__multiple-hint {
    margin: 0 0 10px;
    padding: 7px 12px;
    background: #fff8e6;
    border: 1px solid #f0d080;
    border-left: 3px solid #e6a800;
    border-radius: 4px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #7a5500;
    line-height: 1.5;
}
.gbk-pallet-box__multiple-hint strong {
    font-weight: 700;
    color: #5a3d00;
}

/* ── Hide WooCommerce low-stock "Only X left" text ─────────── */
/* Only hide the .low-stock class; keep In Stock and Out of Stock visible */
/* Note: gbk_product_card_stock_badge no longer outputs low-stock badge (v3.9.26) */
/* This CSS is a safety net for WooCommerce native low-stock text */
p.stock.low-stock {
    display: none !important;
}
/* ─────────────────────────────────────────────────────────── */


/* =============================================
   PRODUCT PAGE — SHIPPING ASSURANCE BAR (v3.9.27)
   ============================================= */
.gbk-shipping-assurance {
    display: flex;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 18px;
    background: #fafafa;
}
.gbk-shipping-assurance__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    flex: 1;
}
.gbk-shipping-assurance__item + .gbk-shipping-assurance__item {
    border-left: 1px solid #e8e8e8;
}
.gbk-shipping-assurance__item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #76aa24;
    stroke: #76aa24;
}
.gbk-shipping-assurance__item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gbk-shipping-assurance__item strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.gbk-shipping-assurance__item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .gbk-shipping-assurance {
        flex-direction: column;
    }
    .gbk-shipping-assurance__item + .gbk-shipping-assurance__item {
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
}
/* ─────────────────────────────────────────── */

/* =============================================
   NEW ARRIVALS SLIDER (v3.9.36)
   ============================================= */
.gbk-new-arrivals {
    background: #f9f9f9;
    padding: 48px 0 40px;
}
.gbk-new-arrivals__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.gbk-new-arrivals__header h2 {
    margin: 0;
}
.gbk-new-arrivals__nav {
    display: flex;
    gap: 8px;
}
.gbk-slider-btn {
    background: #fff;
    border: 2px solid #76aa24;
    color: #76aa24;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
    line-height: 1;
}
.gbk-slider-btn:hover {
    background: #76aa24;
    color: #fff;
}
.gbk-new-arrivals__track-wrap {
    overflow: hidden;
    position: relative;
}
.gbk-new-arrivals__track {
    display: flex;
    gap: 20px;
    transition: transform 0.35s ease;
    will-change: transform;
}
/* Card */
.gbk-na-card {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--gbk-black);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #ebebeb;
}
.gbk-na-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    transform: translateY(-3px);
    color: var(--gbk-black);
}
.gbk-na-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #76aa24;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
    text-transform: uppercase;
}
.gbk-na-card__img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f4f4f4;
}
.gbk-na-card__img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gbk-na-card:hover .gbk-na-card__img img {
    transform: scale(1.04);
}
.gbk-na-card__no-img {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #76aa24;
    font-size: 1.4rem;
    font-weight: 800;
}
.gbk-na-card__body {
    padding: 12px 14px 14px;
}
.gbk-na-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.gbk-na-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.gbk-na-card__price {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #76aa24;
}
.gbk-na-card__stock {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a7a10;
    background: #eef6d6;
    border: 1px solid #c6e49a;
    padding: 2px 7px;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .gbk-na-card { flex: 0 0 180px; }
    .gbk-na-card__img, .gbk-na-card__img img { height: 130px; }
}

/* =============================================================
   WOOCOMMERCE CART & CHECKOUT  (v3.9.40)
   Design-system pass: real page margins, readable type scale,
   clean two-column (items left, sticky summary right).
   Scoped to cart/checkout pages only — uses tokens from style.css.
   ============================================================= */

/* ---- Page container: give cart/checkout real page margins ---- */
body.woocommerce-cart .gbk-page-main,
body.woocommerce-checkout .gbk-page-main {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--gbk-sp-7) 40px var(--gbk-sp-8);
    font-size: var(--gbk-fs-base);
    line-height: 1.6;
    color: var(--gbk-dark);
}
body.woocommerce-cart .gbk-page-main td,
body.woocommerce-cart .gbk-page-main th,
body.woocommerce-checkout .gbk-page-main td,
body.woocommerce-checkout .gbk-page-main th,
body.woocommerce-checkout .gbk-page-main label {
    font-size: var(--gbk-fs-base);
}
body.woocommerce-cart .gbk-page-main .entry-title,
body.woocommerce-checkout .gbk-page-main .entry-title {
    font-size: var(--gbk-fs-2xl);
    margin-bottom: var(--gbk-sp-6);
}

/* ---- Two-column: items left, summary right ---- */
body.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: var(--gbk-sp-6);
    align-items: start;
}
body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper { grid-column: 1 / -1; }
body.woocommerce-cart .woocommerce-cart-form { margin: 0; }
body.woocommerce-cart .cart-collaterals,
body.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; float: none; margin: 0; }
@media (min-width: 901px) {
    body.woocommerce-cart .cart-collaterals { position: sticky; top: var(--gbk-sp-5); }
}

/* ---- Cart items table ---- */
body.woocommerce-cart table.shop_table {
    border: none;
    border-collapse: collapse;
    background: var(--gbk-white);
    border-radius: var(--gbk-radius);
}
body.woocommerce-cart table.shop_table thead th {
    font-family: 'Inter', Arial, sans-serif;
    font-size: var(--gbk-fs-sm);
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--gbk-muted);
    border-bottom: 2px solid var(--gbk-border);
    padding: 0 var(--gbk-sp-3) var(--gbk-sp-3);
}
body.woocommerce-cart table.shop_table td {
    padding: var(--gbk-sp-5) var(--gbk-sp-3);
    border-top: 1px solid var(--gbk-border);
    vertical-align: middle;
}
body.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: var(--gbk-white);
    border: 1px solid var(--gbk-border);
    border-radius: var(--gbk-radius-sm);
    padding: 4px;
}
body.woocommerce-cart td.product-name a {
    font-family: 'Inter', Arial, sans-serif;
    font-size: var(--gbk-fs-md);
    font-weight: 700;
    line-height: 1.35;
    color: var(--gbk-black);
}
body.woocommerce-cart td.product-name a:hover { color: var(--gbk-green); }
body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-subtotal {
    font-size: var(--gbk-fs-md);
    font-weight: 700;
    color: var(--gbk-dark);
}
/* Pallet meta (our green tag / nudge) */
body.woocommerce-cart .product-name .wc-item-meta,
body.woocommerce-cart .product-name dl.variation {
    margin-top: var(--gbk-sp-2);
    font-size: var(--gbk-fs-sm);
    color: var(--gbk-muted);
}
body.woocommerce-cart .product-name .wc-item-meta li,
body.woocommerce-cart .product-name .wc-item-meta p { margin: 3px 0; }

/* Quantity + remove */
body.woocommerce-cart .quantity input.qty {
    width: 74px; height: 46px;
    font-size: var(--gbk-fs-base);
    text-align: center;
    border: 1px solid var(--gbk-border);
    border-radius: var(--gbk-radius-sm);
}
body.woocommerce-cart td.product-remove a.remove {
    font-size: 22px; line-height: 32px;
    width: 34px; height: 34px;
    color: var(--gbk-muted) !important;
    border-radius: 50%;
}
body.woocommerce-cart td.product-remove a.remove:hover {
    background: #fde8e8; color: #c0392b !important;
}

/* Coupon / update row */
body.woocommerce-cart .cart .actions { padding-top: var(--gbk-sp-5); }
body.woocommerce-cart .cart .actions .coupon input.input-text {
    height: 46px; padding: 0 var(--gbk-sp-3);
    font-size: var(--gbk-fs-base);
    border: 1px solid var(--gbk-border);
    border-radius: var(--gbk-radius-sm);
}

/* ---- Order summary box ---- */
body.woocommerce-cart .cart_totals {
    background: var(--gbk-white);
    border: 1px solid var(--gbk-border);
    border-radius: var(--gbk-radius);
    box-shadow: var(--gbk-shadow);
    padding: var(--gbk-sp-5);
}
body.woocommerce-cart .cart_totals h2 {
    font-size: var(--gbk-fs-lg);
    margin: 0 0 var(--gbk-sp-4);
    padding-bottom: var(--gbk-sp-3);
    border-bottom: 1px solid var(--gbk-border);
}
body.woocommerce-cart .cart_totals table.shop_table { border: none; }
body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
    border: none;
    padding: var(--gbk-sp-3) 0;
    font-size: var(--gbk-fs-base);
}
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
    font-size: var(--gbk-fs-lg);
    font-weight: 800;
    color: var(--gbk-black);
    border-top: 2px solid var(--gbk-border);
    padding-top: var(--gbk-sp-4);
}

/* ---- Primary buttons (checkout / place order) ---- */
body.woocommerce-cart .wc-proceed-to-checkout { padding-top: var(--gbk-sp-4); }
body.woocommerce-cart a.checkout-button,
body.woocommerce-checkout #place_order,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    display: block;
    width: 100%;
    min-height: 56px;
    background: var(--gbk-green) !important;
    color: #fff !important;
    font-family: 'Inter', Arial, sans-serif;
    font-size: var(--gbk-fs-md) !important;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-align: center;
    padding: var(--gbk-sp-4) !important;
    border: none !important;
    border-radius: 30px !important;   /* round pill, like Add to Cart */
    box-shadow: none !important;
    transition: background .2s ease;
}
body.woocommerce-cart a.checkout-button:hover,
body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background: var(--gbk-green-dark) !important; }

/* "Free" highlighted green in the shipping badges */
.gbk-free { color: var(--gbk-green, #76aa24); font-weight: 700; }
body.woocommerce-cart .button,
body.woocommerce-cart input.button {
    font-size: var(--gbk-fs-base);
    padding: 12px 22px;
    border-radius: var(--gbk-radius-sm);
}

/* ---- Checkout two-column + readable fields ---- */
@media (min-width: 901px) {
    body.woocommerce-checkout form.checkout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: var(--gbk-sp-6);
        align-items: start;
    }
    body.woocommerce-checkout #customer_details { grid-column: 1; }
    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review { grid-column: 2; }
    body.woocommerce-checkout #order_review { position: sticky; top: var(--gbk-sp-5); }
}
body.woocommerce-checkout #order_review {
    background: var(--gbk-white);
    border: 1px solid var(--gbk-border);
    border-radius: var(--gbk-radius);
    box-shadow: var(--gbk-shadow);
    padding: var(--gbk-sp-5);
}
body.woocommerce-checkout h3 { font-size: var(--gbk-fs-lg); }
body.woocommerce-checkout .form-row label { font-size: var(--gbk-fs-base); font-weight: 600; margin-bottom: var(--gbk-sp-1); }
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .select2-container .select2-selection {
    font-size: var(--gbk-fs-base);
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--gbk-border);
    border-radius: var(--gbk-radius-sm);
}

/* ---- Block-based cart/checkout — readable type scale (older customers) ---- */
body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-cart .wc-block-cart,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout { font-size: var(--gbk-fs-base); }
/* Product name */
body.woocommerce-cart .wc-block-components-product-name {
    font-size: var(--gbk-fs-md);
    font-weight: 700;
    line-height: 1.35;
}
/* Prices */
body.woocommerce-cart .wc-block-cart-item__prices,
body.woocommerce-cart .wc-block-components-product-price {
    font-size: var(--gbk-fs-md);
}
/* Short description + item meta (incl. our pallet line) */
body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-product-details {
    font-size: var(--gbk-fs-sm);
    line-height: 1.5;
}
/* Quantity stepper */
body.woocommerce-cart .wc-block-components-quantity-selector,
body.woocommerce-cart .wc-block-components-quantity-selector__input { font-size: var(--gbk-fs-base); }
/* Totals sidebar */
body.woocommerce-cart .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__value { font-size: var(--gbk-fs-base); }
body.woocommerce-cart .wc-block-components-totals-footer-item,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-totals-footer-item,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: var(--gbk-fs-lg);
    font-weight: 800;
}
/* Primary button */
body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    font-size: var(--gbk-fs-md);
    font-weight: 800;
    min-height: 56px;
}
/* Block headings */
body.woocommerce-cart .wc-block-components-title,
body.woocommerce-checkout .wc-block-components-title { font-size: var(--gbk-fs-lg); }

/* ---- Responsive: stack to one column ---- */
@media (max-width: 900px) {
    body.woocommerce-cart .woocommerce { grid-template-columns: 1fr; }
    body.woocommerce-cart .gbk-page-main,
    body.woocommerce-checkout .gbk-page-main { padding: var(--gbk-sp-5) 18px var(--gbk-sp-7); }
}

/* ---- Shop / category card: pallet unit price on its own line below wholesale ---- */
/* Wholesale + Pallet lines: same small size; Pallet line is all grey (no green). */
.woocommerce ul.products li.product .price { font-size: var(--gbk-fs-base) !important; }
.gbk-loop-pallet { display: block; margin-top: 4px; font-size: var(--gbk-fs-base); line-height: 1.4; }
.gbk-loop-pallet__label { color: var(--gbk-muted); font-weight: 700; }
.gbk-loop-pallet__price,
.gbk-loop-pallet__price .woocommerce-Price-amount { color: #555; font-weight: 700; }
.gbk-loop-pallet__note { margin-left: 4px; color: var(--gbk-muted); font-weight: 400; font-size: var(--gbk-fs-sm); }

/* =============================================================
   PRODUCT PAGE — GUEST "REQUEST A QUOTE" + MODAL  (v3.9.50)
   ============================================================= */
.gbk-quote-wrap { margin: 16px 0; }
.gbk-quote-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gbk-green, #76aa24); color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    padding: 13px 28px; border: none; border-radius: 8px;
    cursor: pointer; transition: background .2s ease;
}
.gbk-quote-btn:hover { background: var(--gbk-green-dark, #5d8a1a); }

.gbk-quote-modal { position: fixed; inset: 0; z-index: 99999; display: none; }
.gbk-quote-modal.is-open { display: block; }
.gbk-quote-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.gbk-quote-modal__box {
    position: relative; max-width: 520px; width: calc(100% - 32px);
    margin: 8vh auto 0; background: #fff;
    border-radius: var(--gbk-radius, 10px); box-shadow: 0 20px 60px rgba(0,0,0,.3);
    padding: 28px;
}
.gbk-quote-modal__close {
    position: absolute; top: 10px; right: 14px;
    background: none; border: none; font-size: 28px; line-height: 1;
    color: #999; cursor: pointer;
}
.gbk-quote-modal__close:hover { color: #333; }
.gbk-quote-modal__box h3 { font-size: var(--gbk-fs-xl); margin: 0 0 4px; }
.gbk-quote-modal__product { color: var(--gbk-muted, #6b7280); font-size: var(--gbk-fs-sm); margin: 0 0 18px; }
.gbk-quote-modal__product span { color: #999; }
.gbk-quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gbk-quote-grid__full { grid-column: 1 / -1; }
.gbk-quote-form input, .gbk-quote-form textarea {
    width: 100%; font-size: var(--gbk-fs-base);
    padding: 11px 13px; border: 1px solid var(--gbk-border, #e5e5e5);
    border-radius: var(--gbk-radius-sm, 6px); font-family: 'Poppins', Arial, sans-serif;
}
.gbk-quote-form input:focus, .gbk-quote-form textarea:focus {
    outline: none; border-color: var(--gbk-green, #76aa24);
}
.gbk-quote-form textarea { margin-top: 10px; resize: vertical; }
.gbk-quote-submit {
    width: 100%; margin-top: 14px;
    background: var(--gbk-green, #76aa24); color: #fff;
    font-family: 'Inter', Arial, sans-serif; font-size: var(--gbk-fs-md);
    font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
    padding: 14px; border: none; border-radius: 30px; cursor: pointer;
    transition: background .2s ease;
}
.gbk-quote-submit:hover { background: var(--gbk-green-dark, #5d8a1a); }
.gbk-quote-thanks {
    background: #eff5e5; color: #3d6b0e; font-weight: 700;
    padding: 16px; border-radius: var(--gbk-radius-sm, 6px); text-align: center;
}
@media (max-width: 480px) {
    .gbk-quote-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SIDE CART DRAWER (v3.9.55)
   ============================================= */
.gbk-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 100000;
    visibility: hidden;
    pointer-events: none;
}
.gbk-cart-drawer.is-open { visibility: visible; pointer-events: auto; }

.gbk-cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gbk-cart-drawer.is-open .gbk-cart-drawer__overlay { opacity: 1; }

.gbk-cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 90vw;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.gbk-cart-drawer.is-open .gbk-cart-drawer__panel { transform: translateX(0); }

.gbk-cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.gbk-cart-drawer__title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0b0a0c;
}
.gbk-cart-drawer__title svg { color: #76aa24; }
.gbk-cart-drawer__close {
    background: none;
    border: none;
    font-size: 1.9rem;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}
.gbk-cart-drawer__close:hover { color: #0b0a0c; }

/* Scrollable mini-cart body */
.gbk-cart-drawer .widget_shopping_cart_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}
/* `ul` qualifier + !important: WooCommerce core ships
   `.woocommerce ul.cart_list, .woocommerce ul.product_list_widget { padding:0 }`
   (specificity 0,2,1) which otherwise beats our drawer padding on every page that
   carries the `.woocommerce` body class (product / shop / cart), collapsing the
   list to the edges. Forcing it keeps the drawer identical everywhere. (v3.9.69) */
.gbk-cart-drawer ul.woocommerce-mini-cart {
    flex: 1;
    overflow-y: auto;
    margin: 0 !important;
    padding: 14px 20px !important;
    list-style: none;
}
.gbk-cart-drawer .woocommerce-mini-cart__empty-message {
    padding: 40px 20px;
    text-align: center;
    color: #888;
    font-family: 'Inter', sans-serif;
}
.gbk-cart-drawer li.woocommerce-mini-cart-item {
    position: relative;
    padding: 14px 28px 14px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
    list-style: none;
}
/* Product link = image + name inline */
.gbk-cart-drawer li.woocommerce-mini-cart-item > a:not(.remove) {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0b0a0c;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
}
.gbk-cart-drawer li.woocommerce-mini-cart-item img {
    width: 52px !important;
    height: 52px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 6px;
    float: none !important;
    margin: 0 !important;
    flex-shrink: 0;
}
/* qty line — stepper on the left, total + unit price on the right */
.gbk-cart-drawer .woocommerce-mini-cart-item .quantity {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding-left: 64px;
    font-family: 'Inter', sans-serif;
}
.gbk-cart-drawer .gbk-mini-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 7px;
    overflow: hidden;
    height: 34px;
    flex-shrink: 0;
}
.gbk-cart-drawer .gbk-mini-step {
    width: 30px;
    height: 100%;
    border: none;
    background: #f5f5f5;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.gbk-cart-drawer .gbk-mini-step:hover { background: #e8e8e8; }
.gbk-cart-drawer .gbk-mini-input {
    width: 40px;
    height: 100%;
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0;
    -moz-appearance: textfield;
}
.gbk-cart-drawer .gbk-mini-input::-webkit-outer-spin-button,
.gbk-cart-drawer .gbk-mini-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gbk-cart-drawer .gbk-mini-qty__right { text-align: right; line-height: 1.25; }
.gbk-cart-drawer .gbk-mini-qty__total {
    display: block;
    color: #0b0a0c;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
}
.gbk-cart-drawer .gbk-mini-qty__total .amount { color: inherit; }
.gbk-cart-drawer .gbk-mini-qty__unit { display: block; color: #999; font-size: 0.72rem; }
.gbk-cart-drawer .gbk-mini-qty__unit .amount { color: inherit; }

/* Dim the drawer while a quantity update is in flight */
.gbk-cart-drawer.gbk-cart-loading .widget_shopping_cart_content {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.15s;
}
.gbk-cart-drawer a.remove {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 22px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: #c0392b !important;
    font-size: 16px;
    background: #f7f7f7;
}
.gbk-cart-drawer a.remove:hover { background: #c0392b; color: #fff !important; }

/* Footer: subtotal + buttons */
.gbk-cart-drawer p.woocommerce-mini-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0b0a0c;
    flex-shrink: 0;
}
.gbk-cart-drawer p.woocommerce-mini-cart__total .amount { color: #76aa24; }
.gbk-cart-drawer p.woocommerce-mini-cart__buttons {
    margin: 0;
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
/* !important throughout so the drawer looks identical on every page — otherwise
   the global `.woocommerce a.button` rules (which use !important) restyle these
   buttons on product/shop/cart pages but not on the homepage. (v3.9.59) */
.gbk-cart-drawer p.woocommerce-mini-cart__buttons a {
    flex: 1 !important;
    text-align: center !important;
    padding: 13px 10px !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    transition: background 0.2s, opacity 0.2s !important;
}
.gbk-cart-drawer p.woocommerce-mini-cart__buttons a:first-child {
    background: #f0f0f0 !important;
    color: #0b0a0c !important;
}
.gbk-cart-drawer p.woocommerce-mini-cart__buttons a:first-child:hover { background: #e2e2e2 !important; }
.gbk-cart-drawer p.woocommerce-mini-cart__buttons a.checkout {
    background: #76aa24 !important;
    color: #fff !important;
}
.gbk-cart-drawer p.woocommerce-mini-cart__buttons a.checkout:hover { background: #5d8a1a !important; }

/* Lock body scroll when drawer is open */
body.gbk-cart-open { overflow: hidden; }

@media (max-width: 480px) {
    .gbk-cart-drawer__panel { width: 100%; max-width: 100%; }
}

/* ---- Mini-cart: never show item meta (pallet reminders etc.) in the drawer.
   The drawer stays minimal — product / qty / price only. (v3.9.60) ---- */
.gbk-cart-drawer dl.variation,
.gbk-cart-drawer .woocommerce-mini-cart-item dl,
.gbk-cart-drawer .woocommerce-mini-cart-item .gbk-cart-tag {
    display: none !important;
}
.gbk-cart-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.01em;
}
.gbk-cart-tag--pallet { background: #e8f5d8; color: #3d6b0e; }
.gbk-cart-tag--more   { background: #fff3e0; color: #a05a00; }
