:root {
    --warehouse-blue: #03009b;
    --warehouse-blue-dark: #000071;
    --warehouse-yellow: #ffe735;
    --warehouse-yellow-strong: #f7d600;
    --warehouse-pink: #ff3c9e;
    --warehouse-orange: #ff8a00;
    --warehouse-green: #16a34a;
    --warehouse-line: #e8e8ef;
    --warehouse-ink: #15151f;
}

.offer-bar {
    min-height: 45px;
    background: linear-gradient(90deg, var(--warehouse-orange), var(--warehouse-pink));
    color: #fff;
}

.offer-bar-inner,
.announcement-rotator {
    min-height: 45px;
}

.announcement-slide {
    justify-content: center;
    text-align: center;
    gap: 26px;
    background: linear-gradient(90deg, var(--announce-from, var(--warehouse-orange)), var(--announce-to, var(--warehouse-pink)));
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0;
}

.announcement-close {
    border: 0;
    background: rgba(255, 255, 255, 0.18);
}

.trust-bar {
    background: #fff;
}

.trust-bar-grid {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    gap: clamp(24px, 5vw, 72px);
}

.trust-bar-item {
    color: #20202a;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.trust-bar-item i {
    color: var(--warehouse-green);
}

.warehouse-header {
    position: relative;
    top: auto;
    background: var(--warehouse-blue);
    border-bottom: 0;
}

.warehouse-header .header-shell {
    min-height: 86px;
    grid-template-columns: minmax(320px, auto) minmax(320px, 740px) auto;
    gap: 18px;
}

.header-brand-zone {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.warehouse-header .navbar-brand {
    color: #fff;
}

.warehouse-header .navbar-brand span,
.footer-logo span,
.offcanvas-title span {
    color: var(--warehouse-yellow);
}

.catalog-toggle {
    height: 55px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 6px;
    background: var(--warehouse-yellow);
    color: #101010;
    padding: 0 18px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.catalog-toggle-arrow {
    transition: transform 0.22s ease;
}

.catalog-toggle.is-open .catalog-toggle-arrow {
    transform: rotate(180deg);
}

.warehouse-header .search-input-group {
    height: 55px;
    padding-left: 18px;
    background: #fff;
    border: 0;
    box-shadow: none;
}

.warehouse-header .search-field {
    height: 55px;
    color: #111;
}

.warehouse-header .search-btn {
    width: 58px;
    height: 55px;
    padding: 0;
    border-radius: 0 6px 6px 0;
    background: var(--warehouse-yellow);
    color: #111;
}

.warehouse-header .header-actions {
    gap: 14px;
}

.warehouse-header .header-action-link,
.instagram-link,
.verified-badge {
    color: #fff;
}

.warehouse-header .header-action-link:hover,
.instagram-link:hover {
    color: var(--warehouse-yellow);
}

.verified-badge {
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.verified-badge i {
    color: var(--warehouse-yellow);
}

.cart-count-badge {
    background: var(--warehouse-yellow);
    color: #111;
}

.catalog-overlay {
    position: fixed;
    inset: 0;
    z-index: 1031;
    background: rgba(15, 18, 32, 0.32);
}

.catalog-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1032;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.catalog-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.catalog-dropdown-panel {
    display: grid;
    grid-template-columns: minmax(260px, 330px) 1fr;
    gap: 22px;
    padding: 22px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 28px 70px rgba(18, 18, 28, 0.24);
}

.catalog-list {
    display: grid;
    gap: 6px;
}

.catalog-list-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--warehouse-ink);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 800;
}

.catalog-list-item:hover,
.catalog-list-item.is-active {
    background: #f3f5ff;
    color: var(--warehouse-blue);
}

.catalog-list-item img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
}

.catalog-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 16px;
}

.catalog-promo-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #111;
}

.catalog-promo-card::after,
.mega-preview::after,
.collection-promo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 12, 0.05), rgba(5, 5, 12, 0.72));
    z-index: 1;
}

.catalog-promo-card img,
.collection-promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.catalog-promo-card:hover img,
.collection-promo-card:hover img {
    transform: scale(1.08);
}

.catalog-promo-card span,
.catalog-promo-card small,
.catalog-promo-card strong {
    position: relative;
    z-index: 2;
}

.catalog-promo-card span {
    font-size: 1.35rem;
    font-family: var(--heading-font);
    font-weight: 900;
}

.catalog-promo-card small {
    max-width: 260px;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.82);
}

.catalog-promo-card strong {
    color: var(--warehouse-yellow);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.category-nav {
    z-index: 1030;
    background: #fff;
}

.category-nav .mega-menu-item {
    display: list-item;
}

.category-menu-link {
    position: relative;
    padding: 17px 0;
    color: var(--warehouse-ink);
    font-size: 0.84rem;
    letter-spacing: 0;
    text-transform: none;
}

.category-menu-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 2px;
    background: var(--warehouse-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.category-menu-link:hover::after,
.category-menu-link.active::after {
    transform: scaleX(1);
}

.category-menu-sale,
.category-menu-theme {
    align-self: center;
    padding: 6px 12px;
    border-radius: 999px;
}

.category-menu-sale {
    background: #ffebee;
    color: #d71920;
}

.category-menu-theme {
    background: #e9edff;
    color: var(--warehouse-blue);
}

.category-menu-sale::after,
.category-menu-theme::after {
    display: none;
}

.mega-menu-panel {
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(12px);
    border-radius: 0;
}

.mega-menu-item:hover .mega-menu-panel {
    transform: translateY(0);
}

.mega-menu-warehouse {
    grid-template-columns: repeat(4, minmax(160px, 1fr)) minmax(240px, 0.9fr);
    gap: 0;
    width: min(1320px, calc(100vw - 48px));
    margin: 0 auto;
}

.mega-column {
    padding: 4px 24px 4px 0;
    margin-right: 24px;
    border-right: 1px solid var(--warehouse-line);
}

.mega-column h3 {
    font-size: 1rem;
    margin-bottom: 14px;
}

.mega-thumb-link {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: var(--warehouse-ink);
    text-decoration: none;
    font-weight: 700;
}

.mega-thumb-link:hover {
    color: var(--warehouse-blue);
}

.mega-thumb-link img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 6px;
}

.mega-view-more {
    display: inline-flex;
    margin-top: 12px;
    color: var(--warehouse-blue);
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
}

.mega-preview {
    min-height: 255px;
}

.mega-preview strong,
.mega-preview small {
    z-index: 2;
}

.collection-page-hero {
    padding: 30px 0 12px;
}

.collection-promo-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    gap: 18px;
}

.collection-promo-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: #111;
}

.collection-promo-card-large {
    min-height: 280px;
}

.collection-promo-card span,
.collection-promo-card small,
.collection-promo-card strong {
    position: relative;
    z-index: 2;
}

.collection-promo-card span {
    font-family: var(--heading-font);
    font-size: 1.7rem;
    font-weight: 900;
}

.collection-promo-card small {
    color: rgba(255, 255, 255, 0.82);
    margin: 6px 0;
}

.collection-promo-card strong {
    color: var(--warehouse-yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.footer-warehouse {
    padding-top: 0;
    background: #101018;
}

.footer-cta-strip {
    background: #fff;
    color: var(--warehouse-ink);
    padding: 46px 0;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-cta-card {
    text-align: center;
    color: var(--warehouse-ink);
    text-decoration: none;
    padding: 30px 20px;
    border: 1px solid var(--warehouse-line);
    border-radius: 8px;
}

.footer-cta-card span,
.footer-cta-card strong,
.footer-cta-card em {
    display: block;
}

.footer-cta-card span {
    color: var(--warehouse-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-cta-card strong {
    margin: 8px 0 16px;
    font-family: var(--heading-font);
    font-size: 1.35rem;
}

.footer-cta-card em {
    width: max-content;
    margin: 0 auto;
    padding: 9px 18px;
    border-radius: 999px;
    background: #ff8a3d;
    color: #fff;
    font-style: normal;
    font-weight: 900;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.15fr;
    gap: 42px;
    padding: 58px 0 34px;
}

.footer-support a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.support-person img {
    width: 180px;
    max-width: 100%;
    margin-top: 20px;
}

.newsletter-title {
    display: block;
    color: #fff;
    margin: 22px 0 10px;
}

.footer-logo {
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 900;
    text-decoration: none;
}

.payment-icons {
    display: inline-flex;
    gap: 10px;
    color: #fff;
    font-size: 1.55rem;
}

.floating-cart-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1040;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--warehouse-blue);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(3, 0, 155, 0.28);
}

.floating-cart-button:hover {
    color: var(--warehouse-yellow);
}

/* Xtra screenshot storefront layer */
.warehouse-header .header-shell {
    min-height: 78px;
}

.warehouse-header .navbar-brand {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.catalog-toggle {
    border-radius: 999px;
    padding: 0 26px;
}

.warehouse-header .search-input-group,
.warehouse-header .search-field,
.warehouse-header .search-btn {
    height: 52px;
}

.warehouse-header .search-btn {
    background: #fff;
    font-size: 1.25rem;
}

.verified-badge {
    min-height: 34px;
    padding: 4px 8px;
    background: #fff;
    color: var(--warehouse-blue);
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.verified-badge::after {
    content: '★★★★★';
    margin-left: 4px;
    color: #35b96f;
    letter-spacing: 0.05em;
}

.trust-bar-grid {
    min-height: 35px;
}

.trust-bar-item {
    font-size: 0.86rem;
}

.xtra-hero-section {
    padding: 18px 0 28px;
    background: #fff;
}

.xtra-hero-grid {
    display: grid;
    grid-template-columns: 0.72fr 0.72fr 1.48fr;
    gap: 18px;
}

.xtra-hero-left {
    display: grid;
    gap: 18px;
}

.xtra-hero-card {
    position: relative;
    min-height: 222px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 6px;
    background: #e9eef6;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.xtra-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02));
}

.xtra-hero-card-medium,
.xtra-hero-card-large {
    min-height: 462px;
}

.xtra-hero-card-medium {
    color: #050505;
}

.xtra-hero-card-medium::after {
    display: none;
}

.xtra-hero-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.xtra-hero-card:hover img {
    transform: scale(1.06);
}

.xtra-card-badge {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    padding: 6px 12px;
    background: var(--warehouse-blue);
    color: #fff;
    border-radius: 0 0 6px 0;
    font-weight: 900;
}

.xtra-hero-card-copy {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.xtra-hero-card-copy small,
.xtra-hero-card-copy strong,
.xtra-hero-card-copy em {
    display: block;
}

.xtra-hero-card-copy small {
    font-size: 1.05rem;
    font-weight: 900;
}

.xtra-hero-card-copy strong {
    max-width: 380px;
    margin: 8px 0 12px;
    font-family: var(--heading-font);
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.04;
}

.xtra-hero-card-small .xtra-hero-card-copy strong {
    font-size: 1.55rem;
}

.xtra-hero-card-copy em {
    width: max-content;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--warehouse-yellow);
    color: #0d0d0d;
    font-style: normal;
    font-weight: 900;
}

.xtra-hero-card-small .xtra-hero-card-copy em {
    padding: 0;
    background: transparent;
    color: var(--warehouse-yellow);
}

.xtra-floating-cart {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #48cd79;
    color: #fff;
    font-size: 1.45rem;
}

.xtra-section {
    padding: 40px 0;
    background: #fff;
}

.xtra-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.xtra-section-heading h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    font-weight: 900;
}

.xtra-section-heading a {
    color: var(--warehouse-blue);
    text-decoration: none;
    font-weight: 900;
}

.xtra-collection-card {
    display: block;
    color: var(--warehouse-ink);
    text-decoration: none;
}

.xtra-collection-image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #f2f2f2;
}

.xtra-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.xtra-collection-card:hover img {
    transform: scale(1.07);
}

.xtra-collection-card strong {
    display: block;
    margin-top: 16px;
    font-size: 0.96rem;
    font-weight: 900;
}

.xtra-products-section {
    padding-top: 28px;
}

.xtra-product-slider-wrap {
    position: relative;
}

.xtra-slider-next {
    position: absolute;
    right: 0;
    top: 38%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #0b0b0b;
    font-size: 1.5rem;
}

.xtra-product-card {
    position: relative;
    background: #fff;
    transition: transform 0.2s ease;
}

.xtra-product-card:hover {
    transform: translateY(-4px);
}

.xtra-product-media {
    position: relative;
    min-height: 300px;
    background: #fff;
}

.xtra-product-image {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
}

.xtra-product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.28s ease, transform 0.38s ease;
}

.xtra-product-img-secondary {
    opacity: 0;
}

.xtra-product-card:hover .xtra-product-img-primary {
    opacity: 0;
    transform: scale(1.05);
}

.xtra-product-card:hover .xtra-product-img-secondary {
    opacity: 1;
    transform: scale(1.05);
}

.xtra-product-badge {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 4px;
    background: var(--warehouse-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
}

.xtra-product-badge-red {
    background: #e23b3b;
}

.xtra-product-badge-dark {
    background: #111;
}

.xtra-product-actions,
.product-action-icons {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    display: grid;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.xtra-product-card:hover .xtra-product-actions,
.xtra-product-card:hover .product-action-icons {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.xtra-icon-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--warehouse-line);
    border-radius: 50%;
    background: #fff;
    color: #111;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.xtra-icon-btn:hover,
.xtra-icon-btn:focus-visible,
.xtra-icon-btn.is-active {
    background: var(--warehouse-blue);
    color: #fff;
    transform: translateY(-2px);
}

.xtra-icon-btn:focus-visible {
    outline: 2px solid var(--warehouse-yellow);
    outline-offset: 2px;
}

.product-action-icons i {
    pointer-events: none;
}

.xtra-product-info {
    padding-top: 14px;
}

.xtra-product-brand {
    display: block;
    color: #9a9a9a;
    font-size: 0.82rem;
}

.xtra-product-title {
    display: block;
    min-height: 44px;
    margin: 5px 0;
    color: #050505;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.35;
}

.xtra-product-delivery {
    display: grid;
    gap: 4px;
    color: #61c989;
    font-size: 0.84rem;
}

.xtra-product-delivery span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.xtra-product-delivery .is-danger {
    color: #df3737;
}

.xtra-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 9px;
}

.xtra-price {
    font-size: 1rem;
    color: #050505;
}

.xtra-old-price {
    color: #9a9a9a;
    text-decoration: line-through;
}

.xtra-color-dots {
    display: flex;
    gap: 9px;
    margin-top: 12px;
}

.xtra-color-dots span {
    width: 20px;
    height: 20px;
    border: 1px solid #dedede;
    border-radius: 50%;
}

.xtra-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: var(--warehouse-blue);
    text-decoration: none;
    font-weight: 900;
}

.xtra-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.xtra-promo-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 0.7fr;
    gap: 18px;
}

.xtra-promo-banner {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 34px;
}

.xtra-promo-banner-large {
    min-height: 420px;
}

.xtra-promo-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
}

.xtra-promo-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.xtra-promo-banner:hover img {
    transform: scale(1.06);
}

.xtra-promo-banner span {
    position: relative;
    z-index: 2;
}

.xtra-promo-banner small,
.xtra-promo-banner strong,
.xtra-promo-banner em {
    display: block;
}

.xtra-promo-banner strong {
    max-width: 380px;
    font-family: var(--heading-font);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
}

.xtra-promo-banner em {
    width: max-content;
    margin-top: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--warehouse-yellow);
    color: #111;
    font-style: normal;
    font-weight: 900;
}

.xtra-search-heading {
    padding: 10px 14px 6px;
    color: #6e6e78;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.xtra-search-row {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    color: #111;
    text-decoration: none;
}

.xtra-search-row:hover {
    background: #f5f6ff;
}

.xtra-search-row img,
.xtra-search-row > span:first-child {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 6px;
    background: #f2f2f2;
}

.xtra-search-row strong,
.xtra-search-row small {
    display: block;
}

.xtra-search-row small {
    color: var(--warehouse-blue);
    font-weight: 800;
}

.xtra-search-row .xtra-search-submeta {
    color: #777;
    font-weight: 700;
}

.xtra-search-empty,
.xtra-search-loading,
.xtra-search-view-all {
    display: block;
    padding: 14px;
    color: #555;
    text-decoration: none;
}

.xtra-search-view-all {
    border-top: 1px solid var(--warehouse-line);
    color: var(--warehouse-blue);
    font-weight: 900;
}

.xtra-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 14px 12px;
}

.xtra-search-chips a {
    padding: 6px 10px;
    border: 1px solid var(--warehouse-line);
    border-radius: 999px;
    color: #111;
    text-decoration: none;
    font-size: 0.8rem;
}
