/* ─────────────────────────────────────────────────────────────────────────────
   Premium Sound – In-Store Display
   Editorial "outline" strip — hairline box, no fill, monochrome.
   Accent is a single variable so it can be retuned (or tinted) in one place.
   ───────────────────────────────────────────────────────────────────────────── */

.ps-isd-strip {
    --ps-isd-accent: #D2A24C;   /* box, icon, link */
    --ps-isd-label:  #E8BE68;   /* label line */
    --ps-isd-sub:    #EFE7D9;   /* sub-line */
    --ps-isd-bg:     #26201A;   /* strip background */
    --ps-isd-link-hover: #E8BE68;   /* link colour on hover */

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--ps-isd-bg);
    border: 1px solid var(--ps-isd-accent);
    border-radius: 6px;
    padding: 12px 14px;
    margin: 0 0 16px 0;
}

.ps-isd-strip-left {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
    min-width: 0;
}

/* Icon */
.ps-isd-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--ps-isd-accent);
}

.ps-isd-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* Text block */
.ps-isd-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ps-isd-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ps-isd-label);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
}

.ps-isd-sub {
    font-size: 11px;
    color: var(--ps-isd-sub);
    line-height: 1.4;
}

/* Visit link */
.ps-isd-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--ps-isd-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.ps-isd-link:hover {
    color: var(--ps-isd-link-hover);
}

/* On mobile the theme centres the summary column, so centre the strip to
   match — icon on top, text and link centred — and size everything up a little. */
@media ( max-width: 480px ) {
    .ps-isd-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }
    .ps-isd-strip-left {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        flex: none;
    }
    .ps-isd-icon,
    .ps-isd-icon svg {
        width: 24px;
        height: 24px;
    }
    .ps-isd-text {
        align-items: center;
        gap: 4px;
    }
    .ps-isd-label {
        font-size: 13px;
        letter-spacing: 0.1em;
    }
    .ps-isd-sub {
        font-size: 12px;
    }
    .ps-isd-link {
        align-self: center;
        font-size: 12px;
    }
}
