:root {
    --hl-ink: #111133;
    --hl-blue: #2f4ba0;
    --hl-blue-dark: #263c82;
    --hl-orange: #f3791f;
    --hl-orange-dark: #db6913;
    --hl-red: #ed4238;
    --hl-gold: #b48c42;
    --hl-navy: #0e1132;
    --hl-green: #2e9e5b;
    --hl-dark: #111133;
    --hl-line: rgba(17, 17, 51, 0.18);
}

/* ============================================================
   SHARED HEADER  (site-wide)
   ============================================================ */
.gb-store-selector-btn--selected {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-align: left;
    cursor: default;
}

.gb-store-selector-btn--selected .gb-store-selector-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.gb-store-selector-btn--selected .gb-store-selector-text small {
    font-size: 10px;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.gb-store-selector-btn--selected .gb-store-selector-name {
    font-weight: 700;
    font-size: 14px;
}

/* ============================================================
   PRODUCT PAGE REDESIGN  (scoped under .gb-product-redesign)
   ============================================================ */
.gb-product-redesign {
    font-family: 'Open Sans', sans-serif;
}

/* --- Category + title --- */
.gb-product-redesign .gb-pd-category {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--hl-ink);
    margin: 0 0 .5rem;
}

.gb-product-redesign .gb-pd-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.12;
    color: #3651A4;
    margin: 0 0 1rem;
}

/* --- Pricing --- */
.gb-product-redesign .gb-pd-price,
.gb-product-redesign .gb-pd-price-was {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 1;
    margin: 0;
}

.gb-product-redesign .gb-pd-price {
    color: var(--hl-ink);
}

.gb-product-redesign .gb-pd-price-was {
    color: #9aa0a6;
    text-decoration: line-through;
}

.gb-product-redesign .gb-pd-price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

/* --- Divider rule between blocks --- */
.gb-product-redesign hr.gb-pd-rule {
    border: 0;
    border-top: 1px solid var(--hl-line);
    opacity: 1;
    margin: 1.25rem 0;
}

/* old wishlist placements replaced by the buy-box heart */
.gb-product-redesign #btnAddWishlistContailner {
    display: none !important;
}

/* ============================================================
   BUY BOX  (qty stepper, wishlist heart, add to cart / buy now)
   ============================================================ */
.gb-product-redesign .gb-pd-buybox {
    margin-bottom: 1.25rem;
}

.gb-product-redesign .gb-pd-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gb-product-redesign .gb-pd-qty-label {
    color: var(--hl-ink);
    margin: 0;
}

/* boxed quantity stepper */
.gb-product-redesign .gb-pd-qty {
    position: relative;
    border: 1px solid var(--hl-line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.gb-product-redesign button.gb-qty-btn {
    height: stretch;
}

.gb-product-redesign .gb-pd-qty input[type="number"] {
    max-width: 2rem;
    border: 0;
    box-shadow: none;
    text-align: center;
    font-weight: 700;
    color: var(--hl-ink);
    background: transparent;
}

.gb-product-redesign .gb-pd-qty input[type="number"]::-webkit-outer-spin-button,
.gb-product-redesign .gb-pd-qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.gb-product-redesign .gb-pd-qty input[type="number"] {
    -moz-appearance: textfield;
}

.gb-product-redesign .gb-pd-qty .gb-input-number-spinners {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--hl-line);
}

.gb-product-redesign .gb-pd-qty .gb-input-number-spinners span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 50%;
    font-size: 9px;
    color: var(--hl-ink);
    cursor: pointer;
    line-height: 1;
}

.gb-product-redesign .gb-pd-qty .gb-input-number-spinners span:hover {
    color: var(--hl-blue);
}

/* wishlist heart */
.gb-product-redesign .gb-pd-heart {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid var(--hl-line);
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--hl-blue);
    transition: all .15s ease;
}

.gb-product-redesign .gb-pd-heart:hover {
    border-color: var(--hl-blue);
    color: var(--hl-blue);
}

.gb-product-redesign .gb-pd-heart.btnAddedToWishlist {
    background: var(--hl-blue);
    border-color: var(--hl-blue);
    color: #fff;
}

.gb-product-redesign .gb-pd-heart svg {
    width: 20px;
    height: 20px;
}

.gb-product-redesign .gb-pd-heart span {
    display: none;
}

.gb-product-redesign .gb-pd-heart img {
    width: 20px;
    height: 20px;
}

/* action buttons */
.gb-product-redesign .gb-pd-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gb-product-redesign #btn-add-to-cart,
.gb-product-redesign #btn-buy-now {
    flex: 1 1 0;
    min-width: 160px;
    border: 0;
    border-radius: 6px;
    padding: .8rem 1.25rem;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.gb-product-redesign #btn-add-to-cart {
    background: var(--hl-blue);
}

.gb-product-redesign #btn-add-to-cart:hover {
    background: var(--hl-blue-dark);
}

.gb-product-redesign #btn-buy-now {
    background: var(--hl-orange);
}

.gb-product-redesign #btn-buy-now:hover {
    background: var(--hl-orange-dark);
}

.gb-product-redesign #btn-add-to-cart img {
    filter: brightness(0) invert(1);
    width: 18px;
}

/* ============================================================
   STORE AVAILABILITY PANEL
   ============================================================ */
.gb-product-redesign .gb-pd-store {
    border: 1px solid #2f4ba01f;
    background: #F9F9F9;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.gb-product-redesign .gb-pd-store-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gb-product-redesign .gb-pd-store-row + .gb-pd-store-row {
    margin-top: .65rem;
    padding-top: .65rem;
    border-top: 1px solid var(--hl-line);
}

.gb-product-redesign .gb-pd-store-avail {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    color: var(--hl-ink);
}

.gb-product-redesign .gb-pd-store-check,
.gb-product-redesign .gb-pd-store-tick {
    color: var(--hl-green);
}

.gb-product-redesign .gb-pd-store-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.gb-product-redesign .gb-pd-store-stock {
    font-weight: 700;
    color: var(--hl-green);
    white-space: nowrap;
}

.gb-product-redesign .gb-pd-store-stock span {
    color: var(--hl-green);
}

.gb-product-redesign .gb-pd-store-link {
    background: 0;
    border: 0;
    padding: 0;
    color: var(--hl-blue);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.gb-product-redesign .gb-pd-store-delivery {
    font-weight: 600;
    color: var(--hl-ink);
}

/* ============================================================
   GALLERY  (main image + right thumbnail strip)
   ============================================================ */
.gb-product-redesign .gb-pd-gallery {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gb-product-redesign .gb-pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 0 0 84px;
    max-height: 442px;
    overflow-y: auto;
}

.gb-product-redesign .gb-pd-thumbs .item {
    width: 84px;
    height: 84px;
    border: 1px solid var(--hl-line);
    border-radius: 5px;
    padding: 4px;
    cursor: pointer;
    background: #fff;
}

.gb-product-redesign .gb-pd-thumbs .item.is-active {
    border-color: var(--hl-ink);
    border-width: 2px;
}

.gb-product-redesign .gb-pd-thumbs .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gb-product-redesign .gb-main-product-image {
    flex: 1 1 auto;
    border: 2px solid var(--hl-line);
    border-radius: 5px;
}

.gb-product-redesign .gb-main-product-image a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.gb-product-redesign .gb-product-label-oos {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 27px;
    background: #ED4238;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 0 12px;
    border-radius: 7px 0 7px 0;
}

.gb-product-redesign .gb-product-label-oos::before,
.gb-product-redesign .gb-product-label-oos::after {
    content: none;
}

@media (max-width: 991.98px) {
    .gb-product-redesign .gb-pd-gallery {
        flex-direction: column;
    }
    .gb-product-redesign .gb-pd-thumbs {
        flex-direction: row;
        flex: 0 0 auto;
        max-height: none;
        overflow-x: auto;
        width: 100%;
    }
}

/* ============================================================
   INSTALLMENTS
   ============================================================ */
.gb-product-redesign .gb-pd-installments {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1.25rem;
    border-top: 1px solid #CFCFD6;
    border-bottom: 1px solid #CFCFD6;
}

.gb-product-redesign .gb-pd-installments .gb-pd-inst {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
    color: #111133;
}

.gb-product-redesign .gb-pd-installments img {
    height: 20px;
    width: auto;
}

/* --- Pre-order chip beside the price --- */
.gb-product-redesign .gb-pd-preorder-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    min-height: 49px;
    padding: 6px 16px;
    background: linear-gradient(90deg, #F17F38 0%, #F8B63B 100%);
    border-radius: 5px;
    color: #fff;
}

.gb-product-redesign .gb-pd-preorder-chip img {
    width: 27px;
    height: 27px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.gb-product-redesign .gb-pd-preorder-chip-label,
.gb-product-redesign .gb-pd-preorder-chip-date {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
}

.gb-product-redesign .gb-pd-preorder-chip-label {
    font-weight: 400;
}

.gb-product-redesign .gb-pd-preorder-chip-date {
    font-weight: 700;
}

/* ============================================================
   SOLD-OUT / NOTIFY BOX
   ============================================================ */
.gb-product-redesign .gb-oos-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--hl-red);
    margin-bottom: 1rem;
}

.gb-product-redesign #form-notify-stock .form-control {
    flex: 1 1 auto;
    min-width: 0;
    height: 53px;
    border: 2px solid #3651A4;
    border-right: 0;
    border-radius: 7px 0 0 7px;
    padding: .7rem 1rem;
}

.gb-product-redesign #form-notify-stock .btnNotifyWhenAvailable {
    flex: 0 0 auto;
    height: 53px;
    background: #3651A4;
    border: 0;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 0 7px 7px 0;
    padding: .7rem 1.4rem;
}

.gb-product-redesign #form-notify-stock .btnNotifyWhenAvailable:hover {
    background: #2e458b;
}

@media (max-width: 575.98px) {
    .gb-product-redesign #form-notify-stock .form-control {
        border-right: 2px solid #3651A4;
        border-radius: 7px;
    }
    .gb-product-redesign #form-notify-stock .btnNotifyWhenAvailable {
        border-radius: 7px;
    }
}

/* ============================================================
   DESCRIPTION
   ============================================================ */
.gb-product-redesign .gb-text-editor-content {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
}

/* ============================================================
   YOU MAY ALSO LIKE  (carousel)
   ============================================================ */
.gb-pd-suggest {
    position: relative;
}

.gb-pd-suggest .gb-pd-suggest-bar {
    background: linear-gradient(90deg, #3551A4 0%, #389FD8 100%);
    border-radius: 5px;
    padding: .9rem 1.5rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
}

.gb-pd-suggest .gb-pd-suggest-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin: 0;
}

.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav {
    position: absolute;
    top: .55rem;
    right: 1.25rem;
    display: flex;
    gap: .5rem;
    margin: 0;
}

.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav button.owl-prev,
.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav button.owl-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav button.owl-prev.disabled,
.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav button.owl-next.disabled {
    opacity: .45;
}

.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav button.owl-prev:hover,
.gb-pd-suggest .gb-pd-suggest-carousel .owl-nav button.owl-next:hover {
    background: #fff;
    color: var(--hl-blue);
}

.gb-pd-suggest .gb-pd-suggest-carousel .item {
    padding: .5rem;
    height: 100%;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
#gb-cart-drawer {
    width: 420px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    #gb-cart-drawer {
        width: 100vw;
    }
}

.gb-cart-drawer-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    position: relative;
    line-height: 1;
}

.gb-cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 0.75rem;
    flex-shrink: 0;
}

.gb-cart-drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hl-blue);
    margin: 0;
}

.gb-cart-drawer-close {
    background: none;
    border: none;
    color: var(--hl-ink);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.gb-cart-drawer-divider {
    border-color: var(--hl-line);
    opacity: 1;
}

.gb-cart-drawer-body {
    padding: 0 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.gb-cart-drawer-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hl-line);
}

.gb-cart-drawer-item-img-link {
    flex-shrink: 0;
}

.gb-cart-drawer-item-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 4px;
    max-width: 72px;
}

.gb-cart-drawer-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gb-cart-drawer-item-name {
    font-weight: 600;
    color: var(--hl-blue);
    font-size: 0.875rem;
    display: block;
    text-decoration: none;
    line-height: 1.3;
}

.gb-cart-drawer-item-name:hover {
    color: var(--hl-blue-dark);
    text-decoration: underline;
}

.gb-cart-drawer-item-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.gb-cart-drawer-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(17, 17, 51, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.gb-cart-drawer-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hl-ink);
    transition: background 0.1s;
}

.gb-cart-drawer-qty-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.gb-cart-drawer-qty-input {
    width: 36px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hl-ink);
    background: transparent;
    padding: 0;
    -moz-appearance: textfield;
}

.gb-cart-drawer-qty-input::-webkit-outer-spin-button,
.gb-cart-drawer-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.gb-cart-drawer-item-remove {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--hl-ink);
    opacity: 0.5;
    line-height: 1;
    transition: opacity 0.15s;
    display: flex;
    align-items: center;
}

.gb-cart-drawer-item-remove:hover {
    opacity: 1;
}

.gb-cart-drawer-item-price {
    margin-left: auto;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    color: var(--hl-ink);
}

.gb-cart-drawer-empty {
    padding: 3rem 0;
    text-align: center;
    color: #888;
}

.gb-cart-drawer-loading {
    padding: 2rem 0;
}

.gb-cart-drawer-footer {
    padding: 0 1.5rem 1.5rem;
    flex-shrink: 0;
}

.gb-cart-drawer-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0 0.2rem;
}

.gb-cart-drawer-subtotal-label,
.gb-cart-drawer-subtotal-val {
    font-weight: 700;
    font-size: 1rem;
    color: var(--hl-blue);
}

.gb-cart-drawer-shipping-note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.gb-cart-drawer-checkout-btn {
    display: block;
    background-color: var(--hl-blue);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
}

.gb-cart-drawer-checkout-btn:hover:not(:disabled) {
    background-color: var(--hl-blue-dark);
    color: #fff;
}

.gb-cart-drawer-checkout-btn:disabled {
    opacity: 0.65;
    cursor: default;
}

.gb-cart-drawer-view-cart-link {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--hl-blue);
    text-decoration: underline;
}

.gb-cart-drawer-view-cart-link:hover {
    color: var(--hl-blue-dark);
}

.gb-drawer-loading {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.15s;
}

/* ============================================================
   PRODUCT CARD QTY STEPPER
   ============================================================ */
.gb-pc-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(17, 17, 51, 0.25);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.gb-pc-qty-btn {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hl-ink);
    padding: 0;
    flex-shrink: 0;
    transition: background 0.1s;
}

.gb-pc-qty-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.06);
}

.gb-pc-qty-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.gb-pc-qty-val {
    width: 26px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hl-blue);
    flex-shrink: 0;
    line-height: 26px;
}

.product-badge {
    color: white;
    font-size: 14px;
    font-weight: bold;
    left: 0;
    top: 0;
    border-radius: 7px 0 7px 0;
    background: #3651A4;
}

/* ============================================================
   SEARCH CLEAR BUTTON
   ============================================================ */

.search-clear-btn {
    position: absolute;
    right: 40px; /* sits immediately left of the 32px search button + 4px gap */
    top: 4px;
    height: 32px;
    width: 24px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, .6);
    border-radius: 3px;
    z-index: 2;
    transition: color .15s ease;
}

.search-clear-btn:hover {
    color: #fff;
}

/* Widen input right padding to clear both buttons when X is visible */
header.gb-site-header .search-bar input,
header.gb-site-header .mobile-search-bar input {
    padding-right: 72px;
    outline: none;
}

/* ============================================================
   INSTANT SEARCH RESULTS
   ============================================================ */

.suggestion-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(17, 17, 51, .1);
    box-shadow: 0 8px 24px rgba(17, 17, 51, .12);
    overflow-x: hidden;
}

/* Desktop: attached dropdown below the input */
#searchResults .suggestion-dropdown {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1051;
    max-height: 480px;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
    border-top: none;
}

/* Mobile: fullscreen overlay below the search bar */
#mobileSearchResults .suggestion-dropdown {
    display: block;
    position: fixed;
    top: .75rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1051;
    overflow-y: auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -4px 24px rgba(17, 17, 51, .12);
}

/* Section headers */
.suggestion-section-header {
    padding: 10px 16px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9aa0a6;
}

.suggestion-section-header:not(:first-child) {
    border-top: 1px solid rgba(17, 17, 51, .07);
    margin-top: 4px;
    padding-top: 14px;
}

/* Product rows */
.suggestion-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--hl-ink, #111133);
    transition: background .12s ease;
    overflow: hidden;
}

.suggestion-item a:hover {
    background: #f5f6fa;
}

.suggestion-item-img {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f6fa;
    padding: 3px;
}

.suggestion-item-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.suggestion-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--hl-ink, #111133);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.suggestion-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--hl-blue, #2f4ba0);
    display: block;
}
