/* bundled source: assets/css/single-product-overrides.css */
/**
 * Pricetracker - Single product visual overrides
 * Keeps single-page UI isolated from theme CSS collisions.
 */

/* Price box: minimal, no card styling */
.pt-price-box {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Price inline: single line format */
.pt-price-box__compare.pt-price-box__compare--inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.4rem 0.3rem;
    white-space: nowrap;
    line-height: 1.35;
    letter-spacing: normal;
    word-spacing: normal;
}

.pt-price-box__compare--inline > * {
    display: inline-flex;
    align-items: baseline;
}

.pt-price-box__compare--inline .pt-price-box__label,
.pt-price-box__compare--inline .pt-price-box__separator,
.pt-price-box__compare--inline .pt-price-box__stores,
.pt-price-box__compare--inline .pt-price-box__max,
.pt-price-box__compare--inline .pt-price-box__max span,
.pt-price-box__link,
.pt-price-box__link .pt-price-box__amount,
.pt-price-box__link .pt-price-box__amount .pt-price-box__currency {
    font-size: 1.05rem;
}
.pt-price-box__compare--inline .pt-price-box__label,
.pt-price-box__compare--inline .pt-price-box__separator,
.pt-price-box__compare--inline .pt-price-box__max,
.pt-price-box__compare--inline .pt-price-box__max span,
.pt-price-box__compare--inline .pt-price-box__stores {
    color: var(--pt-color-gray-700);
}

/* Price link: same color as line, underline (removed on hover) */
.pt-price-box__link {
    color: var(--pt-color-gray-700);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    line-height: 1.35;
}
.pt-price-box__link:hover {
    color: var(--pt-color-gray-700);
    text-decoration: none;
}
.pt-price-box__link .pt-price-box__amount,
.pt-price-box__link .pt-price-box__amount .pt-price-box__currency {
    font-weight: 600;
    color: var(--pt-color-gray-700);
}

.pt-price-box__compare--inline .pt-price-box__max {
    color: var(--pt-color-gray-700);
    font-weight: 400;
}
.pt-price-box__compare--inline .pt-price-box__max span {
    font-weight: 400;
}
.pt-price-box__compare--inline .pt-price-box__separator {
    margin: 0 0.1rem;
}
.pt-price-box__compare--inline .pt-price-box__stores {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 400;
    color: var(--pt-color-gray-700);
}
.pt-price-box__compare--inline .pt-price-box__stores::before {
    content: '•';
    color: var(--pt-color-gray-400, #9ca3af);
    font-weight: 700;
    line-height: 1;
}

/* Breadcrumb home: icon only, hide "Hem" text visually */
.pt-breadcrumbs__link--home {
    display: inline-flex;
    align-items: center;
}
.pt-breadcrumbs__link--home .pt-breadcrumbs__home-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* Läs mer: same color as short description, underline on hover only */
.pt-hero__read-more-link {
    font-size: inherit;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
}
.pt-hero__read-more-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pt-hero__desc {
    font-size: 1.05rem !important;
    color: var(--pt-color-gray-700, #374151) !important;
    line-height: 1.5 !important;
}

/* Hero grid: 3 columns so mini chart sits on same row as gallery + info */
@media (min-width: 768px) {
    .pt-hero__grid {
        grid-template-columns: minmax(0, 380px) 1fr minmax(0, 270px) !important;
    }
    .pt-hero__chart {
        grid-column: auto !important;
    }
}
.pt-hero__chart {
    justify-self: end !important;
    margin-left: auto !important;
}
@media (max-width: 767px) {
    .pt-hero__grid {
        grid-template-columns: 1fr !important;
    }
    .pt-hero__chart {
        justify-self: stretch !important;
        margin-left: 0 !important;
    }
}

/* Bevaka pris button under mini chart */
.pt-chart-card__footer {
    padding: 0 1rem 0.75rem;
    display: flex;
    justify-content: center;
}

.pt-chart-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff !important;
    background: #1f2937 !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.pt-chart-card__cta:active {
    transform: scale(0.98);
}

.pt-chart-card__cta .pt-icon--sm {
    width: 0.9rem;
    height: 0.9rem;
}

/* Mini-chart tooltip: absolute inside .pt-chart-card__body (position:relative) */
#pt-mini-chart-tooltip {
    position: absolute !important;
    transform: none !important;
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14), 0 6px 14px rgba(15, 23, 42, 0.08) !important;
    padding: 0.85rem 1rem !important;
    min-width: 138px;
    white-space: nowrap;
    z-index: 40 !important;
}

#pt-mini-chart-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border: 8px solid transparent;
    border-top-color: #ffffff !important;
    filter: drop-shadow(0 2px 2px rgba(15, 23, 42, 0.08));
    transform: translateX(-50%);
}

#pt-mini-chart-tooltip .pt-chart-tooltip__date {
    color: #6b7280 !important;
    font-size: 0.78rem !important;
    line-height: 1.35;
    margin-bottom: 0.28rem;
}

#pt-mini-chart-tooltip .pt-chart-tooltip__price {
    color: #111827 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.05;
}

/* Advanced price history chart tooltip - compact light design */
#pt-chart-tooltip.pt-chart-tooltip {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06) !important;
    padding: 10px 12px !important;
    min-width: 132px;
    max-width: min(300px, calc(100vw - 24px));
    overflow: visible;
    text-align: left;
    transform: translate(-50%, calc(-100% - 10px));
    pointer-events: none;
    transition: opacity 0.15s ease, left 0.12s ease-out, top 0.12s ease-out;
}
#pt-chart-tooltip.pt-chart-tooltip[aria-hidden="true"] {
    opacity: 0 !important;
    visibility: hidden;
}
#pt-chart-tooltip.pt-chart-tooltip:not([aria-hidden="true"]) {
    opacity: 1;
    visibility: visible;
}
#pt-chart-tooltip.pt-chart-tooltip::after {
    content: none;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: #fff;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}
#pt-chart-tooltip .pt-tooltip-price {
    display: inline-flex;
    align-items: baseline;
    color: #0c0a09 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

#pt-chart-tooltip .pt-tooltip-price-old {
    color: #9ca3af !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: line-through;
    letter-spacing: 0;
    margin-right: 6px;
}
#pt-chart-tooltip .pt-tooltip-date {
    color: #78716c !important;
    font-size: 11px !important;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4px !important;
}

#pt-chart-tooltip .pt-tooltip-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 8px;
}

#pt-chart-tooltip .pt-tooltip-badge {
    color: #2563eb;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#pt-chart-tooltip .pt-tooltip-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin-bottom: 3px;
}

#pt-chart-tooltip .pt-tooltip-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 5px;
}

#pt-chart-tooltip .pt-tooltip-line__dot,
#pt-chart-tooltip .pt-tooltip-chip__dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 999px;
}

/* Butiks-logo i tooltipen — samma bild som prislistan, liten rundad bricka.
   Renderas i stället för färgpricken när backend gav en logo-URL; faller
   tillbaka på pricken (pt-tooltip-logo-fallback) om bilden inte laddar. */
#pt-chart-tooltip .pt-tooltip-logo {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 4px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* "via Prisjakt/PriceRunner"-källbricka i tooltipen + dropdownen — EXAKT samma
   delade badge som prislistan (sourceBadgeHtml → .pt-history__source*).
   Sajten kör HAS-LOGO-läget: "via" + den uppladdade --ft-source-logo-*-bilden i
   NATURLIG storlek (ingen nedskalning — ägaren avvisade det). Vi sätter bara
   placering + "via"-textens stil (11px grå #6b7280, gap 4px); logons storlek +
   bild ärvs från de delade .pt-history__source-logo + --prisjakt/--pricerunner-
   reglerna (single-product.css). Sätt ALDRIG `background`-shorthand på
   .pt-history__source-logo (nollar den uppladdade loggan). */
#pt-chart-tooltip .pt-tooltip-src {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 6px;
}
#pt-chart-tooltip .pt-tooltip-src .pt-history__source {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
}

.pt-advanced-history__dropdown-source {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 8px;
}
.pt-advanced-history__dropdown-source .pt-history__source {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
}

#pt-chart-tooltip .pt-tooltip-line__name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    max-width: 190px;
    overflow: hidden;
    color: #292524;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#pt-chart-tooltip .pt-tooltip-line__tag {
    color: #78716c;
    font-size: 10px;
    font-weight: 500;
}

#pt-chart-tooltip .pt-tooltip-line__stock {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 999px;
}

#pt-chart-tooltip .pt-tooltip-line__stock--in {
    background: #6fb16d;
}

#pt-chart-tooltip .pt-tooltip-line__stock--out {
    background: #d04f3f;
}

#pt-chart-tooltip .pt-tooltip-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#pt-chart-tooltip .pt-tooltip-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 18px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #f5f1ec;
    color: #292524;
    font-size: 10px;
    font-weight: 650;
    line-height: 1;
}
#pt-chart-tooltip .pt-tooltip-rows {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    text-align: left;
}

#pt-chart-tooltip .pt-tooltip-rows .pt-tooltip-row:not(:first-child) {
    display: none !important;
}
#pt-chart-tooltip .pt-tooltip-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    font-size: 0.8125rem;
    color: #111827;
}
#pt-chart-tooltip .pt-tooltip-row--active {
    font-weight: 650;
}
#pt-chart-tooltip .pt-tooltip-row__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex-shrink: 0;
}
#pt-chart-tooltip .pt-tooltip-row--active .pt-tooltip-row__dot {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px rgba(12, 10, 9, 0.08);
}
#pt-chart-tooltip .pt-tooltip-row__label {
    min-width: 0;
    color: #374151;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#pt-chart-tooltip .pt-tooltip-row__tag {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #6b7280;
}
#pt-chart-tooltip .pt-tooltip-row__stock {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    display: inline-block;
}
#pt-chart-tooltip .pt-tooltip-row__stock--in {
    background: #15803d;
}
#pt-chart-tooltip .pt-tooltip-row__stock--out {
    background: #b91c1c;
}
#pt-chart-tooltip .pt-tooltip-row__price {
    font-weight: 600;
    color: #0c0a09;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
#pt-chart-tooltip .pt-tooltip-row--active .pt-tooltip-row__price {
    font-weight: 700;
}
/* Multi-row tooltips: widen + left align when rows present */
#pt-chart-tooltip:has(.pt-tooltip-rows) {
    text-align: left !important;
    min-width: 240px;
    padding: 0.85rem 1rem !important;
}
#pt-chart-tooltip:has(.pt-tooltip-rows) .pt-tooltip-date {
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

/* Lightbox: backdrop */
.pt-lightbox__backdrop {
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Lightbox: fixed image area so nav buttons stay in place and all images same height */
.pt-lightbox__img-wrap {
    width: min(90vw, 880px) !important;
    height: 65vh !important;
    min-height: 400px !important;
    max-height: 600px !important;
}
/* Image fills fixed height container - all images render at same height */
.pt-lightbox__img {
    height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Lightbox buttons: darker for visibility on white images */
.pt-lightbox button.pt-lightbox__nav,
.pt-lightbox button.pt-lightbox__close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.42) !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
    transition: background 0.15s ease !important;
    z-index: 4 !important;
}

.pt-lightbox button.pt-lightbox__nav:hover,
.pt-lightbox button.pt-lightbox__close:hover {
    background: rgba(0, 0, 0, 0.55) !important;
}

.pt-lightbox button.pt-lightbox__nav:focus-visible,
.pt-lightbox button.pt-lightbox__close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5) !important;
    outline-offset: 2px !important;
}

/* Nav: match container width, sticky but below theme mega menu */
.pt-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 99;
}
.pt-nav-wrapper.is-sticky {
    z-index: 99;
}

.pt-nav {
    max-width: var(--pt-container-max);
    margin-left: auto;
    margin-right: auto;
}

/* Nav active tab: underline only, no background or color */
.pt-nav__tab--active {
    background: transparent !important;
    color: inherit !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}
.pt-nav__tab--active:hover {
    background: transparent !important;
    color: inherit !important;
}

/* Nav: hide store count if ever output again */
.pt-nav__count {
    display: none !important;
}

/* (gallery styles moved to dedicated GALLERY section below) */

/* =============================================
   Login Modal — MOVED OUT
   ---------------------------------------------
   The .pt-login-modal design now lives in ONE file:
   assets/css/login-modal.css (enqueued for every logged-out
   frontend request by Assets::enqueueLoginModalAssets()).
   Do NOT re-add .pt-login-modal rules here or in site-header.css.
   ============================================= */

/* =============================================
   User Popup (unified favorites + alerts)
   ============================================= */
.pt-user-popup { position: fixed; inset: 0; z-index: 10000; display: none; align-items: stretch; justify-content: flex-end; }
.pt-user-popup[hidden] { display: none !important; }
.pt-user-popup:not([hidden]) { display: flex !important; }
.pt-user-popup__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.35); cursor: pointer; animation: pt-user-popup-fade-in 0.2s ease; }
.pt-user-popup__panel {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
    transform: translateZ(0);
    contain: layout paint;
}
.pt-user-popup__header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--pt-color-gray-200); }
.pt-user-popup__title { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--pt-color-gray-900); }
#pt-user-popup button,
#pt-user-popup [role="button"] {
    appearance: none !important;
    -webkit-appearance: none !important;
}
#pt-user-popup .pt-user-popup__close,
#pt-user-popup button.pt-user-popup__close {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    color: var(--pt-color-gray-500, #6b7280) !important;
    cursor: pointer !important;
    border-radius: 999px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    line-height: 1 !important;
}
#pt-user-popup .pt-user-popup__close svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    pointer-events: none !important;
}
#pt-user-popup .pt-user-popup__close:hover,
#pt-user-popup .pt-user-popup__close:focus-visible {
    background: var(--pt-color-gray-100, #f3f4f6) !important;
    color: var(--pt-color-gray-900, #111827) !important;
}
/* Body */
.pt-user-popup__body {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-x: contain;
}
.pt-user-popup__panel-content {
    padding: 1rem 1.25rem;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
.pt-user-popup__panel-content[hidden] { display: none; }
.pt-user-popup__loading, .pt-user-popup__empty { color: var(--pt-color-gray-500); font-size: 0.875rem; margin: 0; }
/* Floating popup notice - sits inside the panel without pushing layout. */
#pt-user-popup .pt-user-popup__panel { position: relative; }
.pt-user-popup__notice {
    position: absolute !important;
    left: 50% !important;
    bottom: 92px !important;
    transform: translate(-50%, 6px) !important;
    z-index: 30 !important;
    padding: 0.55rem 0.95rem !important;
    margin: 0 !important;
    max-width: calc(100% - 32px) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: #111827 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 20px oklch(0.25 0.04 40 / 0.18) !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transition: opacity 0.15s ease, transform 0.15s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.pt-user-popup__notice.is-visible {
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
}
.pt-user-popup__notice[hidden] { display: none !important; }
/* Items (favorites list) */
.pt-user-popup__items { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.pt-user-popup__item { display: flex; align-items: center; gap: 0.75rem; width: 100%; min-width: 0; box-sizing: border-box; border-radius: 10px; transition: background 0.08s; }
.pt-user-popup__item:hover { background: var(--pt-color-gray-50); }
.pt-user-popup__item-link { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; max-width: 100%; text-decoration: none; color: inherit; padding: 0.4rem 0; }
#pt-user-popup .pt-user-popup__item-img {
    position: relative !important;
    isolation: isolate !important;
    background: #fff !important;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb) !important;
    padding: 4px;
}
#pt-user-popup .pt-user-popup__item-img::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-color: rgb(139 140 142 / 5%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
.pt-user-popup__item-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--pt-color-gray-100); }
.pt-user-popup__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 0;
    background: transparent !important;
}
.pt-user-popup__item-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.pt-user-popup__item-title { font-weight: 600; font-size: 0.85rem; color: var(--pt-color-gray-900); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pt-user-popup__item-price { font-size: 0.85rem; font-weight: 600; color: var(--pt-color-gray-800); }
.pt-user-popup__item-stores { font-size: 0.75rem; color: var(--pt-color-gray-500); }
.pt-user-popup__item-actions { display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0; margin-left: auto; padding-right: 0.15rem; }
.pt-user-popup__add-all-basket {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.5rem 0 !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--pt-color-gray-700, #374151) !important;
    background: var(--pt-color-gray-50, #f9fafb) !important;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    transition: background 0.1s, border-color 0.1s !important;
}
.pt-user-popup__add-all-basket:hover {
    background: #fff !important;
    border-color: var(--pt-color-gray-300, #d1d5db) !important;
    color: var(--pt-color-gray-900, #111827) !important;
}
/* Legacy `.pt-user-popup__item-basket` / `__item-remove` rules removed —
   the redesigned popup uses a stricter `#pt-user-popup .pt-user-popup__item-*`
   block further down in this file. */
/* Alert confirmation banner - compact */
.pt-user-popup__alert-confirm { display: flex; flex-direction: row; align-items: center; gap: 0.65rem; text-align: left; padding: 0.65rem 0.85rem; margin-bottom: 0.65rem; background: var(--pt-color-success-light); border-radius: 10px; }
.pt-user-popup__alert-confirm[hidden] { display: none; }
.pt-user-popup__alert-confirm-icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; color: var(--pt-color-success); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.pt-user-popup__alert-confirm-icon svg { width: 16px; height: 16px; }
.pt-user-popup__alert-confirm-text { flex: 1; min-width: 0; margin-bottom: 0; }
.pt-user-popup__alert-confirm-text strong { display: block; font-size: 0.82rem; color: var(--pt-color-gray-900); margin-bottom: 0.1rem; }
.pt-user-popup__alert-confirm-text p { margin: 0; font-size: 0.75rem; color: var(--pt-color-gray-600); }
.pt-user-popup__alert-confirm-ok { padding: 0.35rem 0.85rem; font-size: 0.78rem; font-weight: 600; color: #fff; background: var(--pt-color-gray-900); border: none; border-radius: 6px; cursor: pointer; transition: background 0.15s; white-space: nowrap; flex-shrink: 0; }
/* No hover background change - user prefers static appearance */

/* Group-title between product-alerts and basket-alerts in popup */
.pt-user-popup__alerts-group-title {
    font-size: 0.8rem;
    color: var(--pt-color-gray-500, #6b7280);
    font-weight: 600;
    margin: 0;
    padding: 0 0.2rem;
}
.pt-user-popup__alerts-group-title--spaced { margin-top: 0.75rem; }

/* Status message for the quick-create-alert flow inside the popup. The
   wrapper lives at the bottom of `.pt-user-popup__alert-quick` and is
   toggled by single-product-page.js when the create-alert AJAX fails. */
.pt-user-popup__alert-status {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
    background: var(--pt-color-gray-50, #f9fafb);
    color: var(--pt-color-gray-700, #374151);
}
.pt-user-popup__alert-status--error {
    background: #fef2f2;
    color: #b91c1c;
}

/* Create alert form */
/* Quick alert create in popup */
.pt-user-popup__alert-quick { padding: 0.75rem; margin-bottom: 0.75rem; background: var(--pt-color-gray-50); border-radius: 12px; border: 1px solid var(--pt-color-gray-200); }
.pt-user-popup__alert-quick-product { display: flex; align-items: center; gap: 0.75rem; }
.pt-user-popup__alert-quick-img { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; object-fit: contain; background: #fff; border: 1px solid var(--pt-color-gray-200); }
.pt-user-popup__alert-quick-info { flex: 1; min-width: 0; }
.pt-user-popup__alert-quick-name { display: block; font-weight: 600; font-size: 0.8rem; color: var(--pt-color-gray-900); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pt-user-popup__alert-quick-price { display: block; font-size: 0.75rem; color: var(--pt-color-gray-500); }
.pt-user-popup__alert-quick-btn { display: flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.75rem; font-size: 0.78rem; font-weight: 600; color: #fff; background: var(--pt-color-gray-900); border: none; border-radius: 8px; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background 0.1s; }
.pt-user-popup__alert-quick-btn:disabled { opacity: 0.6; cursor: not-allowed; }
/* Legacy alert form (kept for backward compat) */
.pt-user-popup__alert-create { padding: 1rem; margin-bottom: 0.75rem; background: var(--pt-color-gray-50); border-radius: 12px; border: 1px solid var(--pt-color-gray-200); }
.pt-user-popup__alert-product-card { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.pt-user-popup__alert-product-img { width: 48px; height: 48px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #fff; border: 1px solid var(--pt-color-gray-200); }
.pt-user-popup__alert-product-img img { width: 100%; height: 100%; object-fit: contain; }
.pt-user-popup__alert-product-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.pt-user-popup__alert-product-name { font-weight: 600; font-size: 0.85rem; color: var(--pt-color-gray-900); line-height: 1.3; }
.pt-user-popup__alert-product-price { font-size: 0.8rem; color: var(--pt-color-gray-500); }
.pt-user-popup__alert-product-price strong { color: var(--pt-color-gray-800); }
.pt-user-popup__alert-threshold-field { display: flex; flex: 1; }
.pt-user-popup__alert-threshold-hint { font-size: 0.75rem; color: var(--pt-color-gray-400); margin: 0.35rem 0 0; }
.pt-user-popup__input { width: 100%; padding: 0.45rem 0.6rem; font-size: 0.85rem; border: 1px solid var(--pt-color-gray-300); border-radius: 8px 0 0 8px; outline: none; box-sizing: border-box; }
.pt-user-popup__input:focus { border-color: var(--pt-color-primary); }
.pt-user-popup__input-suffix { display: flex; align-items: center; padding: 0 0.5rem; font-size: 0.8rem; font-weight: 500; color: var(--pt-color-gray-500); background: var(--pt-color-gray-100); border: 1px solid var(--pt-color-gray-300); border-left: none; border-radius: 0 8px 8px 0; }
.pt-user-popup__alert-create-btn { display: flex; align-items: center; justify-content: center; gap: 0.4rem; width: 100%; padding: 0.6rem 1rem; font-size: 0.85rem; font-weight: 600; color: #fff; background: var(--pt-color-gray-900); border: none; border-radius: 8px; cursor: pointer; white-space: nowrap; transition: background 0.1s; }
.pt-user-popup__alert-create-btn:hover { background: var(--pt-color-gray-700); }
.pt-user-popup__alert-create-btn:disabled { opacity: 0.6; cursor: not-allowed; }
/* Small spinner */
.pt-spinner--sm { width: 14px; height: 14px; border-width: 2px; display: inline-block; vertical-align: middle; }
/* Wishlists section in popup */
.pt-user-popup__wishlists-section { 
    margin-top: 16px !important; 
    border-top: 1px solid var(--pt-color-gray-200) !important; 
    padding-top: 16px !important; 
    display: block !important;
}
.pt-user-popup__wishlists-section[hidden] { display: none !important; }
.pt-user-popup__wishlists-header { 
    display: flex !important; 
    align-items: center !important; 
    justify-content: space-between !important; 
    margin-bottom: 10px !important; 
}
.pt-user-popup__wishlists-title { 
    font-size: 0.85rem !important; 
    font-weight: 600 !important; 
    color: var(--pt-color-gray-700) !important; 
    display: flex !important;
    align-items: center !important;
}
.pt-user-popup__wishlists-manage { 
    font-size: 0.75rem !important; 
    color: var(--pt-color-primary) !important; 
    text-decoration: none !important; 
    font-weight: 500 !important; 
}
.pt-user-popup__wishlists-manage:hover { text-decoration: underline !important; }
.pt-user-popup__wishlists-list { 
    display: flex !important; 
    flex-direction: column !important; 
    gap: 6px !important; 
    min-width: 0 !important;
}
.pt-user-popup__wishlist-item { 
    display: flex !important; 
    align-items: center !important; 
    gap: 10px !important; 
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 8px 10px !important; 
    border-radius: 8px !important; 
    transition: background 0.1s !important;
    background: var(--pt-color-gray-50) !important;
    border: 1px solid var(--pt-color-gray-100) !important;
}
.pt-user-popup__wishlist-item:hover { 
    background: #fff !important;
    border-color: var(--pt-color-gray-200) !important;
}
.pt-user-popup__wishlist-icon {
    font-size: 1.1rem !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}
.pt-user-popup__wishlist-link { 
    flex: 1 !important; 
    text-decoration: none !important; 
    color: inherit !important; 
    min-width: 0 !important; 
}
.pt-user-popup__wishlist-name { 
    display: block !important; 
    font-size: 0.8rem !important; 
    font-weight: 600 !important; 
    color: var(--pt-color-gray-800) !important; 
    white-space: nowrap !important; 
    overflow: hidden !important; 
    text-overflow: ellipsis !important; 
}
.pt-user-popup__wishlist-count { 
    display: block !important; 
    font-size: 0.7rem !important; 
    color: var(--pt-color-gray-400) !important; 
}
.pt-user-popup__wishlist-add-product { 
    width: 30px !important; 
    height: 30px !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    background: #fff !important; 
    border: 1px solid var(--pt-color-gray-200) !important; 
    border-radius: 50% !important; 
    color: var(--pt-color-gray-500) !important; 
    cursor: pointer !important; 
    transition: all 0.1s !important; 
    flex-shrink: 0 !important; 
    padding: 0 !important; 
}
.pt-user-popup__wishlist-add-product:hover { 
    background: #ecfdf5 !important; 
    border-color: #047857 !important; 
    color: #047857 !important; 
}
.pt-user-popup__wishlist-add-product--added { 
    background: #047857 !important; 
    border-color: #047857 !important; 
    color: #fff !important; 
}
.pt-user-popup__wishlist-add-product--loading {
    opacity: 0.5 !important;
    cursor: wait !important;
}
.pt-user-popup__wishlist-create-link {
    display: block !important;
    padding: 10px 12px !important;
    text-align: center !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: var(--pt-color-primary) !important;
    background: var(--pt-color-gray-50) !important;
    border: 1px dashed var(--pt-color-gray-300) !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.1s !important;
}
.pt-user-popup__wishlist-create-link:hover {
    background: #fff !important;
    border-color: var(--pt-color-primary) !important;
}
/* Recensioner section placeholder */
.pt-reviews__empty {
    margin: 0;
    color: var(--pt-color-gray-500);
    font-size: 0.95rem;
}

/* Prisjakt source: show icon + "via Prisjakt" text */
.feedtrackr-offer__source--prisjakt .feedtrackr-offer__source-text {
    display: inline !important;
}

/* Om produkten: larger semi-bold headings, more space below heading. */
.pt-about__content h2,
.pt-about__content h3,
.pt-about__content h4 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
}
.pt-about__content h2 + *,
.pt-about__content h3 + *,
.pt-about__content h4 + * {
    margin-top: 0.25rem !important;
}

/* ==========================================================================
   User Popup redesign — favorites, wishlists and alerts
   Mirrors the Smart Varukorg drawer language while preserving existing
   pt-user-popup__ hooks, AJAX endpoints and cache/state handling.
   ========================================================================== */

#pt-user-popup {
    
    --ptu-surface: var(--ptp-bg-tint, oklch(0.99 0.005 250));
    --ptu-elev: var(--ptp-surface, #fff);
    --ptu-ink: var(--ptp-ink, oklch(0.2 0.01 250));
    --ptu-ink-soft: var(--ptp-ink-soft, oklch(0.4 0.015 250));
    --ptu-ink-mute: var(--ptp-ink-mute, oklch(0.6 0.012 250));
    --ptu-line: var(--ptp-line, oklch(0.92 0.008 250));
    --ptu-line-strong: var(--ptp-line-strong, oklch(0.86 0.012 250));
    --ptu-rose: var(--ptp-danger, oklch(0.6 0.18 25));
    --ptu-rose-soft: var(--ptp-danger-soft, oklch(0.95 0.04 25));
    --ptu-green: var(--ptp-success, oklch(0.62 0.13 150));
    --ptu-green-soft: var(--ptp-success-soft, oklch(0.94 0.05 150));
    --ptu-tint-sky: var(--ptp-tint-sky, oklch(0.978 0.014 230));
    --ptu-radius: var(--ptp-radius, 14px);
    --ptu-radius-pill: var(--ptp-radius-pill, 999px);
    
}

#pt-user-popup .pt-user-popup__backdrop {
    background: oklch(0.2 0.02 40 / 0.32);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#pt-user-popup .pt-user-popup__panel {
    width: 480px;
    max-width: calc(100vw - 12px);
    margin: 12px 12px 12px 0;
    border-radius: var(--ptu-radius);
    background: var(--ptu-surface);
    color: var(--ptu-ink);
    overflow: hidden;
    box-shadow: var(--ptp-shadow-pop, 0 16px 48px oklch(0.3 0.04 40 / 0.12), 0 4px 12px oklch(0.3 0.04 40 / 0.06));
}

#pt-user-popup .pt-user-popup__header {
    padding: 18px 20px 14px;
    border-bottom: 0;
}

.pt-user-popup__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pt-user-popup__header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--ptu-rose-soft);
    color: var(--ptu-rose);
}

.pt-user-popup__title-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

#pt-user-popup .pt-user-popup__title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: var(--ptu-ink);
}

.pt-user-popup__subtitle {
    margin-top: 2px;
    font-size: 12.5px;
    color: var(--ptu-ink-mute);
}

.pt-user-popup__count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--ptu-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ptu-line);
    color: var(--ptu-ink-soft);
    font-size: 12px;
    font-weight: 800;
}

#pt-user-popup button.pt-user-popup__close {
    width: 36px !important;
    height: 36px !important;
    border: 1px solid var(--ptu-line) !important;
    background: transparent !important;
    color: var(--ptu-ink-soft) !important;
}

#pt-user-popup button.pt-user-popup__close:hover,
#pt-user-popup button.pt-user-popup__close:focus-visible {
    background: var(--ptu-elev) !important;
    border-color: var(--ptu-line-strong) !important;
    color: var(--ptu-ink) !important;
}

#pt-user-popup .pt-user-popup__tabs {
    position: relative !important;
    display: flex !important;
    margin: 0 20px !important;
    padding: 4px !important;
    border: 0 !important;
    border-radius: var(--ptu-radius-pill) !important;
    background: oklch(0.945 0.008 250) !important;
    gap: 0 !important;
    box-shadow: none !important;
}

#pt-user-popup .pt-user-popup__tab {
    position: relative;
    z-index: 2;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px !important;
    border: 0 !important;
    border-radius: var(--ptu-radius-pill) !important;
    background: transparent !important;
    color: var(--ptu-ink-mute) !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

#pt-user-popup .pt-user-popup__tab--active {
    color: var(--ptu-ink) !important;
}

.pt-user-popup__tab-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--ptu-radius-pill);
    display: inline-grid;
    place-items: center;
    background: transparent;
    color: var(--ptu-ink-mute);
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.pt-user-popup__tab--active .pt-user-popup__tab-count {
    color: var(--ptu-ink-soft);
}

.pt-user-popup__tab-rail {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    border-radius: var(--ptu-radius-pill);
    background: var(--ptu-elev);
    box-shadow: 0 1px 2px oklch(0.4 0.02 40 / 0.08), 0 4px 12px oklch(0.4 0.02 40 / 0.06);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pt-user-popup__tab-rail[data-active-tab="favorites"] { transform: translateX(0); }
.pt-user-popup__tab-rail[data-active-tab="alerts"] { transform: translateX(100%); }

#pt-user-popup .pt-user-popup__body {
    background: var(--ptu-surface);
    padding: 12px 20px;
}

#pt-user-popup .pt-user-popup__panel-content {
    padding: 0;
    overflow: visible;
}

.pt-user-popup__insight {
    position: relative;
    overflow: hidden;
    margin: 0 0 12px;
    padding: 13px 18px;
    border: 1px solid var(--ptu-line);
    border-radius: var(--ptu-radius);
    background: var(--ptu-elev);
    background-image: radial-gradient(50% 80% at 100% 0%, var(--ptu-tint-sky), transparent 70%);
}

.pt-user-popup__insight[hidden] { display: none !important; }
.pt-user-popup__insight-head,
.pt-user-popup__insight-row,
.pt-user-popup__insight-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pt-user-popup__insight-head { margin-bottom: 4px; }
.pt-user-popup__insight-eyebrow {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pt-user-popup__insight-pct {
    padding: 1px 10px;
    border-radius: var(--ptu-radius-pill);
    background: var(--ptu-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.pt-user-popup__insight-pct--flat {
    background: var(--ptu-line);
    color: var(--ptu-ink-soft);
}
.pt-user-popup__insight-total {
    color: var(--ptu-ink);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}
.pt-user-popup__insight-strike {
    color: var(--ptu-ink-mute);
    font-size: 14px;
    text-decoration: line-through;
}
.pt-user-popup__insight-foot {
    margin-top: 8px;
    padding-top: 9px;
    border-top: 1px solid var(--ptu-line);
    color: var(--ptu-ink-soft);
    font-size: 12px;
}
#pt-user-popup .pt-user-popup__insight-cta {
    padding: 8px 10px !important;
    border: 1px solid var(--ptu-line) !important;
    border-radius: var(--ptu-radius-pill) !important;
    background: #fffbfb !important;
    color: var(--ptu-ink) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    white-space: nowrap;
    box-shadow: none !important;
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
#pt-user-popup .pt-user-popup__insight-cta:hover,
#pt-user-popup .pt-user-popup__insight-cta:focus {
    background: var(--ptu-surface) !important;
    border-color: var(--ptu-line-strong) !important;
    color: var(--ptu-ink) !important;
}
#pt-user-popup .pt-user-popup__insight-cta:active {
    background: var(--ptu-line) !important;
    color: var(--ptu-ink) !important;
}

.pt-user-popup__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 8px;
}
.pt-user-popup__toolbar[hidden] { display: none !important; }
.pt-user-popup__chips {
    display: inline-flex;
    gap: 3px;
    padding: 3px;
    border-radius: var(--ptu-radius-pill);
    background: oklch(0.94 0.01 0 / 0.32);
}
#pt-user-popup .pt-user-popup__chip {
    padding: 5px 10px !important;
    border: 0 !important;
    border-radius: var(--ptu-radius-pill) !important;
    background: transparent !important;
    color: var(--ptu-ink-mute) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}
#pt-user-popup .pt-user-popup__chip--active {
    background: #fff !important;
    color: var(--ptu-ink) !important;
    box-shadow: 0 1px 2px oklch(0.4 0.02 40 / 0.08) !important;
}
.pt-user-popup__sort-wrap { position: relative; flex-shrink: 0; }
#pt-user-popup .pt-user-popup__sort {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: var(--ptu-ink-mute) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}
.pt-user-popup__sort-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 190px;
    display: none;
    padding: 4px;
    border: 1px solid var(--ptu-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px oklch(0.3 0.04 40 / 0.12);
    z-index: 20;
}
.pt-user-popup__sort-menu.is-open { display: block; }
#pt-user-popup .pt-user-popup__sort-option {
    width: 100%;
    padding: 8px 10px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: var(--ptu-ink-soft) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-align: left;
    box-shadow: none !important;
}
#pt-user-popup .pt-user-popup__sort-option:hover,
#pt-user-popup .pt-user-popup__sort-option.is-active {
    background: var(--ptu-surface) !important;
    color: var(--ptu-ink) !important;
}

.pt-user-popup__selbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 8px;
    padding: 9px 11px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-size: 12px;
}
.pt-user-popup__selbar[hidden] { display: none !important; }
.pt-user-popup__selbar-left { display: inline-flex; align-items: center; gap: 8px; }
#pt-user-popup .pt-user-popup__selbar-clear,
#pt-user-popup .pt-user-popup__selbar-go {
    padding: 6px 10px !important;
    border: 0 !important;
    border-radius: var(--ptu-radius-pill) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}
#pt-user-popup .pt-user-popup__selbar-clear { background: transparent !important; color: #d1d5db !important; }
#pt-user-popup .pt-user-popup__selbar-go { background: #fff !important; color: #111827 !important; }

#pt-user-popup .pt-user-popup__items {
    gap: 8px;
    padding: 0 0 8px;
}
#pt-user-popup .pt-user-popup__item {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 4px;
    border-bottom: 1px solid var(--ptu-line);
    border-radius: 0;
}
#pt-user-popup .pt-user-popup__item:hover { background: transparent; }
#pt-user-popup .pt-user-popup__item-check {
    width: 20px !important;
    height: 20px !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 1.5px solid var(--ptu-line-strong) !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #fff !important;
    box-shadow: none !important;
}
#pt-user-popup .pt-user-popup__item-check svg { opacity: 0; transform: scale(0.75); transition: opacity 0.15s, transform 0.15s; }
#pt-user-popup .pt-user-popup__item-check.is-checked {
    background: #111827 !important;
    border-color: #111827 !important;
}
#pt-user-popup .pt-user-popup__item-check.is-checked svg { opacity: 1; transform: scale(1); }
#pt-user-popup .pt-user-popup__item-link {
    padding: 0;
    min-width: 0;
}
#pt-user-popup .pt-user-popup__item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    padding: 4px;
}
.pt-user-popup__item-img-ph {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: repeating-linear-gradient(135deg, #fafafa 0 5px, #f1f3f6 5px 10px);
    color: var(--ptu-ink-mute);
    font-size: 9px;
    line-height: 1;
}
#pt-user-popup .pt-user-popup__item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ptu-ink);
}
.pt-user-popup__item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--ptu-ink-mute);
    font-size: 12px;
}
#pt-user-popup .pt-user-popup__item-price {
    color: var(--ptu-ink);
    font-size: 12.5px;
    font-weight: 800;
}
.pt-user-popup__item-sep { color: var(--ptu-line-strong); }
.pt-user-popup__item-noprice {
    color: var(--ptu-ink-mute);
    font-size: 11.5px;
    font-style: italic;
}
.pt-user-popup__item-trend {
    padding: 2px 7px;
    border-radius: var(--ptu-radius-pill);
    font-size: 10.5px;
    font-weight: 800;
}
.pt-user-popup__item-trend--down { color: var(--ptu-green); background: var(--ptu-green-soft); }
#pt-user-popup .pt-user-popup__item-basket,
#pt-user-popup .pt-user-popup__item-watch,
#pt-user-popup .pt-user-popup__item-remove {
    width: 32px !important;
    height: 32px !important;
    border: 1px solid var(--ptu-line) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--ptu-ink-mute) !important;
}
#pt-user-popup .pt-user-popup__item-basket:hover,
#pt-user-popup .pt-user-popup__item-watch:hover {
    background: var(--ptu-surface) !important;
    color: var(--ptu-ink) !important;
}
#pt-user-popup .pt-user-popup__item-watch.is-active {
    background: oklch(0.985 0.04 90) !important;
    border-color: oklch(0.9 0.07 90) !important;
    color: oklch(0.55 0.13 80) !important;
}
#pt-user-popup .pt-user-popup__item-watch.is-active:hover,
#pt-user-popup .pt-user-popup__item-watch.is-active:focus {
    background: oklch(0.97 0.055 90) !important;
    color: oklch(0.45 0.13 80) !important;
}
#pt-user-popup .pt-user-popup__item-basket.is-active {
    background: #111827 !important;
    border-color: #111827 !important;
    color: #fff !important;
}
#pt-user-popup .pt-user-popup__item-remove:hover {
    background: var(--ptu-rose-soft) !important;
    border-color: color-mix(in oklab, var(--ptu-rose) 25%, #fff) !important;
    color: var(--ptu-rose) !important;
}

#pt-user-popup .pt-user-popup__wishlists-section {
    margin-top: 8px !important;
    padding: 14px 0 0 !important;
    border-top: 1px solid var(--ptu-line) !important;
    background: transparent !important;
}
#pt-user-popup .pt-user-popup__wishlist-item {
    border-radius: 12px !important;
    border: 1px solid var(--ptu-line) !important;
    background: #fff !important;
}

#pt-user-popup .pt-user-popup__wishlist-create-link--new {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: 2px !important;
    padding: 9px 10px !important;
    border: 1px dashed var(--ptu-line-strong) !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: var(--ptu-ink-soft) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}
#pt-user-popup .pt-user-popup__wishlist-create-link--new:hover {
    border-color: var(--ptu-ink-mute) !important;
    background: var(--ptu-surface) !important;
    color: var(--ptu-ink) !important;
}

#pt-user-popup .pt-user-popup__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 16px;
    border-top: 1px solid var(--ptu-line);
    background: var(--ptu-surface);
}
#pt-user-popup .pt-user-popup__footer-cta {
    flex: 1;
    min-width: 0;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 13px 16px !important;
    border: 0 !important;
    border-radius: var(--ptu-radius-pill) !important;
    background: #111827 !important;
    color: #fff !important;
    
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
    box-shadow: none !important;
}
#pt-user-popup .pt-user-popup__footer-cta:hover,
#pt-user-popup .pt-user-popup__footer-cta:focus {
    background: #111827 !important;
    color: #fff !important;
    transform: none !important;
}
.pt-user-popup__footer-cta-count {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--ptu-radius-pill);
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
#pt-user-popup .pt-user-popup__footer-account {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--ptu-line);
    border-radius: var(--ptu-radius-pill);
    background: #fff;
    color: var(--ptu-ink-soft);
    text-decoration: none;
}
#pt-user-popup .pt-user-popup__footer-account:hover {
    border-color: var(--ptu-line-strong);
    color: var(--ptu-ink);
}

/* Logged-in avatar variant — replaces the silhouette SVG with the
   user's first initial on a soft pastel gradient (same look as
   /mitt-konto/ sidebar and side-menu utility avatar). Gives a clear
   "you are logged in" affordance in the favoriter-popup. */
#pt-user-popup .pt-user-popup__footer-account--avatar {
    background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 100%);
    border-color: transparent;
    color: #2563eb;
}
#pt-user-popup .pt-user-popup__footer-account--avatar:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
}
#pt-user-popup .pt-user-popup__footer-initial {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #2563eb;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Disable the global [data-tooltip]::after utility inside the popup —
   we render a real positioned tooltip via JS instead so it can't be
   clipped by the drawer or theme stacking contexts. */
#pt-user-popup [data-tooltip]::after,
#pt-user-popup [data-tooltip]:hover::after,
#pt-user-popup [data-tooltip]:focus-visible::after {
    content: none !important;
    display: none !important;
}

/* Floating popup tooltip (positioned manually by JS). */
.pt-user-popup-tooltip {
    position: fixed;
    z-index: 2147483647;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--ptu-ink, #111827);
    color: #fff;
    
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.12s ease, transform 0.12s ease;
    box-shadow: 0 6px 18px oklch(0.25 0.04 40 / 0.18);
}
.pt-user-popup-tooltip[data-visible="1"] {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 480px) {
    .pt-user-popup-tooltip { display: none !important; }
}

/* Lock the inline icons inside popup item-action buttons regardless of
   what theme/global rules try to set on `button > svg`. */
#pt-user-popup .pt-user-popup__item-watch,
#pt-user-popup .pt-user-popup__item-basket,
#pt-user-popup .pt-user-popup__item-remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}
#pt-user-popup .pt-user-popup__item-watch svg,
#pt-user-popup .pt-user-popup__item-basket svg,
#pt-user-popup .pt-user-popup__item-remove svg {
    width: 15px !important;
    height: 15px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    pointer-events: none !important;
}
#pt-user-popup .pt-user-popup__item-remove svg {
    fill: currentColor !important;
    stroke: none !important;
}

@media (max-width: 720px) {
    #pt-user-popup .pt-user-popup__panel {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        border-radius: 0;
    }
    #pt-user-popup .pt-user-popup__body { padding: 10px 16px; }
    #pt-user-popup .pt-user-popup__tabs { margin: 0 16px; }
}

/* Om produkten summary: modern highlighted callout (no shadows) */
.pt-about__summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 100%) !important;
    border: 1px solid #d7e3f8;
    border-radius: 14px;
    box-shadow: none !important;
    margin-bottom: var(--pt-space-lg);
}
.pt-about__summary-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1d4ed8;
    color: #fff;
    box-shadow: none !important;
}
.pt-about__summary-icon .pt-icon {
    width: 19px;
    height: 19px;
}
.pt-about__summary-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.58;
    color: #334155;
}
.pt-about__summary-content strong {
    color: #0f172a;
    font-weight: 500 !important;
}

/* FAQ answer: medium-weight bold tags */
.pt-faq__answer strong {
    font-weight: 500 !important;
}

/* Offers list cleanups */
/* feedtrackr: no banner (removed via shortcode), no offers background, no compset margin */
.pt-price-section .feedtrackr-compset {
    margin-top: 0 !important;
}
.pt-price-section .feedtrackr-offers {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    min-height: 0 !important;
}

.pt-price-section .feedtrackr-offers:empty {
    min-height: 220px !important;
}
.pt-price-section .feedtrackr-offer,
.pt-price-section .feedtrackr-offer:hover,
.pt-price-section .feedtrackr-offer:active {
    background: #fff !important;
    box-shadow: none !important;
}
.pt-price-section .feedtrackr-offer--best,
.pt-price-section .feedtrackr-offer--best:hover {
    background: #fff !important;
    box-shadow: none !important;
}
.pt-price-section .feedtrackr-offer--best::before {
    display: none !important;
}

.pt-price-section .feedtrackr-offer.feedtrackr-offer--best {
    border-color: var(--pt-color-gray-200, #e5e7eb) !important;
    box-shadow: none !important;
    background: #fff !important;
}

@media (max-width: 767px) {
    .pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 6px !important;
        padding: 10px 10px !important;
    }
    .pt-price-section .feedtrackr-offers {
        padding: 0 !important;
    }
    .pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer:first-child {
        margin-top: 0.25rem !important;
    }
    #pt-offers .pt-price-filters__pill span {
        padding: 8px 12px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
    #pt-offers .pt-price-filters__dropdown,
    #pt-offers .pt-price-filters__dropdown-trigger {
        min-width: 142px !important;
    }
    #pt-offers .pt-price-filters__dropdown-trigger {
        padding: 8px 12px !important;
        font-size: 12px !important;
        min-height: 38px !important;
    }
    #pt-offers .pt-price-filters__dropdown-trigger-label {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* =============================================
   2.0: Popup slide-in animation
   ============================================= */
.pt-user-popup__panel--animate-in {
    animation: pt-user-popup-slide-in 0.25s ease forwards !important;
}
@keyframes pt-user-popup-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pt-user-popup-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0.98;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =============================================
   2.2: Remove black background hover on Bevaka buttons (theme override)
   ============================================= */
.pt-chart-card__cta:hover,
.pt-user-popup__alert-quick-btn:hover,
button[data-popup-alert-submit]:hover,
button[data-action="open-price-alert"]:hover {
    background: #333 !important;
    color: #fff !important;
}

/* Old `2.7` tab design block was removed — current pill-tabs are
   defined further up in this file (see `#pt-user-popup .pt-user-popup__tabs`). */

/* Hide product name and separator before it from breadcrumbs */
.pt-breadcrumbs__list > .pt-breadcrumbs__item--current,
.pt-breadcrumbs__list > .pt-breadcrumbs__separator:nth-last-child(2) {
    display: none !important;
}

/* =============================================
   Login modal — MOVED OUT (was a high-specificity override block here).
   The .pt-login-modal design lives solely in assets/css/login-modal.css now.
   Do NOT re-add .pt-login-modal rules to this file.
   ============================================= */

/* Breadcrumbs: top padding, margin and gap */
.pt-breadcrumbs {
    margin-bottom: 0 !important;
    padding-top: var(--pt-space-md, 1rem) !important;
    padding-bottom: var(--pt-space-sm) !important;
}
@media (max-width: 767px) {
    .pt-breadcrumbs {
        padding-top: 0.5rem !important;
        padding-bottom: 0.25rem !important;
    }
}

/* Hero: no padding, no margin-bottom */
.pt-hero {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .pt-hero__grid {
        gap: 0.5rem !important;
    }
    .pt-hero__info {
        gap: 0.8rem !important;
    }
    .pt-hero__title {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
    }
    .pt-hero__desc {
        display: none !important;
    }
    .pt-chart-card__mobile-summary {
        flex-wrap: nowrap !important;
    }
    .pt-chart-card__mobile-summary-main {
        overflow: hidden !important;
    }
    .pt-chart-card__mobile-summary-prices {
        flex: 1;
        display: flex;
        align-items: baseline;
        gap: 0.35rem;
        font-size: 0.76rem;
        color: var(--pt-color-gray-700, #374151);
        min-width: 0;
        line-height: 1.3;
        flex-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .pt-price-box__compare--inline {
        font-size: 0.95rem !important;
    }
}

/* Remove padding from pt-container (children handle their own via breakout pattern) */
.pt-main > .pt-container {
    padding: 0 !important;
}

/* pt-offers section: gray background (below nav), no border, no top padding.
   Bottom padding is constant (~1rem) regardless of how many offers render so
   the gap between the affiliate-notice and the next section stays consistent
   for 1, 2 or 10+ stores. Previously the section inherited --pt-space-2xl
   (~3rem) which looked fine for 3+ offers but turned into a huge dead-zone
   on products with only one or two stores. */
#pt-offers.pt-section {
    background: var(--pt-color-gray-50, #f9fafb) !important;
    border: none !important;
    box-shadow: none !important;
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
}
@media (max-width: 767px) {
    .pt-main .pt-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .pt-main .pt-section > * {
        padding-left: var(--pt-container-padding) !important;
        padding-right: var(--pt-container-padding) !important;
    }
    #pt-offers.pt-section {
        padding-bottom: 0.5rem !important;
    }
}

/* White background breadcrumbs → hero → nav; gray below nav */
.pt-main {
    background: var(--pt-color-gray-50, #f9fafb) !important;
    overflow-x: clip; /* clip preserves sticky; hidden can break it */
}

.pt-main .pt-section,
.pt-main .pt-hero,
.pt-main .pt-breadcrumbs,
.pt-nav-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}
.pt-main .pt-section > *,
.pt-main .pt-hero > *,
.pt-main .pt-breadcrumbs > * {
    max-width: var(--pt-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pt-container-padding);
    padding-right: var(--pt-container-padding);
    box-sizing: border-box;
}
.pt-main .pt-hero > *,
.pt-main .pt-breadcrumbs > * {
    padding-left: var(--pt-container-padding);
    padding-right: var(--pt-container-padding);
}
/* Nav: no side padding as requested */
.pt-nav-wrapper > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pt-main .pt-section {
    background: var(--pt-color-gray-50, #f9fafb) !important;
}
.pt-main .pt-section.pt-section--muted {
    background: var(--pt-color-gray-50, #f9fafb) !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.pt-main .pt-section.pt-section--muted:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
}
.pt-main .pt-hero {
    background: #fff !important;
}
.pt-main .pt-breadcrumbs {
    background: #fff !important;
}
.pt-nav-wrapper {
    background: #fff !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 99 !important;
}
.pt-nav-wrapper.is-sticky {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}
@media (max-width: 767px) {
    .pt-nav-wrapper {
        position: sticky !important;
        top: 0 !important;
        min-height: 0;
    }
    .pt-nav-wrapper.is-sticky .pt-nav {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        margin: 0 auto !important;
        padding: 0.42rem 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        z-index: auto !important;
        box-sizing: border-box !important;
    }
    .pt-nav {
        padding: 0.42rem 0 !important;
    }
    .pt-nav__tab {
        padding: 0.4rem 0.7rem !important;
        font-size: 0.8rem !important;
    }
}

/* Mini chart card: neutral modern design (no purple) */
.pt-chart-card {
    border-radius: 12px !important;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    background: #fff !important;
    overflow: visible !important;
    position: relative;
}
.pt-chart-card::before {
    content: none !important;
    display: none !important;
}
.pt-chart-card__title .pt-icon {
    color: var(--pt-color-gray-600, #4b5563) !important;
}
.pt-chart-card__cta {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: #1f2937 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.15s ease !important;
}
.pt-chart-card__cta:hover {
    background: #111827 !important;
}
.pt-chart-card .pt-chart-tooltip__merchant {
    color: var(--pt-color-gray-600, #4b5563) !important;
}
.pt-chart-card__body {
    padding: 0rem 0.5rem 0.75rem !important;
    height: 120px !important;
    position: relative !important;
    overflow: visible !important;
}
.pt-chart-card__empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--pt-color-gray-500, #6b7280);
}
.pt-chart-card__body canvas {
    touch-action: pan-y;
}

/* --- Mobile compact mini-chart: single-line summary instead of full chart --- */
.pt-chart-card__mobile-summary {
    display: none;
}

.pt-chart-modal {
    position: fixed;
    inset: 0;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pt-chart-modal[hidden] {
    display: none !important;
}

.pt-chart-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.pt-chart-modal__dialog {
    position: relative;
    width: min(560px, 100%);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
    padding: 1.25rem 1rem 1rem;
}

.pt-chart-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: var(--pt-color-gray-600, #4b5563) !important;
    box-shadow: none !important;
}

.pt-chart-modal__close:hover,
.pt-chart-modal__close:focus,
.pt-chart-modal__close:active {
    background: var(--pt-color-gray-50, #f9fafb) !important;
    color: var(--pt-color-gray-900, #111827) !important;
    border-color: var(--pt-color-gray-300, #d1d5db) !important;
}

.pt-chart-modal__header {
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.pt-chart-modal__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pt-color-gray-900, #111827);
}

.pt-chart-modal__period {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
    color: var(--pt-color-gray-500, #6b7280);
}

.pt-chart-modal__chart {
    position: relative;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb);
    border-radius: 14px;
    background: #fff;
    padding: 0.75rem;
    min-height: 240px;
}

.pt-chart-modal__chart canvas {
    width: 100% !important;
    height: 220px !important;
    display: block;
}

.pt-chart-modal__tooltip {
    position: absolute;
    pointer-events: none;
    background: #fff;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 0.8rem;
    min-width: 110px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.12s ease;
    white-space: nowrap;
}

.pt-chart-modal__tooltip.is-visible {
    opacity: 1;
}

.pt-chart-modal__tooltip-date {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--pt-color-gray-500, #6b7280);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.pt-chart-modal__tooltip-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pt-color-gray-900, #111827);
}

.pt-chart-modal__empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
    color: var(--pt-color-gray-500, #6b7280);
    text-align: center;
}

.pt-chart-modal__empty[hidden] {
    display: none !important;
}

.pt-chart-modal__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

@media (max-width: 360px) {
    .pt-chart-modal__stats {
        grid-template-columns: 1fr 1fr;
    }
    .pt-chart-modal__stat:last-child {
        grid-column: 1 / -1;
    }
}

.pt-chart-modal__stat {
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb);
    border-radius: 12px;
    background: #fff;
}

.pt-chart-modal__stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--pt-color-gray-500, #6b7280);
    margin-bottom: 0.2rem;
}

.pt-chart-modal__stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pt-color-gray-900, #111827);
}

@media (max-width: 767px) {
    .pt-chart-card__header,
    .pt-chart-card__stats,
    .pt-chart-card__body,
    .pt-chart-card__footer {
        display: none !important;
    }

    .pt-chart-card {
        border-radius: 10px !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .pt-chart-card__mobile-summary {
        display: flex !important;
        align-items: center;
        gap: 0.65rem;
        padding: 0.65rem 0.75rem;
    }

    .pt-chart-card__mobile-summary-main {
        flex: 1 1 auto;
        min-width: 0;
        display: flex !important;
        align-items: center !important;
        gap: 0.65rem !important;
        padding: 0.3rem 0 !important;
        border: none !important;
        background: transparent !important;
        color: inherit !important;
        text-align: left !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
        cursor: pointer !important;
        min-width: 0 !important;
    }

    .pt-chart-card__mobile-summary-main:hover,
    .pt-chart-card__mobile-summary-main:focus,
    .pt-chart-card__mobile-summary-main:active {
        background: transparent !important;
        color: inherit !important;
    }

    .pt-chart-card__mobile-summary-icon {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4b5563;
    }
    .pt-chart-card__mobile-summary-icon svg {
        width: 16px;
        height: 16px;
    }

    .pt-chart-card__mobile-summary-prices strong {
        display: inline-block;
        min-width: 4.8ch;
        font-weight: 600;
        color: var(--pt-color-gray-900, #111827);
        font-variant-numeric: tabular-nums;
    }
    .pt-chart-card__mobile-summary-prices {
        white-space: nowrap;
    }
    .pt-chart-card__mobile-summary-divider {
        color: var(--pt-color-gray-300, #d1d5db);
    }

    .pt-chart-card__mobile-summary-cta {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.44rem 0.68rem !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        color: #fff !important;
        background: #1f2937 !important;
        border: 1px solid #1f2937 !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        white-space: nowrap !important;
        transition: background 0.12s ease, border-color 0.12s ease !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }
    .pt-chart-card__mobile-summary-cta:hover,
    .pt-chart-card__mobile-summary-cta:focus,
    .pt-chart-card__mobile-summary-cta:active {
        background: #111827 !important;
        border-color: #111827 !important;
        color: #fff !important;
    }
    .pt-chart-card__mobile-summary-cta svg {
        width: 11px;
        height: 11px;
    }

    /* Sparkline mini chart */
    .pt-chart-card__mobile-summary-spark {
        flex: 0 0 52px;
        width: 52px;
        height: 22px;
        display: flex;
        align-items: center;
        overflow: hidden;
        color: #4b5563;
    }
    .pt-chart-card__mobile-sparkline {
        width: 52px;
        height: 22px;
        display: block;
    }

    /* Trend arrow */
    .pt-chart-card__mobile-trend {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 11px;
        height: 11px;
        margin-left: 0.1rem;
        color: #4b5563;
        flex-shrink: 0;
        position: relative;
        top: 1px;
        vertical-align: middle;
        line-height: 1;
    }
    .pt-chart-card__mobile-trend--down {
        color: #4b5563;
    }
    .pt-chart-card__mobile-trend--up {
        color: #4b5563;
    }

    .pt-chart-modal {
        padding: 0.75rem;
    }

    .pt-chart-modal__dialog {
        padding: 1rem 0.9rem 0.9rem;
        border-radius: 16px;
    }

    .pt-chart-modal__chart {
        min-height: 210px;
    }

    .pt-chart-modal__chart canvas {
        height: 190px !important;
    }
}

/* Nav tab: no background on hover */
.pt-nav__tab:hover {
    background: transparent !important;
}

/* Sections: scroll-margin for sticky nav offset when scrolling to anchors */
.pt-section[id] {
    scroll-margin-top: 56px;
}
@media (max-width: 767px) {
    .pt-section[id] {
        scroll-margin-top: 48px;
    }
}

/* Lazy carousel placeholder (below-the-fold) */
.pt-carousel--lazy {
    border: 1px solid var(--pt-color-gray-200, #e5e7eb);
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
}

.pt-carousel--lazy__status {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-radius: 10px;
    color: var(--pt-color-gray-500, #6b7280);
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
    background-size: 400% 100%;
    animation: pt-carousel-skeleton 1.25s ease infinite;
}

@keyframes pt-carousel-skeleton {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* Advanced history tooltip: "via Prisjakt" subtle label */
#pt-chart-tooltip .pt-tooltip-source {
    font-size: 0.7rem !important;
    color: #9ca3af !important;
    margin-top: 2px;
}

/* Specs: modern table */
.pt-specs__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb);
    font-size: 0.9375rem;
}
.pt-specs__table th,
.pt-specs__table td {
    padding: 0.85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--pt-color-gray-100, #f3f4f6);
}
.pt-specs__table tr:last-child th,
.pt-specs__table tr:last-child td {
    border-bottom: none;
}
.pt-specs__table th {
    font-weight: 500;
    color: var(--pt-color-gray-500, #6b7280);
    background: var(--pt-color-gray-50, #f9fafb);
    width: 200px;
    white-space: nowrap;
}
.pt-specs__table td {
    color: var(--pt-color-gray-900, #111827);
}
.pt-specs__table td a {
    color: var(--pt-color-gray-900, #111827);
    text-decoration: none;
}
.pt-specs__table td a:hover {
    text-decoration: underline;
}
.pt-specs__table tr:hover td,
.pt-specs__table tr:hover th {
    background: rgba(59, 130, 246, 0.03);
}
.pt-specs__value--mono {
    
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

/* Feedback section */
.pt-main .pt-section.pt-section--feedback {
    background: var(--pt-color-gray-50, #f9fafb) !important;
    border-color: var(--pt-color-gray-200, #e5e7eb) !important;
    box-shadow: none !important;
    padding: 1.25rem !important;
}
@media (min-width: 768px) {
    .pt-main .pt-section.pt-section--feedback {
        padding: 1.5rem !important;
    }
}
.pt-feedback {
    padding: 0.25rem;
}
.pt-feedback__content {
    min-width: 0;
}
.pt-feedback__title {
    color: var(--pt-color-gray-900, #111827);
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 0.25rem;
}
.pt-feedback__text p {
    color: var(--pt-color-gray-500, #6b7280);
    font-size: 0.9375rem;
    line-height: 1.5;
}
.pt-feedback__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.5rem !important;
}
.pt-feedback__actions .pt-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.375rem !important;
    min-height: 38px !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: 10px !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    border: 1px solid var(--pt-color-gray-300, #d1d5db) !important;
    background: #fff !important;
    color: var(--pt-color-gray-800, #1f2937) !important;
    box-shadow: none !important;
    transform: none !important;
}
.pt-feedback__actions .pt-btn:hover {
    background: var(--pt-color-gray-50, #f9fafb) !important;
    border-color: var(--pt-color-gray-400, #9ca3af) !important;
    color: var(--pt-color-gray-900, #111827) !important;
    transform: none !important;
}
.pt-feedback__actions .pt-btn .pt-icon--sm {
    width: 14px !important;
    height: 14px !important;
}

/* Report modal: force proper popup overlay */
#pt-report-modal.pt-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10002 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
}
#pt-report-modal.pt-modal[hidden] {
    display: none !important;
}
#pt-report-modal.pt-modal:not([hidden]) {
    display: flex !important;
}
#pt-report-modal .pt-modal__backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
}
#pt-report-modal .pt-modal__container {
    position: relative !important;
    width: 100% !important;
    max-width: 560px !important;
    max-height: calc(100dvh - 2rem) !important;
    overflow: visible !important;
}
#pt-report-modal .pt-modal__content {
    background: #fff !important;
    border-radius: var(--pt-radius-xl, 1rem) !important;
    box-shadow: var(--pt-shadow-xl, 0 24px 48px rgba(0, 0, 0, 0.2)) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    max-height: calc(100dvh - 2rem) !important;
}
#pt-report-modal .pt-modal__body {
    overflow-y: auto !important;
    min-height: 0 !important;
    scrollbar-gutter: stable;
}
#pt-report-modal .pt-modal__header,
#pt-report-modal .pt-modal__footer {
    flex-shrink: 0 !important;
}

/* Alert exists notice in popup */
.pt-user-popup__alert-exists-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    color: #1e40af;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 12px;
    animation: pt-fade-in 0.2s ease;
}
@keyframes pt-fade-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================================================
   GALLERY — clean rewrite based on wb24-product-single (2026-02-15)
   HTML structure:
     .pt-gallery                    (grid: auto 1fr)
       .pt-gallery__thumbs          (order 1 — vertical sidebar)
         .pt-gallery__thumb          (72×72 buttons)
       .pt-gallery__main             (order 2 — outer wrapper, position:relative)
         .pt-gallery__image          (overflow:hidden + border-radius — clips image)
           img.pt-gallery__img       (width:100%, height:auto, object-fit:contain)
         .pt-gallery__favorite       (absolute, top-right, OUTSIDE overflow wrapper)
         .pt-gallery__zoom           (absolute, bottom-right, show on hover)
   ============================================================================= */

/* --- Grid ---------------------------------------------------------------- */
.pt-gallery {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: stretch;
}
.pt-gallery--single { grid-template-columns: 1fr; }

/* --- Thumbs -------------------------------------------------------------- */
.pt-gallery__thumbs {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
    max-height: 500px;
    padding: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 23, 42, 0.2) transparent;
}
.pt-gallery__thumbs::-webkit-scrollbar { width: 4px; }
.pt-gallery__thumbs::-webkit-scrollbar-track { background: transparent; }
.pt-gallery__thumbs::-webkit-scrollbar-thumb { background: rgba(15, 23, 42, 0.2); border-radius: 4px; }

.pt-gallery__thumb {
    border: 2px solid #dfe7f1 !important;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    scroll-snap-align: start;
    transition: border-color 0.15s ease;
    padding: 0;
}
.pt-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-gallery__thumb:hover { border-color: #cfd9e5 !important; }
.pt-gallery__thumb--active {
    border-color: #bbc7d5 !important;
    box-shadow: none !important;
}

/* Expanded state after clicking "+X": allow list to continue below main image */
.pt-gallery__thumbs.pt-gallery__thumbs--expanded {
    justify-content: flex-start !important;
    align-self: start !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}
.pt-gallery__thumb--more {
    display: grid;
    place-items: center;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    color: rgba(15, 23, 42, 0.65);
    background: #f9f9f9;
}
.pt-gallery__thumb-count {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

/* --- Main image outer wrapper -------------------------------------------- */
.pt-gallery__main {
    order: 2;
    align-self: start !important;
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 480px;
    cursor: zoom-in;
}

/* Once expanded, let thumbs grow and keep main-image geometry fixed */
.pt-gallery.pt-gallery--expanded {
    align-items: start !important;
}
.pt-gallery.pt-gallery--expanded .pt-gallery__main {
    align-self: start !important;
}

/* --- Image inner wrapper (overflow:hidden clips image to border-radius) -- */
.pt-gallery__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.pt-gallery__mobile-media {
    display: none;
    width: 100%;
    height: 100%;
}

.pt-gallery__desktop-media {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Subtle overlay (like wb24 ::after) */
.pt-gallery__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgb(139 140 142 / 5%);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

/* --- The actual <img> ---------------------------------------------------- */
.pt-gallery__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: none;
    /* Explicit stapling: bilden ligger UNDER ::after-overlayen (z-index:1)
       så den subtila tonen verkligen lägger sig ÖVER bilden. */
    position: relative;
    z-index: 0;
    /* Vit produktbakgrund blandas in i ytan (kanon-behandling, samma som
       publika önskelistans produktbilder) i st.f. en hård vit ruta. */
    mix-blend-mode: multiply;
}

/* --- Favorite button (top-right, outside overflow wrapper) --------------- */
.pt-gallery__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    background-color: #fff !important;
    border: none;
    border-radius: 50%;
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: visible;
    isolation: isolate;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    --pt-fav-path-length: 82;
    --pt-fav-burst-1: #fb7185;
    --pt-fav-burst-2: #fbbf24;
    --pt-fav-burst-3: #f43f5e;
    --pt-fav-burst-4: #fecdd3;
}
.pt-gallery__favorite::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.35);
    will-change: transform, opacity, box-shadow;
    z-index: 1;
}
.pt-gallery__favorite .pt-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transform-box: fill-box;
    transform-origin: center;
}
.pt-gallery__favorite svg,
.pt-gallery__favorite svg path {
    fill: transparent;
}

/* Tooltip — handled by shared [data-tooltip] utility in basket.css */

/* --- Zoom button (bottom-right, outside overflow wrapper) ---------------- */
.pt-gallery__zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    width: 34px !important;
    height: 34px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.pt-gallery__zoom .pt-icon { width: 16px !important; height: 16px !important; }
.pt-gallery__main:hover .pt-gallery__zoom { opacity: 1; }

/* --- Mobile: single clean viewport with swipe + overlay controls --------- */
@media (max-width: 767px) {
    .pt-hero__gallery {
        margin-left: calc(var(--pt-container-padding) * -1);
        margin-right: calc(var(--pt-container-padding) * -1);
    }

    .pt-gallery {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pt-gallery__main {
        order: 1;
        max-width: none;
        width: 100%;
    }

    .pt-gallery__thumbs {
        display: none !important;
    }

    .pt-gallery__desktop-media {
        display: none !important;
    }

    .pt-gallery__mobile-media {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .pt-gallery__swipe-track {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 0;
    }
    .pt-gallery__swipe-track::-webkit-scrollbar { display: none; }

    .pt-gallery__swipe-slide {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pt-gallery__swipe-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: scale(0.75);
        transform-origin: center;
        display: block;
    }

    .pt-gallery__mobile-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center;
        transform: scale(0.75);
        transform-origin: center;
    }

    .pt-gallery__image {
        aspect-ratio: 1 / 0.5;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 0;
        background: #fff;
    }

    .pt-gallery__image::after {
        border-radius: 0;
    }

    .pt-gallery__favorite,
    .pt-gallery__basket {
        right: 14px !important;
    }

    .pt-gallery__zoom {
        display: none !important;
    }

    .pt-gallery__dots {
        display: flex !important;
        gap: 3px;
        position: absolute;
        left: 50%;
        bottom: 4px;
        transform: translateX(-50%);
    }
    .pt-gallery__dot,
    button.pt-gallery__dot {
        width: 6px;
        height: 6px;
        appearance: none;
        -webkit-appearance: none;
        background: #e5e7eb;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease;
    }
    .pt-gallery__dot--active {
        background: #cccccc !important;
    }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 768px) {
    .pt-gallery__swipe-track { display: none !important; }
    .pt-gallery__dots { display: none !important; }
    .pt-gallery__mobile-media { display: none !important; }
    .pt-gallery__desktop-media { display: flex !important; }
}

/* Mobile polish: tighter, safer lightbox layout on small devices */
@media (max-width: 980px) {
    .pt-lightbox {
        padding:
            max(64px, env(safe-area-inset-top))
            8px
            max(8px, env(safe-area-inset-bottom)) !important;
    }
    .pt-lightbox__dialog {
        width: 100% !important;
        max-width: 100% !important;
        gap: 8px !important;
    }
    .pt-lightbox__img-wrap {
        width: calc(100vw - 16px) !important;
        height: min(62vh, 480px) !important;
        min-height: 260px !important;
        max-height: 62vh !important;
    }
    .pt-lightbox__close {
        top: -52px !important;
        right: 0 !important;
        left: auto !important;
        width: 44px !important;
        height: 44px !important;
        z-index: 6 !important;
    }
    .pt-lightbox__nav {
        width: 40px !important;
        height: 40px !important;
    }
    .pt-lightbox__nav--prev { left: 8px !important; right: auto !important; }
    .pt-lightbox__nav--next { right: 8px !important; left: auto !important; }
    .pt-lightbox__counter {
        font-size: 12px !important;
        padding: 4px 10px !important;
    }
    .pt-lightbox__thumbs {
        width: 100% !important;
        max-width: 100% !important;
        padding: 6px 8px !important;
        gap: 6px !important;
    }
    .pt-lightbox__thumb {
        width: 56px !important;
        height: 56px !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border-color: rgba(255, 255, 255, 0.72) !important;
    }
    .pt-lightbox__thumb:hover {
        opacity: 1 !important;
    }
    .pt-lightbox__thumb.pt-lightbox__thumb--active {
        border-color: #ffffff !important;
        box-shadow: inset 0 0 0 1px rgba(2, 6, 23, 0.28) !important;
    }
}

@media (max-width: 480px) {
    .pt-lightbox {
        padding-top: max(56px, env(safe-area-inset-top)) !important;
    }
    .pt-lightbox__img-wrap {
        height: min(56vh, 400px) !important;
        min-height: 220px !important;
        max-height: 56vh !important;
    }
    .pt-lightbox__close,
    .pt-lightbox__nav {
        width: 36px !important;
        height: 36px !important;
    }
    .pt-lightbox__close {
        top: -44px !important;
        right: 0 !important;
    }
    .pt-lightbox__thumb {
        width: 50px !important;
        height: 50px !important;
    }
}

/* --- Lightbox slide transitions ------------------------------------------ */
.pt-lightbox__img-wrap { overflow: visible; }
.pt-lightbox__img--base { position: relative; z-index: 2; }
.pt-lightbox__img--layer {
    position: absolute;
    inset: 0;
    margin: auto;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    pointer-events: none;
    z-index: 3;
}
.pt-lightbox__img--out-left  { animation: pt-lb-out-l .38s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.pt-lightbox__img--out-right { animation: pt-lb-out-r .38s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.pt-lightbox__img--in-right  { animation: pt-lb-in-r  .38s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.pt-lightbox__img--in-left   { animation: pt-lb-in-l  .38s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }

@keyframes pt-lb-out-l { from{transform:translateX(0);opacity:1} to{transform:translateX(-105vw);opacity:.85} }
@keyframes pt-lb-out-r { from{transform:translateX(0);opacity:1} to{transform:translateX(105vw);opacity:.85} }
@keyframes pt-lb-in-r  { from{transform:translateX(105vw);opacity:.85} to{transform:translateX(0);opacity:1} }
@keyframes pt-lb-in-l  { from{transform:translateX(-105vw);opacity:.85} to{transform:translateX(0);opacity:1} }

/* --- Single product: anchor offset + gallery actions (basket/fav) --------- */
#pt-reviews {
    scroll-margin-top: 56px;
}
@media (max-width: 767px) {
    #pt-reviews {
        scroll-margin-top: 48px;
    }
}

.pt-gallery__main .pt-gallery__basket.pt-basket-add-btn:active {
    transform: translateY(0) scale(0.96) !important;
}

.pt-gallery__main .pt-gallery__basket[data-tooltip]::after {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    
}

.pt-gallery__favorite:hover .pt-icon,
.pt-gallery__favorite:focus-visible .pt-icon {
    stroke: #f43f5e !important;
}

.pt-gallery__favorite.pt-gallery__favorite--active,
button.pt-gallery__favorite.pt-gallery__favorite--active {
    color: #ef4444 !important;
    background: #fff !important;
    background-color: #fff !important;
}

.pt-gallery__favorite.pt-gallery__favorite--active .pt-icon,
.pt-gallery__favorite.pt-gallery__favorite--active .pt-icon path {
    fill: currentColor !important;
    stroke: #ef4444 !important;
}

.pt-gallery__favorite.pt-gallery__favorite--active.pt-gallery__favorite--animating .pt-icon {
    fill: currentColor !important;
    stroke: #ef4444 !important;
    animation: pt-fav-heart-pop 0.42s cubic-bezier(0.22, 0.9, 0.36, 1);
}

.pt-gallery__favorite.pt-gallery__favorite--active.pt-gallery__favorite--animating .pt-icon path {
    fill: currentColor !important;
    stroke: #ef4444 !important;
    stroke-dasharray: var(--pt-fav-path-length);
    stroke-dashoffset: var(--pt-fav-path-length);
    animation: pt-fav-heart-draw 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.pt-gallery__favorite.pt-gallery__favorite--animating::before {
    animation: pt-fav-confetti-burst 0.34s ease-out 0.14s forwards;
}

/* Deals badge on gallery image (top-left, matches 12px spacing of fav/zoom) */
.pt-gallery__main .wb24-deals-badge {
    top: 12px;
    left: 12px;
}

/* bundled source: assets/css/price-list.css */
/* Structural rules for the offer list + filter bar previously lived here BUT
   render after the body HTML the rules style. Progressive painting in some
   browsers (and LiteSpeed-cached pages with optm-css_async=true) flashed
   un-styled offer rows before the inline block was parsed. They have moved to
   `Assets::inlineCriticalCss()` which lands in <head> on every page where
   our assets load, so the rules apply before any of the matching HTML is
   parsed. Only decorative/interactive rules remain in this body-tail block. */

.pt-price-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 !important;
    margin: 0 !important;
}

.pt-price-filters__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pt-price-filters__pill {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.pt-price-filters__pill input {
    display: none;
}

.pt-price-filters__pill span {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--pt-color-gray-700, #374151);
    background: #fff;
    border: 1px solid var(--pt-color-gray-300, #d1d5db);
    border-radius: 999px;
    transition: all 0.2s;
}

.pt-price-filters__pill:hover span {
    background: var(--pt-color-gray-50, #f9fafb);
    border-color: var(--pt-color-gray-400, #9ca3af);
}

.pt-price-filters__pill input:checked + span {
    background: var(--pt-color-gray-900, #111827);
    color: #fff;
    border-color: var(--pt-color-gray-900, #111827);
}

.pt-price-filters__right {
    display: flex;
    align-items: center;
}

.pt-price-filters__dropdown {
    position: relative;
    display: block;
    width: 220px;
    min-width: 220px;
    height: 42px;
    min-height: 42px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--pt-color-gray-300, #d1d5db);
    border-radius: 999px;
}

.pt-price-filters__dropdown select {
    display: block;
    appearance: none;
    padding: 10px 36px 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pt-color-gray-700, #374151);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    width: 100%;
    min-width: 0;
    height: 40px;
    min-height: 40px;
    box-sizing: border-box;
}

.pt-price-filters__dropdown select:focus {
    outline: none;
}

.pt-price-filters__dropdown:focus-within {
    border-color: var(--pt-color-primary, #3b82f6);
}

.pt-price-filters__dropdown-trigger,
.pt-price-filters__dropdown-menu {
    display: none;
}

/* Defensive: the user-agent `[hidden] { display: none }` rule has very low
   specificity (0,0,1) so the !important `display:flex` rules further down
   for `.pt-price-filters__dropdown-trigger` and the bare menu's later
   `display: flex` win without this guard. Without it, the trigger button
   and the entire menu (with all option buttons) flash visible during the
   LiteSpeed CSS-loaded-but-JS-not-yet window — that's what the "filter
   dropdown loads weirdly" report was. This rule keeps the elements hidden
   for as long as PHP renders them with the `hidden` HTML attribute.       */
.pt-price-filters__dropdown-trigger[hidden],
.pt-price-filters__dropdown-menu[hidden] {
    display: none !important;
}

.pt-price-filters__dropdown--enhanced select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.pt-price-filters__dropdown--enhanced .pt-price-filters__dropdown-trigger {
    display: flex !important;
}

.pt-price-filters__dropdown--enhanced {
    border-color: var(--pt-color-gray-300, #d1d5db) !important;
}

.pt-price-filters__dropdown--enhanced.is-open {
    border-color: var(--pt-color-gray-400, #9ca3af) !important;
}

.pt-price-filters__dropdown--enhanced .pt-price-filters__dropdown-menu {
    display: flex;
}

.pt-price-filters__dropdown--enhanced .pt-price-filters__dropdown-menu[hidden] {
    display: none !important;
}

.pt-price-filters__dropdown-trigger {
    width: 100% !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 10px 16px !important;
    min-height: 40px !important;
    box-sizing: border-box !important;
    border-radius: 999px !important;
    border: none !important;
    background: transparent !important;
    color: var(--pt-color-gray-700, #374151) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    appearance: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}
.pt-price-filters__dropdown-trigger:hover {
    background: var(--pt-color-gray-50, #f9fafb) !important;
}

.pt-price-filters__dropdown-trigger:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.12) !important;
}

.pt-price-filters__dropdown-trigger-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--pt-color-gray-500, #6b7280) !important;
}

.pt-price-filters__dropdown-trigger-label {
    flex: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.pt-price-filters__dropdown-chevron {
    color: var(--pt-color-gray-500, #6b7280) !important;
    transition: transform 0.12s ease !important;
}

.pt-price-filters__dropdown.is-open .pt-price-filters__dropdown-chevron {
    transform: rotate(180deg);
}

.pt-price-filters__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    max-height: min(70vh, 320px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--pt-color-gray-200, #e5e7eb);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.pt-price-filters__dropdown-option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 9px 10px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--pt-color-gray-700, #374151);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
}

.pt-price-filters__dropdown-option:hover {
    background: var(--pt-color-gray-50, #f9fafb);
}

.pt-price-filters__dropdown-option.is-active {
    background: var(--pt-color-gray-100, #f3f4f6);
    color: var(--pt-color-gray-900, #111827);
}

.pt-price-filters__dropdown-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.pt-affiliate-notice {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--pt-color-gray-500, #6b7280);
}

.pt-no-offers {
    padding: 40px;
    text-align: center;
    color: var(--pt-color-gray-500, #6b7280);
    background: var(--pt-color-gray-50, #f9fafb);
    border-radius: 8px;
}

.pt-loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: var(--pt-color-gray-500, #6b7280);
}


.feedtrackr-offer.pt-hidden-by-filter {
    display: none !important;
}

.pt-price-section .feedtrackr-lowest-banner {
    display: none !important;
}

.pt-price-section .feedtrackr-compset {
    margin-top: 0 !important;
    background: transparent !important;
}

.pt-price-section .feedtrackr-offers {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.pt-price-section .feedtrackr-offers:empty {
    min-height: 220px !important;
}

.pt-price-section .feedtrackr-offer,
.pt-price-section .feedtrackr-offer:hover,
.pt-price-section .feedtrackr-offer:active,
.pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer,
.pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer:hover {
    background: #fff !important;
    box-shadow: none !important;
}

.pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer--best,
.pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer--best:hover,
.pt-price-section .feedtrackr-offer.feedtrackr-offer--best {
    border-color: var(--pt-color-gray-200, #e5e7eb) !important;
    border-width: 1px !important;
    box-shadow: none !important;
    background: #fff !important;
}

.pt-price-section .feedtrackr-compset--allstores .feedtrackr-offer--best::before {
    display: none !important;
}

@media (max-width: 768px) {
    .pt-price-filters {
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 8px;
        overflow: visible;
        padding-bottom: 4px;
    }

    .pt-price-filters__left {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
        flex-shrink: 1;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0;
        gap: 8px;
    }

    .pt-price-filters__pill {
        flex: 0 0 auto;
    }

    .pt-price-filters__pill span {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .pt-price-filters__left::-webkit-scrollbar {
        display: none;
    }
    
    .pt-price-filters__right {
        width: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 80;
    }
    
    .pt-price-filters__dropdown {
        /* 144px outer pill = 142px content + the two reserved 1px borders. */
        width: 144px !important;
        min-width: 144px !important;
        max-width: 144px !important;
        height: 42px !important;
        min-height: 42px !important;
    }

    .pt-price-filters__dropdown select,
    .pt-price-filters__dropdown-trigger {
        width: 100% !important;
        min-width: 0 !important;
        height: 40px !important;
        min-height: 40px !important;
    }

    .pt-price-filters__dropdown select,
    .pt-price-filters__dropdown-trigger {
        gap: 8px !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    .pt-price-filters__dropdown select {
        padding-right: 30px !important;
    }

    .pt-price-filters__dropdown-menu {
        min-width: 210px;
        right: 0;
        left: auto;
    }
}

/* bundled source: assets/css/single-product-about-specs.css */
#pt-about.pt-section,
#pt-specs.pt-section,
#pt-history.pt-section {
    width: calc(100% - (var(--pt-container-padding) * 2)) !important;
    max-width: var(--pt-container-max);
    margin: 0 auto 1.5rem !important;
    padding: 1.5rem !important;
    background: #fff !important;
    border: 1px solid var(--pt-color-gray-200) !important;
    border-radius: var(--pt-radius-xl) !important;
    box-shadow: var(--pt-shadow-sm) !important;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    #pt-about.pt-section,
    #pt-specs.pt-section,
    #pt-history.pt-section {
        padding: 2.5rem !important;
    }
}

#pt-about.pt-section > *,
#pt-specs.pt-section > *,
#pt-history.pt-section > * {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* The v5 card lives inside the centered .pt-section wrapper, so it just needs
   to fill the available width without adding its own border/background. */
#pt-history.pt-section .pt-history--v5 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

#pt-about .pt-section__header,
#pt-specs .pt-section__header {
    margin-bottom: 2rem;
}

.pt-section__title-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--pt-color-gray-100);
    color: var(--pt-color-gray-700);
}

.pt-section__title-icon .pt-icon {
    width: 18px;
    height: 18px;
}

.pt-about__banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.125rem;
    padding: 1.125rem 1.25rem;
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid var(--pt-color-gray-200);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow-sm);
    position: relative;
    overflow: hidden;
}

.pt-about__banner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(to bottom, #10b981 0%, #059669 100%);
}

.pt-about__banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid #a7f3d0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
}

.pt-about__banner-icon svg {
    width: 20px;
    height: 20px;
}

.pt-about__banner-text {
    min-width: 0;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--pt-color-gray-700);
}

.pt-about__banner-text strong {
    color: var(--pt-color-gray-900);
    font-weight: 600;
}

#pt-about .pt-about__banner-cta,
#pt-about .pt-about__banner-cta:visited {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0.625rem 1rem !important;
    border: 1px solid var(--pt-color-gray-900) !important;
    border-radius: var(--pt-radius-md) !important;
    background: var(--pt-color-gray-900) !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transform: none !important;
    transition: background var(--pt-transition-fast), border-color var(--pt-transition-fast) !important;
}

#pt-about .pt-about__banner-cta:hover,
#pt-about .pt-about__banner-cta:focus,
#pt-about .pt-about__banner-cta:active {
    border-color: var(--pt-color-gray-800) !important;
    background: var(--pt-color-gray-800) !important;
    color: #fff !important;
    box-shadow: none !important;
    transform: none !important;
}

#pt-about .pt-about__banner-cta svg {
    width: 14px !important;
    height: 14px !important;
}

.pt-about__content {
    position: relative;
    max-width: 68ch;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--pt-color-gray-700);
}

.pt-about__content--collapsed {
    max-height: 380px;
    overflow: hidden;
}

.pt-about__content--collapsed::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, #fff 85%);
}

.pt-about__content p {
    margin: 0 0 1.25rem;
}

.pt-about__content p:last-child {
    margin-bottom: 0;
}

.pt-about__content h2,
.pt-about__content h3,
.pt-about__content h4 {
    margin: 2rem 0 0.75rem !important;
    font-size: 1.25rem;
    font-weight: 600 !important;
    line-height: 1.35;
    color: var(--pt-color-gray-900);
    letter-spacing: -0.01em;
}

.pt-about__content h2:first-child,
.pt-about__content h3:first-child,
.pt-about__content h4:first-child {
    margin-top: 0 !important;
}

.pt-about__content ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.pt-about__content ul li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.pt-about__content ul li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pt-color-gray-400);
}

.pt-about__content strong {
    color: var(--pt-color-gray-900);
    font-weight: 600;
}

.pt-about__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    padding: 0 0 2px;
    border: 0;
    border-bottom: 1px solid var(--pt-color-gray-300);
    background: none;
    color: var(--pt-color-gray-900);
    font: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--pt-transition-fast), color var(--pt-transition-fast);
}

.pt-about__toggle[hidden] {
    display: none !important;
}

.pt-about__toggle:hover {
    border-color: var(--pt-color-gray-900);
}

.pt-about__toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--pt-transition-base);
}

.pt-about__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.pt-specs-list__group {
    margin-bottom: 2rem;
}

.pt-specs-list__group:last-child {
    margin-bottom: 0;
}

.pt-specs-list__group-title {
    margin: 0 0 0.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--pt-color-gray-200);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pt-color-gray-500);
}

.pt-specs-list__items {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
}

@media (min-width: 720px) {
    .pt-specs-list__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 3rem;
    }
}

.pt-specs-list__item {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 1rem;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--pt-color-gray-100);
}

.pt-specs-list__key {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pt-color-gray-500);
}

.pt-specs-list__value,
.pt-specs-list__value-wrap {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--pt-color-gray-900);
    word-break: break-word;
}

.pt-specs-list__value a,
.pt-specs-list__value-wrap a {
    color: inherit;
    text-decoration: none;
}

.pt-specs-list__value a:hover,
.pt-specs-list__value-wrap a:hover {
    text-decoration: underline;
}

.pt-specs-list__value--bool {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pt-specs-list__value--bool svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--pt-color-gray-500);
}

.pt-specs-list__value--ingredients {
    color: var(--pt-color-gray-600);
    line-height: 1.55;
}

.pt-specs-list__ingredients-toggle {
    display: inline;
    margin-left: 0.25rem;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--pt-color-gray-300);
    background: none;
    color: var(--pt-color-gray-900);
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--pt-transition-fast);
}

.pt-specs-list__ingredients-toggle:hover {
    border-color: var(--pt-color-gray-900);
}

@media (max-width: 768px) {
    .pt-about__banner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 1rem;
    }

    #pt-about .pt-about__banner-cta {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    #pt-about.pt-section,
    #pt-specs.pt-section,
    #pt-history.pt-section {
        width: calc(100% - 1rem) !important;
        padding: 1.25rem !important;
    }

    .pt-about__banner {
        gap: 0.875rem;
        padding: 1rem;
    }

    .pt-about__banner-icon {
        width: 38px;
        height: 38px;
    }

    .pt-about__banner-text {
        font-size: 0.875rem;
    }

    .pt-specs-list__item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

.pt-price-section .pt-price-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    margin-bottom: 12px !important;
}

.pt-basket-add-btn:not(.pt-basket-add-btn--active) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgb(255 255 255) !important;
    color: var(--pt-color-gray-600, #4b5563) !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.15s, box-shadow 0.15s, color 0.15s !important;
}

.pt-gallery__desktop-media {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 15px;
}

#pt-offers .feedtrackr-offer__action-label {
    display: none !important;
}

@media (min-width: 768px) {
    #pt-offers .feedtrackr-compset--bestprice .feedtrackr-offer,
    #pt-offers .feedtrackr-compset--allstores .feedtrackr-offer {
        text-decoration: none !important;
        border: 1px solid var(--ft-gray-200, #e5e7eb) !important;
        border-radius: 18px !important;
        margin: 0.2rem 0 !important;
        background: #fff !important;
    }

    #pt-offers .feedtrackr-compset--bestprice .feedtrackr-offer__action,
    #pt-offers .feedtrackr-compset--allstores .feedtrackr-offer__action {
        width: auto !important;
        min-width: 104px;
        height: 40px !important;
        gap: 0.45rem;
        padding: 0 0.95rem !important;
        border-radius: var(--pt-radius-full);
        background: var(--pt-color-gray-900);
        color: #fff !important;
        font-size: 0.8125rem;
        font-weight: 700;
        line-height: 1;
        transform: none !important;
    }

    #pt-offers .feedtrackr-compset--bestprice .feedtrackr-offer:hover .feedtrackr-offer__action,
    #pt-offers .feedtrackr-compset--allstores .feedtrackr-offer:hover .feedtrackr-offer__action {
        background: #000;
        box-shadow: var(--pt-shadow-md);
        transform: translateY(-1px) !important;
    }

    #pt-offers .feedtrackr-compset--bestprice .feedtrackr-offer__action-label,
    #pt-offers .feedtrackr-compset--allstores .feedtrackr-offer__action-label {
        display: inline !important;
        white-space: nowrap;
    }

    #pt-offers .feedtrackr-compset--bestprice .feedtrackr-offer__action svg,
    #pt-offers .feedtrackr-compset--allstores .feedtrackr-offer__action svg {
        width: 16px;
        height: 16px;
    }
}
