:root {
    --spax-green: #0d6e3a;
    --spax-dark: #2c2c2c;
    --grid-color: rgba(13, 110, 58, 0.12);
    --text-main: #333333;
    --shadow-float: 0 20px 40px rgba(0,0,0,0.08);
    --spax-yellow-btn: #fdf5d3; 
    --spax-cream: #F9F9F8;
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.product-search-section {
    position: relative;
    padding: 160px 0 100px 0;
    background-color: var(--spax-cream);
    z-index: 20;

}

.decor-drawn {
    position: absolute;

    z-index: 1;
   pointer-events: none;
    filter: brightness(0) invert(1);
}

.search-inputs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 500px;
}

.input-pill {
    height: 50px;
    border: 1px solid #d1d1d1;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--spax-dark);
    transition: all 0.3s ease;
}
.input-pill:focus {
    border-color: var(--spax-green);
    outline: none;
    box-shadow: 0 5px 15px rgba(13, 110, 58, 0.1);
}

.bg-blueprint {
    background-color: #ffffff;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px; 
    position: relative;
}

.blueprint-section {
    position: relative;
    padding: 1px; 
    min-height: 80vh;
    display: flex; 
    overflow: hidden; 
}

.blueprint-section > .row {
    flex-grow: 1; 
}

#map { 
    width: 100%; 
    height: 100%; 
    z-index: 2; 
    border-radius: 30px; 
    box-shadow: var(--shadow-float); 
    border: 1px solid rgba(0,0,0,0.05);
}

.inspire-section {
    position: relative;
    padding: 100px 0; 
    background-color: #f8f9fa; 
    z-index: 10;
}

@media (max-width: 991.98px) {
    .blueprint-section { display: block; }
    .blueprint-section [class*="col-lg-"] {
        min-height: 60vh;
    }
    .product-search-section { padding: 120px 0 60px 0; }
}

@media (max-width: 767.98px) {
    .product-search-section { padding: 100px 0 40px 0; }
    .blueprint-section { padding: 0; min-height: auto; }
    .blueprint-section .col-12 { height: 60vh; min-height: 450px; }
    .hero-search-img { 
        transform: scale(1) !important; 
        max-height: 280px !important; 
    }
    .search-inputs-wrapper { flex-direction: column; }
    .btn-spax-pill { width: 100%; justify-content: center; }
}
