.boutique-wrapper { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.boutique-header { text-align: center; margin-bottom: 80px; }
.boutique-header h1 { font-size: 3rem; color: var(--primary); margin-bottom: 10px; }

.boutique-block { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.boutique-block.reverse { flex-direction: row-reverse; }

.b-text { flex: 1; font-size: 1.1rem; color: #555; text-align: justify; }
.b-text p { margin-bottom: 20px; }
.b-img { flex: 1; height: 400px; }
.b-img img { border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.text-block-center { max-width: 800px; margin: 0 auto 80px; text-align: justify; }
.text-block-center p { margin-bottom: 20px; color: #555; font-size: 1.1rem; }
.highlight { font-weight: 700; color: var(--primary); margin-top: 30px; text-align: center; }

.boutique-map iframe { filter: grayscale(1); transition: filter 0.5s; }
.boutique-map:hover iframe { filter: grayscale(0); }

@media(max-width: 900px) {
    .boutique-block, .boutique-block.reverse { flex-direction: column; gap: 30px; }
    .b-img { width: 100%; height: 300px; }
}