/*
 Theme Name:   Astra Bouders
 Theme URI:    https://bouders.eu
 Description:  Custom Astra child theme voor Aanbod op Maat (Ayoub Bouders) - IT & Marketing dienstverlener in Maastricht
 Author:       IT Live / Aanbod op Maat
 Author URI:   https://bouders.eu
 Template:     astra
 Version:      2.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astra-bouders
 Tags:         business, technology, woocommerce, elementor
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    --bouders-primary: #65B32E;
    --bouders-secondary: #2E3192;
    --bouders-accent: #65B32E;
    --bouders-accent-dark: #4A9024;
    --bouders-dark: #32373c;
    --bouders-light: #F8FAFC;
    --bouders-gray-50: #F9FAFB;
    --bouders-gray-100: #F1F5F9;
    --bouders-gray-200: #E2E8F0;
    --bouders-gray-300: #CBD5E1;
    --bouders-gray-400: #94A3B8;
    --bouders-gray-500: #64748B;
    --bouders-gray-600: #475569;
    --bouders-gray-700: #334155;
    --bouders-gray-800: #1E293B;
    --bouders-gradient: linear-gradient(135deg, var(--bouders-primary) 0%, var(--bouders-secondary) 100%);
    --bouders-gradient-accent: linear-gradient(135deg, var(--bouders-accent) 0%, var(--bouders-accent-dark) 100%);
    --bouders-gradient-hero: linear-gradient(135deg, #2E3192 0%, #32373c 50%, #2E3192 100%);
    --bouders-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --bouders-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --bouders-shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --bouders-shadow-xl: 0 20px 40px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --bouders-shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.06);
    --bouders-shadow-card-hover: 0 8px 30px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.06);
    --bouders-radius: 12px;
    --bouders-radius-sm: 8px;
    --bouders-radius-lg: 16px;
    --bouders-radius-xl: 24px;
    --bouders-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bouders-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Typography
   ========================================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bouders-gray-700);
    background-color: #fff;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--bouders-dark);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
    margin-bottom: 1.25em;
    color: var(--bouders-gray-600);
    line-height: 1.75;
}

a {
    color: var(--bouders-primary);
    text-decoration: none;
    transition: var(--bouders-transition);
}

a:hover {
    color: var(--bouders-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ==========================================================================
   Global Button Styles
   ========================================================================== */

.bouders-btn,
.btn-primary,
a.bouders-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--bouders-gradient);
    color: #fff !important;
    border: none;
    border-radius: var(--bouders-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: var(--bouders-transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.bouders-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.bouders-btn:hover::before {
    left: 100%;
}

.bouders-btn:hover,
.btn-primary:hover,
a.bouders-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    color: #fff !important;
}

.bouders-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.bouders-btn--secondary,
.btn-secondary {
    background: transparent;
    color: var(--bouders-primary) !important;
    border: 2px solid var(--bouders-primary);
    box-shadow: none;
}

.bouders-btn--secondary::before {
    display: none;
}

.bouders-btn--secondary:hover,
.btn-secondary:hover {
    background: var(--bouders-primary);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.bouders-btn--accent {
    background: var(--bouders-gradient-accent);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.bouders-btn--accent:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.bouders-btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.bouders-btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Header / Navigation Overrides (Astra parent)
   ========================================================================== */

.ast-primary-header-bar,
.site-header {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bouders-gray-200);
    transition: var(--bouders-transition);
}

.site-header.scrolled {
    box-shadow: var(--bouders-shadow-md);
}

.ast-site-identity .site-title a {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bouders-dark) !important;
    letter-spacing: -0.02em;
}

.main-header-menu .menu-item > a,
.ast-nav-menu .menu-item > a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.925rem;
    color: var(--bouders-gray-700) !important;
    padding: 0.5rem 1rem;
    transition: var(--bouders-transition);
    position: relative;
}

.main-header-menu .menu-item > a:hover,
.ast-nav-menu .menu-item > a:hover {
    color: var(--bouders-primary) !important;
}

.main-header-menu .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--bouders-primary);
    transition: var(--bouders-transition);
    border-radius: 2px;
}

.main-header-menu .menu-item > a:hover::after,
.main-header-menu .current-menu-item > a::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-item.bouders-header-cta > a,
.ast-header-button-1 a,
.ast-custom-button a {
    background: var(--bouders-gradient) !important;
    color: #fff !important;
    border-radius: var(--bouders-radius-sm) !important;
    padding: 0.625rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: var(--bouders-transition);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.menu-item.bouders-header-cta > a:hover,
.ast-header-button-1 a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.bouders-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bouders-gradient-hero);
    overflow: hidden;
    padding: 3rem 0 5rem;
}

/* Gradient orbs */
.bouders-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 600px at 15% 50%, rgba(37, 99, 235, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 50% 90%, rgba(30, 64, 175, 0.10) 0%, transparent 70%);
    z-index: 1;
}

/* Subtle grid */
.bouders-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

.bouders-hero .container {
    position: relative;
    z-index: 2;
}

.bouders-hero__content {
    max-width: 720px;
}

.bouders-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 50px;
    color: #93B4F4;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

.bouders-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bouders-accent);
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.bouders-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.bouders-hero h1 .gradient-text {
    background: linear-gradient(135deg, #60A5FA, var(--bouders-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bouders-hero p {
    color: var(--bouders-gray-400);
    font-size: 1.175rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.bouders-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bouders-hero__stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bouders-hero__stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.bouders-hero__stat-label {
    font-size: 0.85rem;
    color: var(--bouders-gray-500);
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.bouders-section {
    padding: 6rem 0;
    position: relative;
}

.bouders-section--gray {
    background: var(--bouders-gray-50);
}

.bouders-section--dark {
    background: var(--bouders-dark);
}

.bouders-section--dark h2,
.bouders-section--dark h3 {
    color: #fff;
}

.bouders-section--dark p {
    color: var(--bouders-gray-400);
}

.bouders-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.bouders-section__header .overline,
.overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bouders-primary);
    margin-bottom: 0.75rem;
}

.bouders-section__header h2 {
    margin-bottom: 1rem;
}

.bouders-section__header p {
    font-size: 1.1rem;
    color: var(--bouders-gray-500);
    margin-bottom: 0;
}

/* ==========================================================================
   WORDPRESS PAGE CONTENT
   ========================================================================== */

.bouders-page-content .entry-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
}

.bouders-page-content .entry-content h1,
.bouders-page-content .entry-content h2,
.bouders-page-content .entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.bouders-page-content .entry-content img {
    border-radius: var(--bouders-radius);
    margin: 1.5rem 0;
}

.bouders-page-content .entry-content a {
    color: var(--bouders-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bouders-page-content .entry-content a:hover {
    color: var(--bouders-secondary);
}

/* ==========================================================================
   DIENSTEN GRID CARDS
   ========================================================================== */

.bouders-diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bouders-dienst-card {
    background: #fff;
    border-radius: var(--bouders-radius-lg);
    padding: 2.25rem;
    transition: var(--bouders-transition);
    border: 1px solid var(--bouders-gray-200);
    position: relative;
    overflow: hidden;
    box-shadow: var(--bouders-shadow-sm);
}

.bouders-dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bouders-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bouders-dienst-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bouders-shadow-card-hover);
    border-color: transparent;
}

.bouders-dienst-card:hover::before {
    transform: scaleX(1);
}

.bouders-dienst-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--bouders-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--bouders-primary);
    transition: var(--bouders-transition);
}

.bouders-dienst-card:hover .bouders-dienst-card__icon {
    background: var(--bouders-gradient);
    color: #fff;
    transform: scale(1.08);
}

.bouders-dienst-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.bouders-dienst-card p {
    font-size: 0.925rem;
    color: var(--bouders-gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.bouders-dienst-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bouders-primary);
    transition: var(--bouders-transition);
}

.bouders-dienst-card__link:hover {
    gap: 0.625rem;
    color: var(--bouders-secondary);
}

.bouders-dienst-card__link svg {
    width: 16px;
    height: 16px;
    transition: var(--bouders-transition);
}

/* Staggered animation delays */
.bouders-diensten-grid .bouders-dienst-card:nth-child(1) { transition-delay: 0s; }
.bouders-diensten-grid .bouders-dienst-card:nth-child(2) { transition-delay: 0.08s; }
.bouders-diensten-grid .bouders-dienst-card:nth-child(3) { transition-delay: 0.16s; }
.bouders-diensten-grid .bouders-dienst-card:nth-child(4) { transition-delay: 0.24s; }
.bouders-diensten-grid .bouders-dienst-card:nth-child(5) { transition-delay: 0.32s; }
.bouders-diensten-grid .bouders-dienst-card:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================================================
   WAAROM / USP SECTION
   ========================================================================== */

.bouders-waarom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bouders-waarom__visual {
    position: relative;
    background: var(--bouders-gradient);
    border-radius: var(--bouders-radius-xl);
    padding: 3rem;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bouders-waarom__visual::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.bouders-waarom__visual::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 60%);
}

.bouders-waarom__visual-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.bouders-waarom__visual-icon {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.bouders-waarom__visual-content h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.bouders-waarom__visual-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0;
}

.bouders-waarom__intro {
    margin-bottom: 2rem;
}

.bouders-usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bouders-usp-list li {
    display: flex;
    gap: 1rem;
    padding: 1.125rem 0;
    border-bottom: 1px solid var(--bouders-gray-200);
    transition: var(--bouders-transition);
}

.bouders-usp-list li:last-child {
    border-bottom: none;
}

.bouders-usp-list li:hover {
    padding-left: 0.5rem;
}

.bouders-usp-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--bouders-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--bouders-transition);
}

.bouders-usp-list li:hover .bouders-usp-icon {
    background: var(--bouders-gradient-accent);
    color: #fff;
}

.bouders-usp-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.bouders-usp-content p {
    font-size: 0.9rem;
    color: var(--bouders-gray-500);
    margin: 0;
}

/* ==========================================================================
   WOOCOMMERCE PRODUCT CARDS
   ========================================================================== */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product,
.bouders-product-card {
    background: #fff;
    border-radius: var(--bouders-radius-lg) !important;
    overflow: hidden;
    transition: var(--bouders-transition);
    border: 1px solid var(--bouders-gray-200);
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    box-shadow: var(--bouders-shadow-sm);
}

.woocommerce ul.products li.product:hover,
.bouders-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bouders-shadow-card-hover);
    border-color: transparent;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    overflow: hidden;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img,
.bouders-product-card img {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    transition: transform 0.4s ease;
    width: 100%;
}

.woocommerce ul.products li.product:hover img,
.bouders-product-card:hover img {
    transform: scale(1.05);
}

.bouders-product-img-wrapper {
    overflow: hidden;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.bouders-product-card h3 {
    padding: 1.25rem 1.25rem 0 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--bouders-dark);
    margin: 0;
}

.woocommerce ul.products li.product .price {
    padding: 0.5rem 1.25rem !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--bouders-primary) !important;
    font-size: 1.15rem !important;
    margin: 0;
}

.woocommerce ul.products li.product .price del {
    color: var(--bouders-gray-400) !important;
    font-size: 0.9rem !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--bouders-accent) !important;
}

.woocommerce ul.products li.product .button,
.bouders-product-card .button {
    background: var(--bouders-gradient) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.875rem 1.25rem !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-align: center;
    transition: var(--bouders-transition);
    display: block;
    width: 100%;
    margin: 0.75rem 0 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--bouders-secondary) !important;
    opacity: 1 !important;
}

.woocommerce .checkout-button,
.woocommerce #place_order {
    background: var(--bouders-gradient-accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--bouders-radius-sm) !important;
    padding: 1rem 2rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.woocommerce span.onsale {
    background: var(--bouders-accent) !important;
    border-radius: var(--bouders-radius-sm) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    min-height: unset !important;
    min-width: unset !important;
    line-height: 1.4;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
}

.woocommerce .star-rating span::before {
    color: #FBBF24 !important;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.bouders-cta-banner {
    background: var(--bouders-gradient);
    border-radius: var(--bouders-radius-xl);
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bouders-cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bouders-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.bouders-cta-banner h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.bouders-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.bouders-cta-banner .bouders-btn {
    background: #fff;
    color: var(--bouders-primary) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.bouders-cta-banner .bouders-btn:hover {
    background: var(--bouders-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--bouders-primary) !important;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.bouders-contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.bouders-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bouders-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--bouders-radius);
    border: 1px solid var(--bouders-gray-200);
    transition: var(--bouders-transition);
}

.bouders-contact-item:hover {
    box-shadow: var(--bouders-shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.bouders-contact-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--bouders-radius);
    background: rgba(37, 99, 235, 0.08);
    color: var(--bouders-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bouders-contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.bouders-contact-item p {
    margin: 0;
    font-size: 0.925rem;
    color: var(--bouders-gray-500);
}

.bouders-contact-hours {
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--bouders-radius);
    border: 1px solid var(--bouders-gray-200);
    border-left: 4px solid var(--bouders-primary);
}

.bouders-contact-hours h4 {
    margin-bottom: 0.5rem;
}

.bouders-contact-hours p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Form */
.bouders-contact-form__inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #fff;
    border-radius: var(--bouders-radius-lg);
    padding: 2rem;
    border: 1px solid var(--bouders-gray-200);
    box-shadow: var(--bouders-shadow-sm);
}

.bouders-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bouders-form-group {
    display: flex;
    flex-direction: column;
}

.bouders-contact-form label,
.bouders-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--bouders-gray-700);
    margin-bottom: 0.5rem;
}

.bouders-contact-form input[type="text"],
.bouders-contact-form input[type="email"],
.bouders-contact-form input[type="tel"],
.bouders-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid var(--bouders-gray-200);
    border-radius: var(--bouders-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--bouders-gray-50);
    transition: var(--bouders-transition);
    outline: none;
    color: var(--bouders-dark);
}

.bouders-contact-form input:focus,
.bouders-contact-form textarea:focus {
    border-color: var(--bouders-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: #fff;
}

.bouders-contact-form input::placeholder,
.bouders-contact-form textarea::placeholder {
    color: var(--bouders-gray-400);
}

.bouders-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.bouders-form-submit {
    width: 100%;
    justify-content: center;
}

.bouders-form-status {
    display: none;
    padding: 1rem;
    border-radius: var(--bouders-radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 0.925rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.bouders-testimonial-card {
    background: #fff;
    border-radius: var(--bouders-radius-lg);
    padding: 2rem;
    border: 1px solid var(--bouders-gray-200);
    transition: var(--bouders-transition);
    box-shadow: var(--bouders-shadow-sm);
}

.bouders-testimonial-card:hover {
    box-shadow: var(--bouders-shadow-lg);
}

.bouders-testimonial-card__stars {
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.bouders-testimonial-card__text {
    font-size: 1rem;
    font-style: italic;
    color: var(--bouders-gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.bouders-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bouders-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bouders-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bouders-testimonial-card__name {
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--bouders-dark);
}

.bouders-testimonial-card__role {
    font-size: 0.8rem;
    color: var(--bouders-gray-500);
}

/* ==========================================================================
   FOOTER OVERRIDES (Astra parent)
   ========================================================================== */

.site-footer,
.ast-footer-overlay {
    background: var(--bouders-dark) !important;
    color: var(--bouders-gray-400);
}

.site-footer h4,
.ast-footer-overlay h4,
footer .widget-title {
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.site-footer a {
    color: var(--bouders-gray-400) !important;
    transition: var(--bouders-transition);
}

.site-footer a:hover {
    color: var(--bouders-primary) !important;
}

.ast-small-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Diensten archive */
.bouders-diensten-archive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.bouders-diensten-archive .bouders-dienst-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bouders-diensten-archive .bouders-dienst-card p {
    flex-grow: 1;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.bouders-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--bouders-transition);
}

.bouders-whatsapp-float:hover {
    transform: scale(1.08);
}

.bouders-whatsapp-float__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--bouders-transition);
}

.bouders-whatsapp-float:hover .bouders-whatsapp-float__btn {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.bouders-whatsapp-float__btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.bouders-whatsapp-float__label {
    background: #fff;
    color: var(--bouders-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--bouders-radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--bouders-shadow-lg);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--bouders-transition);
    pointer-events: none;
}

.bouders-whatsapp-float:hover .bouders-whatsapp-float__label {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation on WhatsApp button */
.bouders-whatsapp-float__btn::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2.5s ease-out infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.bouders-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bouders-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.bouders-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bouders-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.bouders-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bouders-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.bouders-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bouders-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   ELEMENTOR COMPATIBILITY
   ========================================================================== */

.elementor-section.bouders-dark-section {
    background: var(--bouders-dark);
}

.elementor-widget-heading .elementor-heading-title {
    font-family: 'Poppins', sans-serif;
}

.elementor-button {
    font-family: 'Poppins', sans-serif !important;
}

.elementor-posts--skin-cards .elementor-post {
    border-radius: var(--bouders-radius-lg);
    overflow: hidden;
    transition: var(--bouders-transition);
}

.elementor-posts--skin-cards .elementor-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--bouders-shadow-xl);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .bouders-diensten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bouders-waarom {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bouders-contact {
        grid-template-columns: 1fr;
    }

    .bouders-hero__stats {
        gap: 2rem;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .bouders-hero {
        min-height: auto;
        padding: 5rem 0 3.5rem;
    }

    .bouders-hero h1 {
        font-size: 2rem;
    }

    .bouders-hero__buttons {
        flex-direction: column;
    }

    .bouders-hero__buttons .bouders-btn {
        text-align: center;
        justify-content: center;
    }

    .bouders-hero__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .bouders-hero__stat {
        flex: 1 0 40%;
    }

    .bouders-diensten-grid {
        grid-template-columns: 1fr;
    }

    .bouders-section {
        padding: 4rem 0;
    }

    .bouders-section__header {
        margin-bottom: 2.5rem;
    }

    .bouders-cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: var(--bouders-radius-lg);
    }

    .bouders-waarom__visual {
        min-height: 280px;
    }

    .bouders-form-row {
        grid-template-columns: 1fr;
    }

    .bouders-contact-form__inner {
        padding: 1.5rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .bouders-whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .bouders-whatsapp-float__btn {
        width: 52px;
        height: 52px;
    }

    .bouders-whatsapp-float__btn::after {
        width: 52px;
        height: 52px;
    }

    .bouders-whatsapp-float__btn svg {
        width: 28px;
        height: 28px;
    }

    .bouders-whatsapp-float__label {
        display: none;
    }
}

@media (max-width: 480px) {
    .bouders-hero h1 {
        font-size: 1.75rem;
    }

    .bouders-hero p {
        font-size: 1rem;
    }

    .bouders-hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .bouders-dienst-card {
        padding: 1.5rem;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--bouders-primary); }
.text-accent { color: var(--bouders-accent); }
.text-dark { color: var(--bouders-dark); }
.text-white { color: #fff; }
.bg-primary { background: var(--bouders-gradient); }
.bg-dark { background: var(--bouders-dark); }
.bg-light { background: var(--bouders-light); }
.bg-gray { background: var(--bouders-gray-100); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bouders-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--bouders-gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bouders-gray-400);
}

/* ==========================================================================
   SELECTION
   ========================================================================== */

::selection {
    background: rgba(37, 99, 235, 0.15);
    color: var(--bouders-dark);
}

/* ==========================================================================
   Project Diensten Grid (Geweldige diensten voor je project)
   ========================================================================== */

.bouders-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bouders-project-card {
    background: #fff;
    border-radius: var(--bouders-radius-lg);
    padding: 2.25rem;
    transition: var(--bouders-transition);
    border: 1px solid var(--bouders-gray-200);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bouders-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bouders-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bouders-transition);
}

.bouders-project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bouders-shadow-xl);
    border-color: transparent;
}

.bouders-project-card:hover::before {
    transform: scaleX(1);
}

.bouders-project-card__num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bouders-gray-100);
    line-height: 1;
    user-select: none;
}

.bouders-project-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--bouders-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--bouders-primary);
    transition: var(--bouders-transition);
}

.bouders-project-card:hover .bouders-project-card__icon {
    background: var(--bouders-gradient);
    color: #fff;
    transform: scale(1.05);
}

.bouders-project-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.bouders-project-card p {
    font-size: 0.9rem;
    color: var(--bouders-gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Staggered animation delays for project grid */
.bouders-project-grid .bouders-project-card:nth-child(1) { transition-delay: 0s; }
.bouders-project-grid .bouders-project-card:nth-child(2) { transition-delay: 0.1s; }
.bouders-project-grid .bouders-project-card:nth-child(3) { transition-delay: 0.2s; }
.bouders-project-grid .bouders-project-card:nth-child(4) { transition-delay: 0.3s; }
.bouders-project-grid .bouders-project-card:nth-child(5) { transition-delay: 0.4s; }
.bouders-project-grid .bouders-project-card:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   Proces Steps (Simpel, Sterk & Werkend Proces)
   ========================================================================== */

.bouders-proces-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.bouders-proces-step {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--bouders-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--bouders-transition);
    position: relative;
}

.bouders-proces-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
}

.bouders-proces-step__number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    background: var(--bouders-gradient-accent);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.bouders-proces-step__icon {
    margin: 1rem auto 1.25rem;
    color: var(--bouders-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bouders-proces-step h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.bouders-proces-step p {
    color: var(--bouders-gray-400);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

.bouders-proces-connector {
    display: flex;
    align-items: center;
    padding-top: 4rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Success Section (Kiezen voor Bouders = succes)
   ========================================================================== */

.bouders-succes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bouders-succes__content h2 {
    margin-bottom: 1.25rem;
}

.bouders-succes__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bouders-gray-600);
}

.bouders-succes__card {
    background: #fff;
    border-radius: var(--bouders-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--bouders-gray-200);
    box-shadow: var(--bouders-shadow-lg);
    transition: var(--bouders-transition);
}

.bouders-succes__card:hover {
    box-shadow: var(--bouders-shadow-xl);
    transform: translateY(-4px);
}

.bouders-succes__card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--bouders-radius);
    background: var(--bouders-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bouders-succes__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bouders-succes__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bouders-gray-700);
}

/* ==========================================================================
   Responsive: New Sections
   ========================================================================== */

@media (max-width: 1024px) {
    .bouders-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bouders-proces-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .bouders-proces-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .bouders-succes {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bouders-project-grid {
        grid-template-columns: 1fr;
    }

    .bouders-proces-step {
        padding: 2rem 1.5rem;
    }

    .bouders-succes__card {
        padding: 2rem;
    }
}

/* ==========================================================================
   WooCommerce Product Pages — Enhanced Styling
   ========================================================================== */

/* Single Product Page */
.single-product .product {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.single-product .woocommerce-product-gallery {
    border-radius: var(--bouders-radius-lg);
    overflow: hidden;
    box-shadow: var(--bouders-shadow-lg);
}

.single-product .woocommerce-product-gallery img {
    border-radius: var(--bouders-radius);
    transition: transform 0.4s ease;
}

.single-product .woocommerce-product-gallery img:hover {
    transform: scale(1.03);
}

.single-product .summary {
    animation: fadeInUp 0.6s ease-out;
}

.single-product .product_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bouders-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.single-product .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bouders-primary);
    margin: 1rem 0;
}

.single-product .price del {
    color: var(--bouders-gray-400);
    font-size: 1.2rem;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bouders-gray-600);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bouders-gray-50);
    border-radius: var(--bouders-radius-sm);
    border-left: 4px solid var(--bouders-primary);
}

.single-product .single_add_to_cart_button {
    background: var(--bouders-primary) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: var(--bouders-radius-sm) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: var(--bouders-transition) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--bouders-accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 179, 46, 0.4) !important;
}

/* Product Description Tabs */
.woocommerce-tabs {
    margin-top: 3rem;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--bouders-gray-200);
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    font-weight: 600;
    color: var(--bouders-gray-500);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: var(--bouders-transition-fast);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--bouders-primary);
    border-bottom-color: var(--bouders-primary);
}

.woocommerce-tabs .panel {
    animation: fadeInUp 0.4s ease-out;
}

.woocommerce-tabs .panel h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bouders-dark);
}

/* Product Content Styling */
.woocommerce-tabs .panel ul {
    list-style: none;
    padding: 0;
}

.woocommerce-tabs .panel ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    line-height: 1.6;
}

.woocommerce-tabs .panel ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bouders-primary);
    font-weight: 700;
    font-size: 1.1em;
}

/* Shop/Archive Page */
.woocommerce ul.products li.product {
    border-radius: var(--bouders-radius);
    overflow: hidden;
    box-shadow: var(--bouders-shadow-card);
    transition: var(--bouders-transition);
    background: #fff;
    padding: 0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--bouders-shadow-card-hover);
}

.woocommerce ul.products li.product a img {
    margin: 0;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 12px 16px 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bouders-dark);
}

.woocommerce ul.products li.product .price {
    padding: 0 16px;
    color: var(--bouders-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.woocommerce ul.products li.product .button {
    margin: 12px 16px 16px;
    background: var(--bouders-primary);
    color: #fff;
    border-radius: var(--bouders-radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    transition: var(--bouders-transition);
    text-align: center;
    display: block;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--bouders-accent-dark);
    transform: translateY(-1px);
}

/* Product badges */
.woocommerce span.onsale {
    background: var(--bouders-primary);
    color: #fff;
    border-radius: var(--bouders-radius-sm);
    font-weight: 600;
    padding: 4px 12px;
    min-width: auto;
    min-height: auto;
    line-height: 1.5;
}

/* Related Products */
.related.products {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bouders-gray-200);
}

.related.products h2 {
    font-size: 1.5rem;
    color: var(--bouders-dark);
    margin-bottom: 1.5rem;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Post Cards */
.bouders-post-card {
    transition: var(--bouders-transition);
}

.bouders-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bouders-shadow-card-hover);
}

/* Page Entry Content Enhanced */
.entry-content h2 {
    color: var(--bouders-dark);
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.entry-content h3 {
    color: var(--bouders-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.entry-content ul {
    padding-left: 0;
    list-style: none;
}

.entry-content ul li {
    position: relative;
    padding: 6px 0 6px 24px;
    line-height: 1.7;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bouders-primary);
}

/* CTA Blocks */
.entry-content div[style*=border-radius:16px] {
    animation: fadeInUp 0.5s ease-out;
}

.entry-content div[style*=border-radius:16px] a {
    transition: var(--bouders-transition) !important;
}

.entry-content div[style*=border-radius:16px] a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(101, 179, 46, 0.4) !important;
}


/* ==========================================================================
   Chat Simulation Widget
   ========================================================================== */

.bouders-chat-sim {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 360px;
    max-width: calc(100vw - 48px);
    max-height: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    z-index: 9998;
    overflow: hidden;
    animation: chatSlideUp 0.4s ease-out;
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bouders-chat-sim__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #2E3192 0%, #32373c 100%);
    color: #fff;
}

.bouders-chat-sim__close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.bouders-chat-sim__close:hover { opacity: 1; }

.bouders-chat-sim__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
}

.bouders-chat-sim__msg {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
    animation: fadeInUp 0.3s ease-out;
}

.bouders-chat-sim__msg--bot {
    background: #f0f4f8;
    color: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bouders-chat-sim__msg--user {
    background: #65B32E;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bouders-chat-sim__typing {
    display: flex;
    gap: 4px;
    padding: 12px 18px;
}

.bouders-chat-sim__typing span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.bouders-chat-sim__typing span:nth-child(2) { animation-delay: 0.16s; }
.bouders-chat-sim__typing span:nth-child(3) { animation-delay: 0.32s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.bouders-chat-sim__options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 16px;
    border-top: 1px solid #e2e8f0;
}

.bouders-chat-sim__options button {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 0.82rem;
    color: #2E3192;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.bouders-chat-sim__options button:hover {
    background: #65B32E;
    color: #fff;
    border-color: #65B32E;
    transform: translateY(-1px);
}

/* Trigger Button */
.bouders-chat-sim__trigger {
    position: fixed;
    bottom: 100px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2E3192, #32373c);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9997;
    box-shadow: 0 4px 20px rgba(46, 49, 146, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.bouders-chat-sim__trigger--visible {
    opacity: 1;
    transform: translateY(0);
}

.bouders-chat-sim__trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(46, 49, 146, 0.4);
}

@media (max-width: 480px) {
    .bouders-chat-sim {
        bottom: 80px;
        left: 12px;
        right: 12px;
        width: auto;
    }
    .bouders-chat-sim__trigger {
        left: 12px;
        bottom: 80px;
    }
}

/* ══════════════════════════════════════════════════════
   BOUDERS.EU — CSS Patch v2 (2026-05-20)
   Fixes: WhatsApp positioning, forms, accessibility,
   blog cards, breadcrumbs, search, reduced-motion
   ══════════════════════════════════════════════════════ */

/* ── Fix 1: WhatsApp pulse positioning ── */
.bouders-whatsapp-float__btn {
    position: relative !important;
}

/* ── Fix 2: Form element styling (all forms) ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bouders-gray-300, #d1d5db);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--bouders-dark, #32373c);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--bouders-primary, #65B32E);
    box-shadow: 0 0 0 3px rgba(101, 179, 46, 0.15);
    background: #fff;
}
input[type="checkbox"], input[type="radio"] {
    accent-color: var(--bouders-primary, #65B32E);
    width: 18px;
    height: 18px;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
input::placeholder, textarea::placeholder {
    color: var(--bouders-gray-400, #9ca3af);
}
input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}
label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--bouders-dark, #32373c);
}

/* ── Fix 3: Accessibility — focus-visible ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--bouders-primary, #65B32E);
    outline-offset: 2px;
}

/* ── Fix 4: Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Fix 5: Blog post cards — base styles ── */
.bouders-post-card {
    background: #fff;
    border: 1px solid var(--bouders-gray-200, #e5e7eb);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bouders-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.bouders-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.bouders-post-card .post-card-content {
    padding: 20px;
}
.bouders-post-card h3,
.bouders-post-card .entry-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bouders-dark, #32373c);
    margin: 0 0 8px;
    line-height: 1.4;
}
.bouders-post-card .post-meta,
.bouders-post-card time {
    font-size: 0.8rem;
    color: var(--bouders-gray-500, #6b7280);
    margin-bottom: 8px;
}
.bouders-post-card p,
.bouders-post-card .entry-summary {
    font-size: 0.9rem;
    color: var(--bouders-gray-600, #4b5563);
    line-height: 1.6;
}

/* ── Fix 6: Breadcrumbs ── */
.breadcrumb, .breadcrumbs,
.ast-breadcrumbs, .yoast-breadcrumbs,
nav[aria-label="Breadcrumb"], nav[aria-label="breadcrumbs"] {
    font-size: 0.85rem;
    color: var(--bouders-gray-500, #6b7280);
    padding: 12px 0;
    margin-bottom: 16px;
}
.breadcrumb a, .breadcrumbs a,
.ast-breadcrumbs a, .yoast-breadcrumbs a {
    color: var(--bouders-primary, #65B32E);
    text-decoration: none;
}
.breadcrumb a:hover, .breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumb .separator, .breadcrumbs .separator {
    margin: 0 6px;
    color: var(--bouders-gray-400, #9ca3af);
}

/* ── Fix 7: Search results ── */
.search-results .page-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.search-results article {
    padding: 20px 0;
    border-bottom: 1px solid var(--bouders-gray-200, #e5e7eb);
}
.search-results article:last-child { border-bottom: none; }
.search-results .entry-title {
    font-size: 1.15rem;
    font-weight: 600;
}
.search-results .entry-title a {
    color: var(--bouders-dark, #32373c);
    text-decoration: none;
}
.search-results .entry-title a:hover {
    color: var(--bouders-primary, #65B32E);
}
.search-results .entry-summary {
    font-size: 0.9rem;
    color: var(--bouders-gray-600, #4b5563);
    margin-top: 8px;
}

/* ── Fix 8: Pagination ── */
.pagination, .nav-links, .woocommerce-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 2rem 0;
}
.pagination .page-numbers,
.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--bouders-gray-300, #d1d5db);
    color: var(--bouders-dark, #32373c);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.15s;
}
.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
    border-color: var(--bouders-primary, #65B32E);
    color: var(--bouders-primary, #65B32E);
}
.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background: var(--bouders-primary, #65B32E);
    color: #fff;
    border-color: var(--bouders-primary, #65B32E);
}

/* ── Fix 9: Comments section ── */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bouders-gray-200, #e5e7eb);
}
.comments-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.comment-list {
    list-style: none;
    padding: 0;
}
.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--bouders-gray-100, #f3f4f6);
}
.comment-author img {
    border-radius: 50%;
    margin-right: 12px;
}
.comment-author .fn {
    font-weight: 600;
    color: var(--bouders-dark, #32373c);
}
.comment-metadata {
    font-size: 0.8rem;
    color: var(--bouders-gray-500, #6b7280);
    margin-top: 4px;
}
.comment-content {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.comment-respond {
    margin-top: 2rem;
}
#reply-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ── Fix 10: Improved hero mobile buttons ── */
@media (max-width: 768px) {
    .bouders-hero__actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .bouders-hero__actions .bouders-btn {
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* ── Fix 11: 404 page ── */
.error-404 .page-content {
    text-align: center;
    padding: 4rem 1rem;
}
.error-404 h1 {
    font-size: 5rem;
    color: var(--bouders-primary, #65B32E);
    margin-bottom: 0.5rem;
}
.error-404 p {
    font-size: 1.1rem;
    color: var(--bouders-gray-600, #4b5563);
    margin-bottom: 2rem;
}

/* ── Fix 12: Smooth scroll + page transitions ── */
html {
    scroll-behavior: smooth;
}

/* ── Fix 13: Better WooCommerce button consistency ── */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    margin: 12px 16px 16px !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.2s !important;
}

/* ── Fix 14: Skeleton loading for images ── */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200%;
    animation: shimmer 1.5s ease-in-out infinite;
}
img[loading="lazy"][src] {
    background: none;
    animation: none;
}
@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ══════════════════════════════════════════════════════
   BOUDERS.EU — CSS Patch v3 (2026-05-20)
   Lottie replacements, skip-link, widget z-index
   ══════════════════════════════════════════════════════ */

/* ── Lottie replacement: animated gradient orbs ── */
.bouders-hero-orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(101,179,46,0.3), rgba(46,49,146,0.2), transparent 70%);
    animation: orbFloat 8s ease-in-out infinite alternate;
}
.bouders-services-orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, rgba(46,49,146,0.25), rgba(101,179,46,0.15), transparent 70%);
    animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
    0%   { transform: scale(1) translateY(0); opacity: 0.7; }
    50%  { transform: scale(1.05) translateY(-10px); opacity: 1; }
    100% { transform: scale(0.95) translateY(5px); opacity: 0.8; }
}

/* ── Skip-to-content link ── */
.skip-to-content {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bouders-primary, #65B32E);
    color: #fff;
    padding: 10px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 100000;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--bouders-secondary, #2E3192);
    outline-offset: 2px;
}

/* ── Z-index layering for floating widgets ── */
.bouders-whatsapp-float {
    z-index: 9990 !important;
    bottom: 24px !important;
    right: 24px !important;
}

/* Sophie chat widget — higher z-index, offset from WhatsApp */
.itlive-klant-chat,
.itlive-chat-bubble,
[id*="itlive-chat"],
[class*="klant-chat"] {
    z-index: 9995 !important;
}

/* Ensure WhatsApp doesn't overlap Sophie on mobile */
@media (max-width: 480px) {
    .bouders-whatsapp-float {
        bottom: 80px !important;
        right: 16px !important;
    }
}


/* Topbar */
.bouders-topbar { font-family: 'Inter', sans-serif; }
.bouders-topbar a:hover { opacity: 0.9; }
@media (max-width: 768px) { .bouders-topbar { font-size: 0.7rem; padding: 4px 8px; } }

/* ── Fix: back-to-top achter WhatsApp button ── */
#ast-scroll-top {
    z-index: 9985 !important;
}

/* ── Fix: WhatsApp boven back-to-top knop ── */
.bouders-whatsapp-float {
    bottom: 80px !important;
}
@media (max-width: 480px) {
    .bouders-whatsapp-float {
        bottom: 130px !important;
    }
}

/* ==========================================================================
   VISUAL AUDIT FIXES — 2026-05-21
   ========================================================================== */

/* ── Fix 1: Scroll-reveal animations — make content visible by default.
   The JS adds .visible on scroll, but content must not be invisible
   in static contexts (screenshots, no-JS, SEO crawlers).
   Transitions still run when JS adds the class.
   ── */
.bouders-fade-in,
.bouders-fade-in-left,
.bouders-fade-in-right,
.bouders-scale-in {
    opacity: 1 !important;
    transform: none !important;
}
/* Keep the .visible state consistent (no-op but explicit) */
.bouders-fade-in.visible,
.bouders-fade-in-left.visible,
.bouders-fade-in-right.visible,
.bouders-scale-in.visible {
    opacity: 1;
    transform: none;
}

/* ── Fix 2: Hero orb — clip to hero bounds on tablet/mobile to prevent
   horizontal overflow (orb is position:absolute right:-10%).
   Hero already has overflow:hidden on desktop, ensure on all viewports.
   ── */
@media (max-width: 1024px) {
    .bouders-hero__visual {
        overflow: hidden;
        max-width: 100%;
    }
    .bouders-hero {
        overflow: hidden;
    }
}

/* ── Fix 3: Contact form section — prevent wpcf7 form from causing
   horizontal overflow on tablet/mobile. The form container needs
   box-sizing and max-width clipping.
   ── */
@media (max-width: 1024px) {
    .bouders-contact-form,
    .wpcf7,
    .wpcf7-form,
    .wpcf7 form,
    .bouders-contact-form__inner {
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .wpcf7-form-control-wrap,
    .wpcf7-form-control {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ── Fix 4: Chat sim trigger — on iPad landscape the trigger overlaps
   the hero CTA buttons. Push it lower so it clears the hero area.
   ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .bouders-chat-sim__trigger {
        bottom: 80px;
    }
}

/* ── Fix 5: Succes section visual — ensure right-side card doesn't
   overflow on iPad portrait (overflowBy: 12px reported).
   ── */
@media (max-width: 1024px) {
    .bouders-succes__visual {
        overflow: hidden;
        max-width: 100%;
    }
    .bouders-succes__card {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ── Fix 6: Chat sim trigger iPad landscape — move to right side to
   avoid overlapping the hero CTA buttons on the left. On tablet the
   trigger is at left:24px bottom:100px which lands on top of hero CTAs.
   ── */
@media (min-width: 768px) and (max-width: 1180px) {
    .bouders-chat-sim__trigger {
        left: auto;
        right: 24px;
        bottom: 140px;
    }
}
