/*
 * EquitiFy Portfolio Map – Property Detail Page Styles
 * Design system sourced from EquitiFy Offering Memorandum.
 *
 * Palette:
 *   --navy:        #1a2744   (primary text, logo, headings)
 *   --steel:       #2d5f7c   (table headers, accent elements)
 *   --accent:      #2d5f7c   (horizontal accent bar, visual signature)
 *   --text:        #1a2744
 *   --text-sec:    #4a5a6e
 *   --muted:       #6b7a90
 *   --bg:          #ffffff
 *   --bg-alt:      #f7f9fb   (alternating table rows)
 *   --border:      #e2e7ed
 *   --border-lt:   #edf0f4
 *
 * Typography: DM Sans only (no serif).
 */


/* ══════════════════════════════════════════════════
   PAGE RESET
   ══════════════════════════════════════════════════ */
.eqpd-page {
    width: 100%;
    max-width: none;
    font-family: 'DM Sans', sans-serif;
    color: #1a2744;
    line-height: 1.6;
    background: #fff;
    box-shadow: 0 0 2px 1px rgba(26, 39, 68, 0.21);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.eqpd-page *, .eqpd-page *::before, .eqpd-page *::after {
    box-sizing: border-box;
}
.eqpd-page h1, .eqpd-page h2, .eqpd-page h3 {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    line-height: 1.25;
}


/* ══════════════════════════════════════════════════
   PAGE HEADER  (mirrors OM masthead on every page)
   Logo left · Property shorthand right · accent bar
   ══════════════════════════════════════════════════ */
.eqpd-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 200;
}
.eqpd-header__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 20px 40px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #e2e7ed;
}
.eqpd-header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.eqpd-header__brand-icon {
    width: 36px;
    height: 36px;
    color: #1a2744;
}
.eqpd-header__brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2744;
    letter-spacing: -0.01em;
}
.eqpd-header__meta {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #6b7a90;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Tenant / property logo in header meta area */
.eqpd-header__logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}
.eqpd-header__meta strong {
    color: #1a2744;
    font-weight: 800;
}
/* Thick accent bar — OM visual signature */
.eqpd-header__accent {
    height: 4px;
    background: #2d5f7c;
}


/* ══════════════════════════════════════════════════
   HERO SECTION  (OM cover page)
   ══════════════════════════════════════════════════ */
.eqpd-hero {
    position: relative;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}
.eqpd-hero__image {
    width: 100%;
    height: auto;
    min-height: 320px;
    max-height: 560px;
    object-fit: cover;
    display: block;
}
.eqpd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 14, 28, 0.80) 0%,
        rgba(8, 14, 28, 0.30) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.eqpd-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 40px 36px;
}
.eqpd-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.eqpd-hero__address {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    margin: 0;
}


/* ══════════════════════════════════════════════════
   CONTACT BAR  (below hero, like OM cover footer)
   ══════════════════════════════════════════════════ */
.eqpd-contact-bar {
    max-width: 100%;
    margin: 0;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #e2e7ed;
}
.eqpd-contact-bar__left {
    font-size: 0.8125rem;
    color: #1a2744;
}
.eqpd-contact-bar__left strong {
    font-weight: 700;
}
.eqpd-contact-bar__left span {
    color: #6b7a90;
    margin: 0 6px;
}
.eqpd-contact-bar__right {
    font-size: 0.8125rem;
    color: #6b7a90;
    text-align: right;
}
.eqpd-contact-bar__right strong {
    font-weight: 700;
    color: #1a2744;
}
.eqpd-contact-bar a {
    color: #2d5f7c;
    text-decoration: none;
}
.eqpd-contact-bar a:hover {
    text-decoration: underline;
}


/* ══════════════════════════════════════════════════
   SECTION SYSTEM  (replaces old band system)
   ══════════════════════════════════════════════════ */
.eqpd-section-wrap {
    max-width: 100%;
    margin: 0;
    padding: 40px 40px 44px;
}
.eqpd-section-wrap + .eqpd-section-wrap {
    border-top: 1px solid #e2e7ed;
}

/* Section heading — OM style: uppercase, bold, navy */
.eqpd-sh {
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a2744;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a2744;
}


/* ══════════════════════════════════════════════════
   PROPERTY SUMMARY  (OM page 3 — two-column)
   ══════════════════════════════════════════════════ */
.eqpd-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 68px;
    align-items: start;
}
.eqpd-summary__desc-title {
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a2744;
    margin: 0 0 12px;
}
.eqpd-summary__desc-body {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #2a3850;
    text-align: justify;
    margin-bottom: 28px;
}
.eqpd-summary__desc-body p {
    margin: 0 0 14px;
}
.eqpd-summary__desc-body p:last-child {
    margin-bottom: 0;
}
/* Highlights list — OM bullet style */
.eqpd-summary__highlights-title {
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a2744;
    margin: 28px 0 12px;
}
.eqpd-highlights-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.eqpd-highlights-list li {
    font-size: 0.9375rem;
    color: #2a3850;
    line-height: 1.7;
    margin-bottom: 4px;
}


/* ══════════════════════════════════════════════════
   OM-STYLE TABLES (offering summary, details, etc.)
   Steel-blue header, alternating rows, right-aligned values
   ══════════════════════════════════════════════════ */
.eqpd-om-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin-bottom: 20px;
}
.eqpd-om-table thead th {
    background: #2d5f7c;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 14px;
    text-align: left;
    border: none;
}
.eqpd-om-table thead th:last-child {
    text-align: right;
}
/* Multi-column header — like demographics radius columns */
.eqpd-om-table thead th.col-center {
    text-align: center;
}
.eqpd-om-table tbody td {
    padding: 9px 14px;
    border-bottom: 1px solid #edf0f4;
    color: #1a2744;
    font-weight: 500;
}
.eqpd-om-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
}
.eqpd-om-table tbody tr:nth-child(even) {
    background: #f7f9fb;
}
.eqpd-om-table tbody td.col-center {
    text-align: center;
}
/* Table label cells */
.eqpd-om-table .td-label {
    color: #1a2744;
    font-weight: 500;
}

/* OM download link inside table */
.eqpd-om-table .eqpd-dl-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2d5f7c;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8125rem;
}
.eqpd-om-table .eqpd-dl-link:hover {
    text-decoration: underline;
}
.eqpd-om-table .eqpd-dl-link svg {
    flex-shrink: 0;
}

/* N/A placeholder */
.eqpd-na {
    color: #b0bac8;
    font-weight: 400;
}

/* Category badge */
.eqpd-cat-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}


/* ══════════════════════════════════════════════════
   PHOTO GALLERY  (OM page 5 — 1+3 layout)
   First photo full-width, remaining three in a row.
   ══════════════════════════════════════════════════ */
.eqpd-photos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.eqpd-photos__item {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity 0.2s;
}
.eqpd-photos__item:hover {
    opacity: 0.92;
}
/* First image spans full width (OM hero row) */
.eqpd-photos__item:first-child {
    grid-column: 1 / -1;
}
.eqpd-photos__item:first-child img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
/* Remaining images fill 3-column row */
.eqpd-photos__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


/* ══════════════════════════════════════════════════
   MAP SECTION
   ══════════════════════════════════════════════════ */
.eqpd-map-container {
    width: 100%;
    height: 480px;
    border-radius: 2px;
    overflow: hidden;
}
/* Leaflet fallback (2D) — only present when no Google Maps API key. */
.eqpd-map-container.eqpd-map-leaflet .leaflet-container {
    width: 100%;
    height: 100%;
}
/* Google 3D Map web component fills container. */
gmp-map-3d {
    display: block;
    width: 100%;
    height: 100%;
}


/* ══════════════════════════════════════════════════
   SUPPLEMENTAL / ADDITIONAL INFO TABLE
   ══════════════════════════════════════════════════ */
.eqpd-supp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.eqpd-supp-table tr {
    border-bottom: 1px solid #edf0f4;
}
.eqpd-supp-table tr:last-child {
    border-bottom: none;
}
.eqpd-supp-table tr:nth-child(even) {
    background: #f7f9fb;
}
.eqpd-supp-table td {
    padding: 10px 14px;
}
.eqpd-supp-table .td-label {
    font-weight: 600;
    color: #1a2744;
    width: 40%;
}
.eqpd-supp-table .td-value {
    color: #3a4a63;
    text-align: right;
}


/* ══════════════════════════════════════════════════
   LEASE SPACES TABLE
   ══════════════════════════════════════════════════ */
.eqpd-lease-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.eqpd-lease-table thead th {
    background: #2d5f7c;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 9px 12px;
    text-align: left;
    white-space: nowrap;
}
.eqpd-lease-table tbody td {
    padding: 9px 12px;
    border-bottom: 1px solid #edf0f4;
    color: #1a2744;
    vertical-align: top;
}
.eqpd-lease-table tbody tr:nth-child(even) {
    background: #f7f9fb;
}
.eqpd-lease-desc {
    font-size: 0.75rem;
    color: #6b7a90;
    margin-top: 4px;
    line-height: 1.5;
}


/* ══════════════════════════════════════════════════
   ADVISOR / CONTACT CARD  (OM page 9)
   Square portrait left, name + contact info right.
   ══════════════════════════════════════════════════ */
.eqpd-advisor-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid #e2e7ed;
    border-radius: 2px;
    padding: 20px 24px;
    max-width: 540px;
}
.eqpd-advisor__photo {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
}
.eqpd-advisor__info {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}
.eqpd-advisor__name {
    font-size: 0.9375rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a2744;
    margin-bottom: 8px;
}
.eqpd-advisor__detail {
    font-size: 0.875rem;
    color: #4a5a6e;
    line-height: 1.8;
}
.eqpd-advisor__detail a {
    color: #2d5f7c;
    text-decoration: none;
}
.eqpd-advisor__detail a:hover {
    text-decoration: underline;
}


/* ══════════════════════════════════════════════════
   OM CTA BUTTON  (download offering memorandum)
   ══════════════════════════════════════════════════ */
.eqpd-om-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    background: #1a2744;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
}
.eqpd-om-cta:hover {
    background: #2d5f7c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 39, 68, 0.25);
    text-decoration: none;
}
.eqpd-om-cta svg {
    flex-shrink: 0;
}


/* ══════════════════════════════════════════════════
   PAGE FOOTER  (OM style — separator + company info)
   ══════════════════════════════════════════════════ */
.eqpd-page-footer {
    max-width: 100%;
    margin: 0;
    padding: 0 40px 40px;
    border-top: none;
}
/* Accent line above footer — mirrors header accent bar */
.eqpd-page-footer::before {
    content: '';
    display: block;
    height: 4px;
    background: #2d5f7c;
    margin-bottom: 24px;
}
.eqpd-page-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.eqpd-page-footer__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2d5f7c;
    text-decoration: none;
    transition: color 0.15s;
}
.eqpd-page-footer__back:hover {
    color: #1a2744;
}
.eqpd-page-footer__back svg {
    flex-shrink: 0;
    transition: transform 0.15s;
}
.eqpd-page-footer__back:hover svg {
    transform: translateX(-3px);
}
.eqpd-page-footer__company {
    font-size: 0.75rem;
    color: #6b7a90;
    text-align: right;
}
.eqpd-page-footer__company strong {
    font-weight: 700;
    color: #1a2744;
}


/* ══════════════════════════════════════════════════
   LIGHTBOX  (kept from previous — re-themed)
   ══════════════════════════════════════════════════ */
.eqpd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 16, 30, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.eqpd-lightbox.is-open {
    display: flex;
}
.eqpd-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.15s;
    line-height: 1;
}
.eqpd-lightbox__close:hover {
    color: #fff;
}
.eqpd-lightbox__prev,
.eqpd-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 2;
    transition: all 0.15s;
}
.eqpd-lightbox__prev:hover,
.eqpd-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.eqpd-lightbox__prev { left: 16px; }
.eqpd-lightbox__next { right: 16px; }
.eqpd-lightbox__stage {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eqpd-lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.eqpd-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 880px) {
    .eqpd-summary {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .eqpd-header__inner {
        padding: 16px 20px 12px;
        flex-wrap: wrap;
    }
    .eqpd-header__meta {
        font-size: 0.6rem;
        white-space: normal;
    }
    .eqpd-hero__content {
        padding: 32px 20px 24px;
    }
    .eqpd-hero__image {
        min-height: 240px;
    }
    .eqpd-contact-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 20px;
    }
    .eqpd-contact-bar__right {
        text-align: left;
    }
    .eqpd-section-wrap {
        padding: 28px 20px 32px;
    }
    .eqpd-photos__item:first-child img {
        height: 260px;
    }
    .eqpd-photos__item img {
        height: 160px;
    }
    .eqpd-map-container {
        height: 300px;
    }
    .eqpd-advisor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .eqpd-page-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .eqpd-page-footer__company {
        text-align: left;
    }
    /* Lease table: horizontal scroll on mobile */
    .eqpd-lease-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .eqpd-hero__image {
        min-height: 200px;
        max-height: 300px;
    }
    .eqpd-hero__title {
        font-size: 1.5rem;
    }
    .eqpd-photos__grid {
        grid-template-columns: 1fr;
    }
    .eqpd-photos__item:first-child {
        grid-column: span 1;
    }
    .eqpd-photos__item:first-child img {
        height: 200px;
    }
    .eqpd-photos__item img {
        height: 180px;
    }
    .eqpd-lightbox__prev,
    .eqpd-lightbox__next {
        width: 36px;
        height: 36px;
    }
    .eqpd-lightbox__prev svg,
    .eqpd-lightbox__next svg {
        width: 20px;
        height: 20px;
    }
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    .eqpd-photos__item { transition: none; }
    .eqpd-om-cta { transition: none; }
    .eqpd-page-footer__back svg { transition: none; }
    .eqpd-page-footer__back:hover svg { transform: none; }
    .eqpd-lightbox__prev, .eqpd-lightbox__next { transition: none; }
    .eqpd-lightbox__close { transition: none; }
    .eqpd-sticky-bar { transition: none; }
}


/* ══════════════════════════════════════════════════
   STICKY CONVERSION BAR
   Hidden below the fold; slides in once hero scrolls out.
   ══════════════════════════════════════════════════ */
.eqpd-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: #1a2744;
    border-bottom: 3px solid #2d5f7c;
    box-shadow: 0 4px 24px rgba(10, 16, 30, 0.35);
    /* Start above viewport; JS adds .is-visible to slide it down */
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(.16,1,.3,1);
    will-change: transform;
}
.eqpd-sticky-bar.is-visible {
    transform: translateY(0);
}

.eqpd-sticky-bar__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Info cluster: name · price · pill */
.eqpd-sticky-bar__info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}
.eqpd-sticky-bar__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    letter-spacing: -0.01em;
}
.eqpd-sticky-bar__price {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #c9952c;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.eqpd-sticky-bar__pill {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* CTA buttons */
.eqpd-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.eqpd-sticky-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}
.eqpd-sticky-bar__btn--primary {
    background: #2d5f7c;
    color: #fff;
    box-shadow: 0 2px 10px rgba(45,95,124,.35);
}
.eqpd-sticky-bar__btn--primary:hover {
    background: #3a7ca5;
    box-shadow: 0 4px 16px rgba(45,95,124,.45);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}
.eqpd-sticky-bar__btn--secondary {
    background: rgba(201,149,44,0.12);
    color: #c9952c;
    border: 1px solid rgba(201,149,44,0.3);
}
.eqpd-sticky-bar__btn--secondary:hover {
    background: rgba(201,149,44,0.2);
    border-color: rgba(201,149,44,0.5);
    transform: translateY(-1px);
    color: #c9952c;
    text-decoration: none;
}
.eqpd-sticky-bar__btn svg {
    flex-shrink: 0;
}

/* Responsive: collapse name on small screens */
@media (max-width: 768px) {
    .eqpd-sticky-bar__inner {
        padding: 10px 16px;
        gap: 10px;
    }
    .eqpd-sticky-bar__name {
        display: none; /* price + pill sufficient on mobile */
    }
    .eqpd-sticky-bar__pill {
        display: none;
    }
    .eqpd-sticky-bar__btn span {
        display: none; /* icon-only on mobile */
    }
    .eqpd-sticky-bar__btn {
        padding: 10px 14px;
    }
}
@media (max-width: 480px) {
    .eqpd-sticky-bar__price {
        font-size: 0.875rem;
    }
}
