/* Custom overrides go here */
body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}
.navbar-brand {
    letter-spacing: 0.5px;
}

/* Product gallery: blurred backdrop instead of flat white letterboxing */
.gallery-img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: #000;
}
.gallery-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.65);
    transform: scale(1.15); /* hides the sharp edge blur would otherwise show */
}
.gallery-img-fg {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
