#fw-section-header {
--color-primary: #ff67f2;
--color-primary-rgb: 255, 103, 242;
--color-background: #0b1128;
--color-background-rgb: 11, 17, 40;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #ff00ec;
--color-on-background-rgb: 255, 0, 236;
--color-product-image-background: #a28fa2;
--color-background-brightness: 18;
background-color: var(--color-background);
color: var(--color-on-background);
/* Put logo next to the text, not instead of it */
.header__logo-link {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and text */
}

/* Restore text logo styling */
.header__logo-link .text-logo {
    font-size: inherit !important;
    color: inherit !important;
}

/* Show your logo BEFORE the text */
.header__logo-link::before {
    content: "";
    display: block;
    width: 80px;   /* adjust size here */
    height: 80px;
    background-image: url("https://imgproxy.fourthwall.com/aQpCFCeUrDy1JvqaDVIGV9JBdIFIC8d6YYVSQ7cVfFk/rt:fit/w:600/h:400/g:no/aHR0cHM6Ly9zdG9y/YWdlLmdvb2dsZWFw/aXMuY29tL3BvcHNo/b3Bwcm9kLW9yZGVy/cy1jdXN0b21pemF0/aW9ucy1zaW5nbGUv/c2hfMGYyODE3MzMt/OGRjMS00NDQ4LThj/NGYtMWFlM2E2ZTEw/MDZlLzQxMGYyYThm/LWMxYzItNDEzMC04/ZjM5LTliZWU0ZTYx/ZjBhMC5wbmc.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



}