/*
Theme Name: Prince Building Material Theme
Author: Prince Building Material
Description: Custom corporate theme for Fiber Reinforced Concrete Spacers
Version: 1.1.0

PBM CSS ARCHITECTURE
--------------------
This file is now the single stylesheet for the theme.
Page-specific theme CSS that used to live in blog.css, contact.css and
product.css has been consolidated here. Plugin CSS remains inside plugins.
*/

/* ==========================================================
   1. DESIGN TOKENS / GLOBAL RESET
========================================================== */
:root {
    --pbm-green: #084b27;
    --pbm-green-dark: #063c20;
    --pbm-green-bright: #20cf67;
    --pbm-text: #334155;
    --pbm-text-dark: #18231e;
    --pbm-muted: #647069;
    --pbm-bg: #f5f7f9;
    --pbm-light: #f4f7f5;
    --pbm-white: #ffffff;
    --pbm-border: #e3e9e5;
    --pbm-dark: #111111;
    --pbm-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    /* Backward-compatible theme variables used by existing markup. */
    --primary-green: var(--pbm-green);
    --accent-green: var(--pbm-green-bright);
    --dark-bg: var(--pbm-dark);
    --light-bg: var(--pbm-bg);
    --text-color: var(--pbm-text-dark);
    --text-muted: var(--pbm-muted);
    --border-color: var(--pbm-border);
    --font-main: var(--pbm-font);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--pbm-font);
    color: var(--pbm-text-dark);
    background: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    padding: 0;
}

.page-content {
    padding: 3rem 0;
}

h1,
h2,
h3,
h4 {
    color: var(--pbm-text-dark);
    margin-top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    border: 1px solid var(--pbm-border);
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   2. HEADER / NAVIGATION
========================================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--pbm-border);

    position: sticky;
    top: 0;
    z-index: 1000;

    transition:
        box-shadow 0.45s ease,
        background-color 0.45s ease;
}


/* =========================================================
   HEADER INNER
========================================================= */
.header-inner {
    position: relative;

    max-width: 1500px;
    height: 150px;

    margin: 0 auto;
    padding: 0 1.5rem;
}
/* =========================================================
   LOGO
========================================================= */

.site-logo {
    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    justify-content: center;

    margin: 0;

    transition:
        top 0.4s ease,
        left 0.4s ease,
        transform 0.4s ease;
}


.site-logo .custom-logo-link {
    display: block;
    line-height: 0;
}


.site-logo .custom-logo {
    display: block;

    width: auto;
    height: auto;

    max-width: 150px;
    max-height: 75px;

    transition:
        max-width 0.4s ease,
        max-height 0.4s ease;
}


.site-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
    color: var(--pbm-green);
}


.site-logo-text strong {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}


.site-logo-text span {
    margin-top: 0.3rem;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;

    color: var(--pbm-text-dark);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    position: absolute;

    left: 50%;
    bottom: 14px;

    transform: translateX(-50%);

    width: auto;

    transition:
        left 0.45s ease,
        right 0.45s ease,
        top 0.45s ease,
        bottom 0.45s ease,
        transform 0.45s ease;
}

.main-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.75rem;

    margin: 0;
    padding: 0;

    list-style: none;
}


.main-navigation .nav-links li {
    margin: 0;
}


.main-navigation .nav-links a {
    display: block;

    padding: 0.5rem 1rem;

    color: var(--pbm-text-dark);

    text-decoration: none;

    font-size: 1rem;
    font-weight: 700;

    border-radius: 999px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.main-navigation .nav-links a:hover {
    background: #eeeeee;
    color: var(--pbm-green);
}


.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
    background: var(--pbm-green);
    color: #ffffff;
}

/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.site-header.scrolled .header-inner {
    height: 72px;
}


/* =========================================================
   LOGO - SMOOTH MOVE LEFT
========================================================= */

.site-header.scrolled .site-logo {
    top: 50%;
    left: 1.5rem;

    transform: translateY(-50%);

    transition:
        top 0.45s ease,
        left 0.45s ease,
        transform 0.45s ease;
}

.site-header.scrolled .site-logo .custom-logo {
    max-width: 105px;
    max-height: 52px;

    transition:
        max-width 0.45s ease,
        max-height 0.45s ease;
}


/* =========================================================
   NAVIGATION - SMOOTH MOVE RIGHT
========================================================= */

.site-header.scrolled .main-navigation {
    top: 50%;
    bottom: auto;

    left: auto;
    right: 1.5rem;

    transform: translateY(-50%);

    transition:
        top 0.45s ease,
        right 0.45s ease,
        bottom 0.45s ease,
        transform 0.45s ease;
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    background: transparent;
    border: 0;

    cursor: pointer;
}


.mobile-toggle span {
    display: block;

    width: 26px;
    height: 3px;

    margin: 5px auto;

    background: var(--pbm-text-dark);

    border-radius: 3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .header-inner {
        height: 85px;
        padding: 0 1rem;
    }

    .site-logo {
        top: 50%;
        left: 1rem;

        transform: translateY(-50%);
    }

    .site-logo .custom-logo {
        max-width: 110px;
        max-height: 55px;
    }

    .mobile-toggle {
        display: block;

        position: absolute;

        right: 1rem;
        top: 50%;

        transform: translateY(-50%);

        z-index: 10;
    }

    .main-navigation {
        display: none;
    }

    .site-header.scrolled .header-inner {
        height: 65px;
    }

    .site-header.scrolled .site-logo {
        left: 1rem;
    }

    .site-header.scrolled .site-logo .custom-logo {
        max-width: 95px;
        max-height: 48px;
    }
}
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: var(--pbm-text-dark);
    border-radius: 3px;
}

/* ==========================================================
   3. HOMEPAGE — GUTENBERG
========================================================== */
.pbm-hero,
.pbm-stats,
.pbm-values-section,
.pbm-products-section,
.pbm-knowledge-section,
.pbm-testimonials-section {
    box-sizing: border-box;
}

.pbm-hero {
    min-height: 560px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    overflow: hidden;
}

.pbm-hero .wp-block-cover__background {
    background: #063f24 !important;
    opacity: 0.70 !important;
}

.pbm-hero .wp-block-cover__image-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important;
    transform: none !important;
}

.pbm-hero-content {
    width: 100%;
    max-width: 1500px !important;
    margin: 0 auto;
}

.pbm-hero-title {
    max-width: 1400px;
    margin: 0 auto 25px !important;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pbm-hero-description {
    max-width: 1450px;
    margin: 0 auto 45px !important;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.55;
}

.pbm-hero-buttons {
    gap: 20px !important;
}

.pbm-hero-buttons .wp-block-button__link {
    min-width: 280px;
    padding: 17px 32px;
    border-radius: 50px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pbm-btn-datasheet .wp-block-button__link {
    background: #ffffff !important;
    color: var(--pbm-green) !important;
}

.pbm-btn-whatsapp .wp-block-button__link {
    background: #20cf67 !important;
    color: #ffffff !important;
}

.pbm-hero-buttons .wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* Stats */
.pbm-stats {
    width: 100%;
    margin: 0 !important;
    gap: 0 !important;
    background: #ffffff;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
}

.pbm-stat {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 15px;
    border-right: 1px solid #222222;
}

.pbm-stat:last-child {
    border-right: none;
}

.pbm-stat h2 {
    margin: 0 0 8px !important;
    color: var(--pbm-green);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.pbm-stat p {
    margin: 0 !important;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Shared headings */
.pbm-section-heading {
    max-width: 1400px !important;
    margin: 0 auto 65px !important;
    text-align: center;
}

.pbm-section-title {
    margin: 0 0 12px !important;
    color: var(--pbm-green);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.pbm-section-subtitle {
    margin: 0 auto !important;
    max-width: 1100px;
    color: var(--pbm-text);
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Values */
.pbm-values-section {
    margin: 0 !important;
    padding: 80px 40px 0 !important;
    background: #ffffff;
}

.pbm-values-section > .pbm-section-heading {
    margin-bottom: 75px !important;
}

.pbm-value-grid {
    max-width: 1380px !important;
    margin: 0 auto !important;
    gap: 40px !important;
}

.pbm-value-card {
    min-height: 270px;
    padding: 34px 35px !important;
    background: var(--pbm-green);
    color: #ffffff;
    border-radius: 48px;
}

.pbm-value-card h3 {
    margin: 0 0 4px !important;
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.05;
}

.pbm-value-card p {
    margin: 0 !important;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.55;
}

/* Homepage product catalog */
.pbm-products-section {
    margin: 0 !important;
    padding: 140px 40px 80px !important;
    background: var(--pbm-bg);
}

.pbm-products-section > .pbm-section-heading {
    margin-bottom: 80px !important;
}

.pbm-product-grid {
    max-width: 1400px !important;
    margin: 0 auto 45px !important;
    gap: 30px !important;
    align-items: stretch !important;
}

.pbm-product-card {
    overflow: hidden;
    padding: 20px 20px 38px !important;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 8px 12px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pbm-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 16px 18px rgba(0, 0, 0, 0.22);
}

.pbm-product-card .wp-block-image {
    width: 100%;
    margin: 0 0 35px !important;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
    box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.22);
}

.pbm-product-card .wp-block-image img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
}

.pbm-product-name {
    display: table;
    min-width: 235px;
    margin: 0 auto 22px !important;
    padding: 10px 25px;
    background: var(--pbm-green);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.pbm-product-card > p {
    max-width: 370px;
    margin: 0 auto !important;
    color: var(--pbm-text);
    font-size: 17px;
    line-height: 1.5;
}

/* Knowledge hub */
.pbm-knowledge-section {
    margin: 0 !important;
    padding: 80px 40px !important;
    background: #ffffff;
    text-align: center;
}

.pbm-knowledge-title {
    margin: 0 auto 25px !important;
    color: var(--pbm-green);
    font-size: 30px;
    font-weight: 800;
}

.pbm-series-title {
    margin: 0 auto 30px !important;
    color: #111111;
    font-size: 21px;
    font-weight: 700;
}

.pbm-knowledge-description {
    max-width: 1300px;
    margin: 0 auto 35px !important;
    color: var(--pbm-text);
    font-size: 18px;
    line-height: 1.65;
}

.pbm-primary-button .wp-block-button__link {
    padding: 15px 30px;
    background: #30363b !important;
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 17px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pbm-primary-button .wp-block-button__link:hover {
    background: var(--pbm-green) !important;
    transform: translateY(-2px);
}

/* Testimonials — final consolidated version */
.pbm-testimonials-section {
    margin: 0 !important;
    padding: 70px 40px 90px !important;
    background: var(--pbm-bg);
}

.pbm-testimonials-section > .pbm-section-title {
    margin-bottom: 70px !important;
}

.pbm-testimonial-grid {
    display: flex !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    gap: 0 !important;
    align-items: stretch !important;
}

.pbm-testimonial-grid > .wp-block-column {
    margin: 0 !important;
}

.pbm-testimonial {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pbm-testimonial-box {
    min-height: 200px;
    flex: 1;
    padding: 32px 30px 10px !important;
    background: transparent;
}

.pbm-quote-mark {
    margin: 0 0 18px !important;
    color: var(--pbm-green);
    font-size: 48px;
    font-weight: 800;
    line-height: 0.8;
}

.pbm-testimonial-box p:not(.pbm-quote-mark) {
    margin: 0 !important;
    color: var(--pbm-text);
    font-size: 17px;
    line-height: 1.55;
}

.pbm-testimonial > h3 {
    margin: 5px 30px 0 !important;
    color: var(--pbm-green);
    font-size: 20px;
    font-weight: 800;
    text-align: left !important;
}

.pbm-testimonial > .pbm-testimonial-role {
    margin: 2px 30px 0 !important;
    color: #718096;
    font-size: 15px;
    text-align: left !important;
}

.pbm-testimonial > p:last-child {
    margin: 0 30px 35px !important;
    color: #718096;
    font-size: 15px;
    text-align: left !important;
}

/* ==========================================================
   4. ABOUT PAGE
========================================================== */
.pbm-about-page {
    background: #f5f7f6;
    color: #17231d;
}

.pbm-about-hero {
    background: #0d5a35;
    padding: 90px 30px;
    margin: 0;
    max-width: none !important;
}

.pbm-about-hero-title {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.pbm-about-content {
    max-width: 1180px !important;
    margin: 0 auto;
    padding: 90px 30px;
}

.pbm-about-section {
    background: #ffffff;
    padding: 48px 52px;
    margin-bottom: 30px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.pbm-about-section:last-child {
    margin-bottom: 0;
}

.pbm-about-section-title {
    color: #075d34;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px;
}

.pbm-about-section-title::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    background: var(--pbm-green-bright);
    border-radius: 10px;
    margin-top: 14px;
}

.pbm-about-section p {
    color: #34423b;
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

.pbm-quality-highlight {
    background: #f0f8f4;
    border-left: 5px solid #0d6a3e;
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 0 14px 14px 0;
}

.pbm-quality-highlight p {
    color: #244235;
    font-size: 16px;
    line-height: 1.8;
}

.pbm-edge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbm-edge-list li {
    position: relative;
    padding: 0 0 0 38px;
    margin-bottom: 22px;
    color: #34423b;
    font-size: 17px;
    line-height: 1.7;
}

.pbm-edge-list li:last-child {
    margin-bottom: 0;
}

.pbm-edge-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #08723f;
    font-size: 21px;
    font-weight: 800;
}

.pbm-edge-list strong {
    color: #075d34;
}

.pbm-why-header {
    max-width: none !important;
    margin: 0;
    background: #0d5a35;
    padding: 75px 30px;
}

.pbm-why-title {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
}

.pbm-why-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.pbm-advantages {
    max-width: 1180px !important;
    margin: 0 auto;
    padding: 90px 30px 110px;
}

.pbm-advantages-title {
    color: #075d34;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 45px;
}

.pbm-advantage-card {
    position: relative;
    background: #ffffff;
    padding: 36px 42px;
    margin-bottom: 22px;
    border-radius: 18px;
    border: 1px solid #e5ece8;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pbm-advantage-card:hover {
    transform: translateY(-4px);
    border-color: #b8dbc8;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.09);
}

.pbm-advantage-card:last-child {
    margin-bottom: 0;
}

.pbm-advantage-card h4 {
    color: #075d34;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 13px;
}

.pbm-advantage-card p {
    color: #4b5852;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

/* ==========================================================
   5. PRODUCTS PAGE — CURRENT GUTENBERG STRUCTURE

   IMPORTANT: The old PHP product-row system is intentionally NOT
   included here. The current Products page uses the pbm-product-detail
   Gutenberg structure from the site's Additional CSS.
========================================================== */
.pbm-products-hero {
    margin: 0 !important;
    padding: 100px 30px 95px !important;
    background: linear-gradient(rgba(5, 65, 34, 0.92), rgba(5, 65, 34, 0.92));
    color: #ffffff;
}

.pbm-products-hero-title {
    margin: 0 0 20px !important;
    color: #ffffff !important;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 1px;
}

.pbm-products-hero-text {
    max-width: 900px;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.6;
}

.pbm-products-intro {
    margin: 0 !important;
    padding: 75px 30px 65px !important;
    background: #ffffff;
    text-align: center;
}

.pbm-products-section-title {
    margin: 0 0 14px !important;
    color: var(--pbm-green);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pbm-products-section-text {
    max-width: 900px;
    margin: 0 auto !important;
    color: var(--pbm-text);
    font-size: 18px;
    line-height: 1.65;
}

.pbm-products-catalog {
    margin: 0 !important;
    padding: 20px 30px 100px !important;
    background: var(--pbm-bg);
}

.pbm-product-detail {
    max-width: 1380px !important;
    margin: 45px auto !important;
    padding: 55px !important;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.09);
}

.pbm-product-detail-alt {
    background: #eef4f0;
}

.pbm-product-detail-row {
    margin: 0 !important;
    gap: 65px !important;
    align-items: center !important;
}

.pbm-product-media {
    min-width: 0;
}

.pbm-product-image-placeholder {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px !important;
    background: linear-gradient(135deg, #edf2ef, #dfe9e3);
    border: 2px dashed rgba(8, 75, 39, 0.25);
    border-radius: 18px;
}

.pbm-product-image-placeholder p {
    margin: 0 !important;
    color: #718096;
    font-size: 16px;
}

.pbm-product-media > .wp-block-image {
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.pbm-product-media > .wp-block-image img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 18px;
}

.pbm-product-info {
    padding: 10px 0;
}

.pbm-product-detail-title {
    position: relative;
    margin: 0 0 25px !important;
    padding-bottom: 17px;
    color: var(--pbm-green);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.15;
}

.pbm-product-detail-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--pbm-green-bright);
    border-radius: 10px;
}

.pbm-product-info > p:not(.pbm-coming-soon-label) {
    margin: 0 0 25px !important;
    color: var(--pbm-text);
    font-size: 18px;
    line-height: 1.7;
}

.pbm-product-features {
    margin: 0 0 32px !important;
    padding: 0 !important;
    list-style: none;
}

.pbm-product-features li {
    position: relative;
    margin: 0 0 13px;
    padding-left: 31px;
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
}

.pbm-product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pbm-green);
    font-size: 18px;
    font-weight: 800;
}

.pbm-product-actions {
    margin-top: 10px !important;
}

.pbm-product-enquiry .wp-block-button__link {
    padding: 14px 31px;
    background: var(--pbm-green) !important;
    color: #ffffff !important;
    border: 2px solid var(--pbm-green);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pbm-product-enquiry .wp-block-button__link:hover {
    background: var(--pbm-green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 75, 39, 0.2);
}

.pbm-coming-soon-label {
    display: inline-block;
    margin: 0 0 16px !important;
    padding: 7px 17px;
    background: #e6f7ed;
    color: var(--pbm-green);
    border: 1px solid rgba(8, 75, 39, 0.18);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.pbm-products-cta {
    margin: 0 !important;
    padding: 85px 30px !important;
    background: var(--pbm-green);
    color: #ffffff;
    text-align: center;
}

.pbm-products-cta h2 {
    max-width: 900px;
    margin: 0 auto 18px !important;
    color: #ffffff !important;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.2;
}

.pbm-products-cta > p {
    max-width: 800px;
    margin: 0 auto 35px !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.pbm-products-cta-buttons {
    gap: 15px !important;
}

.pbm-cta-primary .wp-block-button__link,
.pbm-cta-secondary .wp-block-button__link {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pbm-cta-primary .wp-block-button__link {
    background: #ffffff !important;
    color: var(--pbm-green) !important;
    border: 2px solid #ffffff;
}

.pbm-cta-secondary .wp-block-button__link {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pbm-cta-primary .wp-block-button__link:hover,
.pbm-cta-secondary .wp-block-button__link:hover {
    transform: translateY(-3px);
}

.pbm-cta-primary .wp-block-button__link:hover {
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.18);
}

.pbm-cta-secondary .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================
   6. BLOG PAGE
========================================================== */
.blog-hero {
    background: var(--pbm-green);
    color: #ffffff;
    padding: 90px 30px;
}

.blog-hero-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.blog-hero-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-hero-text {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.7;
}

.blog-intro {
    padding: 75px 30px 55px;
    text-align: center;
}

.blog-intro-title {
    margin: 0 0 18px;
    color: var(--pbm-green);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--pbm-muted);
    font-size: 17px;
    line-height: 1.7;
}

.blog-posts-section {
    background: var(--pbm-bg);
    padding: 30px 30px 90px;
}

.pbm-blog-query {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.blog-post-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.11);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    margin: 0 !important;
    overflow: hidden;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.035);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 27px 28px 30px !important;
}

.blog-card-category {
    margin: 0 0 14px !important;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-category a {
    display: inline-block;
    padding: 7px 12px;
    color: var(--pbm-green);
    background: #eaf4ee;
    border-radius: 100px;
    text-decoration: none;
}

.blog-card-title {
    margin: 0 0 14px !important;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 800;
}

.blog-card-title a {
    color: var(--pbm-text-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--pbm-green);
}

.blog-card-excerpt {
    margin: 0 0 24px !important;
    color: var(--pbm-muted);
    font-size: 15px;
    line-height: 1.7;
}

.blog-card-excerpt p {
    margin: 0;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto !important;
    color: var(--pbm-green) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.blog-card-link:hover {
    color: var(--pbm-green-dark) !important;
    transform: translateX(3px);
}

.blog-pagination {
    margin-top: 55px !important;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination .page-numbers {
    text-decoration: none;
    color: var(--pbm-green);
    font-weight: 700;
}

.blog-pagination .page-numbers.current {
    color: #ffffff;
    background: var(--pbm-green);
    padding: 8px 13px;
    border-radius: 8px;
}

.blog-no-posts {
    padding: 50px 20px;
    color: var(--pbm-muted);
    font-size: 17px;
}

/* ==========================================================
   7. CONTACT PAGE
========================================================== */
.pbm-contact-page {
    background: #ffffff;
    color: var(--pbm-text-dark);
}

.pbm-contact-hero {
    min-height: 430px !important;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 !important;
    max-width: none !important;
    background-position: center;
    background-size: cover;
}

.pbm-contact-hero .wp-block-cover__background {
    background: linear-gradient(90deg, rgba(3, 55, 31, 0.92) 0%, rgba(4, 70, 40, 0.78) 45%, rgba(0, 0, 0, 0.42) 100%) !important;
    opacity: 1 !important;
}

.pbm-contact-hero .wp-block-cover__inner-container {
    width: 100%;
}

.pbm-contact-hero-inner {
    width: min(1180px, calc(100% - 60px));
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.pbm-contact-hero-title {
    max-width: 720px;
    margin: 0 0 22px !important;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.pbm-contact-hero-text {
    max-width: 690px;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.75;
}

.pbm-contact-main {
    width: min(1180px, calc(100% - 60px));
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 95px 0 100px !important;
}

.pbm-contact-heading {
    max-width: 760px !important;
    margin: 0 0 50px !important;
    padding: 0 !important;
}

.pbm-contact-heading h2 {
    margin: 0 0 16px;
    color: var(--pbm-green);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
}

.pbm-contact-heading h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 17px;
    background: var(--pbm-green-bright);
    border-radius: 20px;
}

.pbm-contact-heading p {
    margin: 0;
    color: var(--pbm-muted);
    font-size: 16px;
    line-height: 1.75;
}

.pbm-contact-columns {
    display: flex;
    align-items: stretch;
    gap: 55px;
    margin: 0 !important;
}

.pbm-contact-form-column {
    padding: 42px 44px;
    background: #ffffff;
    border: 1px solid var(--pbm-border);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(17, 48, 32, 0.07);
}

.pbm-contact-form-column > h3 {
    margin: 0 0 10px;
    color: var(--pbm-green);
    font-size: 25px;
    font-weight: 800;
}

.pbm-contact-form-column > p {
    margin: 0 0 30px;
    color: var(--pbm-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Actual PBM enquiry shortcode form */
.pbm-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.pbm-enquiry-form .pbm-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pbm-enquiry-form input,
.pbm-enquiry-form textarea,
.pbm-enquiry-form select {
    width: 100%;
    padding: 14px 16px;
    color: var(--pbm-text-dark);
    background: #ffffff;
    border: 1px solid #d8e1dc;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pbm-enquiry-form input::placeholder,
.pbm-enquiry-form textarea::placeholder {
    color: #8a958f;
}

.pbm-enquiry-form input:focus,
.pbm-enquiry-form textarea:focus,
.pbm-enquiry-form select:focus {
    border-color: var(--pbm-green-bright);
    box-shadow: 0 0 0 3px rgba(32, 207, 103, 0.12);
}

.pbm-enquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}

.pbm-enquiry-form button[type="submit"] {
    align-self: flex-start;
    padding: 14px 30px;
    color: #ffffff;
    background: var(--pbm-green);
    border: 2px solid var(--pbm-green);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pbm-enquiry-form button[type="submit"]:hover {
    background: var(--pbm-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 75, 39, 0.18);
}

.pbm-contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pbm-contact-card {
    position: relative;
    margin: 0 !important;
    padding: 29px 30px 30px 34px !important;
    background: #ffffff;
    border: 1px solid var(--pbm-border);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(16, 45, 30, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pbm-contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--pbm-green-bright);
}

.pbm-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(16, 45, 30, 0.10);
}

.pbm-contact-card h4 {
    margin: 0 0 10px;
    color: var(--pbm-green);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.pbm-contact-card p {
    margin: 0;
    color: #4c5b53;
    font-size: 15px;
    line-height: 1.7;
}

.pbm-contact-card .wp-block-buttons {
    margin-top: 20px;
}

.pbm-whatsapp-button .wp-block-button__link {
    padding: 12px 24px;
    background: var(--pbm-green);
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pbm-whatsapp-button .wp-block-button__link:hover {
    background: var(--pbm-green-dark);
    transform: translateY(-1px);
}

.pbm-contact-map-section {
    width: min(1180px, calc(100% - 60px));
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 15px 0 110px !important;
}

.pbm-contact-map-section > h2 {
    margin: 0 0 12px;
    color: var(--pbm-green);
    font-size: 34px;
    font-weight: 800;
    text-align: center;
}

.pbm-contact-map-section > h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--pbm-green-bright);
    border-radius: 20px;
}

.pbm-contact-map-section > p {
    max-width: 650px;
    margin: 0 auto 38px;
    color: var(--pbm-muted);
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

.pbm-contact-map-section iframe,
.pbm-contact-map-section .wp-block-embed iframe {
    display: block;
    width: 100% !important;
    min-height: 440px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 12px 38px rgba(15, 44, 29, 0.07);
}

.pbm-contact-cta {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: 85px 30px !important;
    background: linear-gradient(135deg, #064b2b 0%, #075d34 60%, #096b3e 100%);
    text-align: center;
}

.pbm-contact-cta > h2 {
    max-width: 800px;
    margin: 0 auto 17px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.15;
}

.pbm-contact-cta > p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}

.pbm-contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 !important;
}

.pbm-contact-cta-buttons .wp-block-button__link {
    padding: 14px 29px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pbm-contact-cta-buttons .wp-block-button__link:hover {
    transform: translateY(-2px);
}

.pbm-contact-cta-primary .wp-block-button__link {
    background: #ffffff;
    color: var(--pbm-green);
}

.pbm-contact-cta-primary .wp-block-button__link:hover {
    background: #edf6f1;
}

.pbm-contact-cta-secondary .wp-block-button__link {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.pbm-contact-cta-secondary .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================
   8. RESPONSIVE — TABLET
========================================================== */
@media (max-width: 1024px) {
    .pbm-hero {
        min-height: 500px !important;
        padding: 50px 25px;
    }

    .pbm-hero-title {
        font-size: 42px;
    }

    .pbm-hero-description {
        font-size: 18px;
    }

    .pbm-value-grid,
    .pbm-product-grid {
        gap: 22px !important;
    }

    .pbm-value-card {
        min-height: 300px;
        padding: 28px !important;
        border-radius: 35px;
    }

    .pbm-value-card h3 {
        font-size: 20px;
    }

    .pbm-value-card p {
        font-size: 16px;
    }

    .pbm-product-card .wp-block-image img {
        height: 250px;
    }

    .pbm-products-hero {
        padding: 80px 25px !important;
    }

    .pbm-products-hero-title {
        font-size: 48px;
    }

    .pbm-products-catalog {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .pbm-product-detail {
        padding: 40px !important;
    }

    .pbm-product-detail-row {
        gap: 40px !important;
    }

    .pbm-product-image-placeholder,
    .pbm-product-media > .wp-block-image img {
        height: 330px;
        min-height: 330px;
    }

    .pbm-about-hero {
        padding: 70px 25px;
    }

    .pbm-about-content {
        padding: 65px 24px;
    }

    .pbm-about-section {
        padding: 38px 34px;
    }

    .pbm-why-header {
        padding: 65px 25px;
    }

    .pbm-advantages {
        padding: 65px 24px 80px;
    }

    .pbm-contact-hero {
        min-height: 380px !important;
    }

    .pbm-contact-hero-inner,
    .pbm-contact-main,
    .pbm-contact-map-section {
        width: calc(100% - 48px);
    }

    .pbm-contact-main {
        padding: 70px 0 80px !important;
    }

    .pbm-contact-columns {
        flex-direction: column;
        gap: 30px;
    }

    .pbm-contact-form-column,
    .pbm-contact-details {
        flex-basis: 100% !important;
    }

    .pbm-contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pbm-contact-map-section {
        padding-bottom: 80px !important;
    }

    .blog-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ==========================================================
   9. RESPONSIVE — MOBILE
========================================================== */
@media (max-width: 781px) {
    /* Header */
    .header-inner {
        min-height: 80px;
        padding: 0.75rem 1.25rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .site-logo {
        margin-bottom: 0;
    }

    .site-logo .custom-logo {
        max-width: 110px;
        max-height: 60px;
    }

    .mobile-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid var(--pbm-border);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        display: none;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1.25rem;
    }

    .main-navigation .nav-links a {
        padding: 0.85rem 1rem;
        text-align: center;
        border-radius: 8px;
    }

    /* Homepage hero */
    .pbm-hero {
        min-height: 570px !important;
        padding: 55px 20px;
    }

    .pbm-hero-title {
        font-size: 34px;
        line-height: 1.12;
    }

    .pbm-hero-description {
        margin-bottom: 30px !important;
        font-size: 16px;
        line-height: 1.5;
    }

    .pbm-hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 13px !important;
    }

    .pbm-hero-buttons .wp-block-button {
        width: min(100%, 330px);
    }

    .pbm-hero-buttons .wp-block-button__link {
        width: 100%;
        min-width: 0;
        padding: 15px 20px;
        font-size: 15px;
    }

    /* Stats */
    .pbm-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .pbm-stat {
        min-height: 120px;
        border-right: 1px solid #222222;
        border-bottom: 1px solid #222222;
    }

    .pbm-stat:nth-child(2n) {
        border-right: none;
    }

    .pbm-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .pbm-stat h2 {
        font-size: 30px;
    }

    .pbm-stat p {
        font-size: 11px;
    }

    /* Homepage sections */
    .pbm-values-section {
        padding: 60px 20px 0 !important;
    }

    .pbm-products-section {
        padding: 90px 20px 60px !important;
    }

    .pbm-knowledge-section,
    .pbm-testimonials-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .pbm-section-heading {
        margin-bottom: 45px !important;
    }

    .pbm-section-title {
        font-size: 23px;
    }

    .pbm-section-subtitle {
        font-size: 16px;
    }

    .pbm-value-grid {
        display: flex !important;
        flex-direction: column;
        gap: 18px !important;
    }

    .pbm-value-card {
        min-height: 0;
        padding: 28px !important;
        border-radius: 30px;
    }

    .pbm-value-card h3 {
        font-size: 20px;
    }

    .pbm-value-card p {
        font-size: 16px;
    }

    .pbm-product-grid {
        display: flex !important;
        flex-direction: column;
        gap: 25px !important;
        margin-bottom: 25px !important;
    }

    .pbm-product-card {
        width: 100%;
        padding: 15px 15px 30px !important;
    }

    .pbm-product-card .wp-block-image {
        margin-bottom: 28px !important;
    }

    .pbm-product-card .wp-block-image img {
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }

    .pbm-product-name {
        min-width: 0;
        width: fit-content;
        padding: 10px 25px;
        font-size: 16px;
    }

    .pbm-product-card > p {
        font-size: 16px;
    }

    .pbm-knowledge-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .pbm-knowledge-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .pbm-series-title {
        font-size: 18px;
    }

    .pbm-knowledge-description {
        font-size: 16px;
    }

    /* Testimonials */
    .pbm-testimonials-section {
        padding-top: 55px !important;
        padding-bottom: 65px !important;
    }

    .pbm-testimonials-section > .pbm-section-title {
        margin-bottom: 40px !important;
    }

    .pbm-testimonial-grid {
        flex-direction: column !important;
        gap: 22px !important;
    }

    .pbm-testimonial {
        border-radius: 8px;
    }

    .pbm-testimonial-box {
        min-height: 0;
        padding: 28px 25px 10px !important;
    }

    .pbm-testimonial > h3,
    .pbm-testimonial > .pbm-testimonial-role,
    .pbm-testimonial > p:last-child {
        margin-left: 25px !important;
        margin-right: 25px !important;
    }

    /* Products page */
    .pbm-products-hero {
        padding: 65px 20px !important;
    }

    .pbm-products-hero-title {
        font-size: 38px;
    }

    .pbm-products-hero-text {
        font-size: 16px;
    }

    .pbm-products-intro {
        padding: 55px 20px 45px !important;
    }

    .pbm-products-section-title {
        font-size: 25px;
    }

    .pbm-products-section-text {
        font-size: 16px;
    }

    .pbm-products-catalog {
        padding: 10px 15px 60px !important;
    }

    .pbm-product-detail,
    .pbm-product-detail-alt {
        margin: 25px auto !important;
        padding: 20px !important;
        background: #ffffff;
        border-radius: 16px;
    }

    .pbm-product-detail-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
    }

    .pbm-product-detail-row > .pbm-product-media {
        order: 1;
        width: 100% !important;
        flex-basis: auto !important;
    }

    .pbm-product-detail-row > .pbm-product-info {
        order: 2;
        width: 100% !important;
        flex-basis: auto !important;
    }

    .pbm-product-image-placeholder {
        min-height: 260px;
        border-radius: 13px;
    }

    .pbm-product-media > .wp-block-image {
        border-radius: 13px;
    }

    .pbm-product-media > .wp-block-image img {
        height: 280px;
        min-height: 0;
        border-radius: 13px;
    }

    .pbm-product-info {
        padding: 0 5px 10px;
    }

    .pbm-product-detail-title {
        margin-bottom: 20px !important;
        font-size: 27px;
    }

    .pbm-product-info > p:not(.pbm-coming-soon-label) {
        font-size: 16px;
        line-height: 1.6;
    }

    .pbm-product-features li {
        font-size: 15px;
    }

    .pbm-product-actions,
    .pbm-product-actions .wp-block-button {
        width: 100%;
    }

    .pbm-product-enquiry .wp-block-button__link {
        width: 100%;
        text-align: center;
    }

    .pbm-products-cta {
        padding: 60px 20px !important;
    }

    .pbm-products-cta h2 {
        font-size: 28px;
    }

    .pbm-products-cta > p {
        font-size: 16px;
    }

    .pbm-products-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .pbm-products-cta-buttons .wp-block-button {
        width: min(100%, 330px);
    }

    .pbm-products-cta-buttons .wp-block-button__link {
        width: 100%;
    }

    /* About */
    .pbm-about-hero {
        padding: 55px 20px;
    }

    .pbm-about-hero-title {
        font-size: 36px;
    }

    .pbm-about-content {
        padding: 45px 16px;
    }

    .pbm-about-section {
        padding: 30px 24px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .pbm-about-section-title {
        font-size: 24px;
    }

    .pbm-about-section p,
    .pbm-edge-list li {
        font-size: 16px;
    }

    .pbm-quality-highlight {
        padding: 22px;
    }

    .pbm-why-header {
        padding: 55px 20px;
    }

    .pbm-why-title {
        font-size: 30px;
    }

    .pbm-why-subtitle {
        font-size: 17px;
    }

    .pbm-advantages {
        padding: 50px 16px 65px;
    }

    .pbm-advantages-title {
        font-size: 29px;
        margin-bottom: 32px;
    }

    .pbm-advantage-card {
        padding: 28px 24px;
        border-radius: 15px;
    }

    .pbm-advantage-card h4 {
        font-size: 18px;
    }

    /* Blog */
    .blog-hero {
        padding: 60px 20px;
    }

    .blog-hero-text {
        font-size: 16px;
    }

    .blog-intro {
        padding: 55px 20px 40px;
    }

    .blog-posts-section {
        padding: 20px 18px 65px;
    }

    .blog-post-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .blog-card-image {
        height: 220px;
    }

    .blog-card-content {
        padding: 23px 22px 26px !important;
    }

    .blog-card-title {
        font-size: 21px;
    }

    /* Contact */
    .pbm-contact-hero {
        min-height: 340px !important;
    }

    .pbm-contact-hero-inner {
        width: calc(100% - 36px);
    }

    .pbm-contact-hero-title {
        margin-bottom: 17px !important;
        font-size: 36px;
        letter-spacing: -0.7px;
    }

    .pbm-contact-hero-text {
        font-size: 16px;
        line-height: 1.65;
    }

    .pbm-contact-main {
        width: calc(100% - 32px);
        padding: 55px 0 65px !important;
    }

    .pbm-contact-heading {
        margin-bottom: 35px !important;
    }

    .pbm-contact-heading h2 {
        font-size: 28px;
    }

    .pbm-contact-form-column {
        padding: 29px 22px;
        border-radius: 16px;
    }

    .pbm-contact-form-column > h3 {
        font-size: 22px;
    }

    .pbm-enquiry-form .pbm-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pbm-enquiry-form button[type="submit"] {
        width: 100%;
    }

    .pbm-contact-details {
        display: flex;
        gap: 14px;
    }

    .pbm-contact-card {
        padding: 24px 22px 25px 27px !important;
    }

    .pbm-contact-map-section {
        width: calc(100% - 32px);
        padding: 5px 0 65px !important;
    }

    .pbm-contact-map-section > h2 {
        font-size: 28px;
    }

    .pbm-contact-map-section iframe,
    .pbm-contact-map-section .wp-block-embed iframe {
        min-height: 330px;
        height: 330px !important;
        border-radius: 15px;
    }

    .pbm-contact-cta {
        padding: 60px 20px !important;
    }

    .pbm-contact-cta > h2 {
        font-size: 29px;
    }

    .pbm-contact-cta > p {
        font-size: 16px;
    }

    .pbm-contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto !important;
    }

    .pbm-contact-cta-buttons .wp-block-button,
    .pbm-contact-cta-buttons .wp-block-button__link {
        width: 100%;
    }
}

/* ==========================================================
   10. SMALL PHONES
========================================================== */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pbm-hero {
        min-height: 530px !important;
    }

    .pbm-hero-title {
        font-size: 28px;
    }

    .pbm-stat h2 {
        font-size: 26px;
    }

    .pbm-stat p {
        font-size: 10px;
        line-height: 1.35;
    }

    .pbm-value-card {
        border-radius: 24px;
    }

    .pbm-products-section {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .pbm-knowledge-title {
        font-size: 21px;
    }

    .pbm-products-hero-title {
        font-size: 32px;
    }

    .pbm-product-detail {
        padding: 15px !important;
    }

    .pbm-product-image-placeholder {
        min-height: 220px;
    }

    .pbm-product-media > .wp-block-image img {
        height: 230px;
    }

    .pbm-product-detail-title {
        font-size: 24px;
    }
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    background: #111;
    color: #fff;
    margin-top: 4rem;
    padding: 65px 30px 20px;
    box-sizing: border-box;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    padding-bottom: 55px;
    box-sizing: border-box;
}


/* =========================================================
   COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
    text-align: left;
}


/* LEFT BLOCK */

.footer-brand {
    justify-self: start;
}


/* MIDDLE BLOCK */

.footer-links {
    justify-self: center;
}


/* RIGHT BLOCK */

.footer-contact {
    justify-self: end;
}


/* =========================================================
   HEADINGS
========================================================= */

.footer-column h3,
.footer-column h4 {
    margin: 0 0 24px;
    color: #fff;
}

.footer-brand h3 {
    color: #4CAF50;
    font-size: 22px;
    line-height: 1.3;
}


/* =========================================================
   TEXT
========================================================= */

.footer-column p {
    margin: 0;
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0 0 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact strong {
    color: #fff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    border-top: 1px solid #333;
    padding-top: 25px;

    box-sizing: border-box;

    text-align: center;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .site-footer {
        padding: 50px 25px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        justify-self: start;
    }

    .footer-column {
        text-align: left;
    }
}
/* =========================================================
   STICKY HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
}


/* WordPress admin bar adjustment */
body.admin-bar .site-header {
    top: 32px;
}


/* Mobile admin bar */
@media (max-width: 782px) {

    body.admin-bar .site-header {
        top: 46px;
    }

}
/* =========================================================
   MOBILE / TABLET HEADER OVERRIDE
   Prevent desktop scroll positioning from affecting mobile
========================================================= */

@media (max-width: 800px) {

    /* Keep the mobile header normal */
    .site-header,
    .site-header.scrolled {
        position: sticky;
        top: 0;
    }

    .site-header .header-inner,
    .site-header.scrolled .header-inner {
        height: auto;
        min-height: 90px;
        padding: 10px 18px;
    }


    /* =====================================================
       MOBILE LOGO
    ===================================================== */

    .site-header .site-logo,
    .site-header.scrolled .site-logo {
        position: static;

        transform: none;

        margin: 0;
        justify-content: flex-start;
    }

    .site-header .site-logo .custom-logo,
    .site-header.scrolled .site-logo .custom-logo {
        max-width: 140px;
        max-height: 70px;
    }


    /* =====================================================
       MOBILE MENU BUTTON
    ===================================================== */

    .site-header .mobile-toggle {
        display: block;

        position: absolute;
        top: 50%;
        right: 18px;

        transform: translateY(-50%);

        z-index: 10002;
    }


    /* =====================================================
       MOBILE NAVIGATION
    ===================================================== */

    .site-header .main-navigation,
    .site-header.scrolled .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        bottom: auto;

        width: 100%;

        transform: none;

        background: #ffffff;

        z-index: 10001;

        display: none;
    }


    /* Open menu */

    .site-header .main-navigation.active,
    .site-header.scrolled .main-navigation.active {
        display: block;
    }


    /* =====================================================
       MOBILE MENU ITEMS
    ===================================================== */

    .site-header .main-navigation .nav-links,
    .site-header.scrolled .main-navigation .nav-links {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        margin: 0;
        padding: 10px 0;

        list-style: none;
    }


    .site-header .main-navigation .nav-links li,
    .site-header.scrolled .main-navigation .nav-links li {
        width: 100%;
        margin: 0;
    }


    .site-header .main-navigation .nav-links a,
    .site-header.scrolled .main-navigation .nav-links a {
        display: block;

        width: 100%;

        box-sizing: border-box;

        padding: 16px 24px;

        text-align: center;

        border-radius: 0;

        background: transparent;
        color: var(--pbm-text-dark);
    }


    .site-header .main-navigation .nav-links a:hover {
        background: #eeeeee;
        color: var(--pbm-green);
    }


    .site-header .main-navigation .current-menu-item > a,
    .site-header .main-navigation .current_page_item > a,
    .site-header .main-navigation .current-menu-ancestor > a {
        background: var(--pbm-green);
        color: #ffffff;
    }

}