/**
 * THE MUSIC DEPT — client-supplied storefront CSS (WordPress-ready
 * conversion of the approved frontend). VERBATIM. Do not edit.
 */

/* STREAMING_CHUNK:Initializing typography and CSS variables... */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Caveat:wght@600&display=swap');

:root {
    --bs-primary: #000000;
    --bs-accent: #fcbb45;
    --bs-button: #fcbb45;
    --bs-button-text: #0c0c0c;
    --bs-surface: #ffffff;
    --bs-text: #0c0c0c;
    --bs-border: #0c0c0c;
    --bs-radius: 0;
    --bs-radius-button: 0;
}

/* STREAMING_CHUNK:Setting global wrappers and font families... */
.bs-store-wrapper {
    background-color: #ffffff;
    color: #0c0c0c;
    font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    box-sizing: border-box;
}

.bs-store-wrapper *, .bs-store-wrapper *::before, .bs-store-wrapper *::after {
    box-sizing: inherit;
}

.bs-catalog, .bs-player, .bs-sticky, .bs-modal__panel,
.bs-button, .bs-field input, .bs-filters__search input {
    font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
}

.bs-card__title, .bs-player__title, .bs-sticky__title,
.bs-modal__title, .bs-option-card__name {
    font-family: "Space Mono", "IBM Plex Mono", "Courier New", monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* STREAMING_CHUNK:Styling the hero section and marquee... */
.bs-hero-section {
    background-image: linear-gradient(rgba(12, 12, 12, 0.3), rgba(12, 12, 12, 0.9)), url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 10rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 85vh;
}

.bs-hero-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.bs-hero-title-outline {
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    font-family: Impact, sans-serif;
    -webkit-text-stroke: 2px #ffffff;
    color: transparent;
}

.bs-hero-title-solid {
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    color: #ffffff;
    font-family: Impact, sans-serif;
}

.bs-marquee-container {
    width: 100%;
    overflow: hidden;
    background: #0c0c0c;
    border-bottom: 2px solid #fcbb45;
    padding: 1.5rem 0;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 20;
}

.bs-marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.bs-marquee-content span {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 4rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.bs-marquee-content span:hover {
    opacity: 1;
    color: #fcbb45;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* STREAMING_CHUNK:Styling catalog layout and search filters... */
.bs-catalog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 20;
}

.bs-catalog-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
    border-bottom: 4px solid #0c0c0c;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .bs-catalog-header {
        flex-direction: row;
    }
}

.bs-catalog-title {
    font-size: 2.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #0c0c0c;
    font-family: Impact, sans-serif;
}

.bs-catalog-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: #4b5563;
}

.bs-filters {
    width: 100%;
    margin: 0;
}

@media (min-width: 768px) {
    .bs-filters {
        width: auto;
    }
}

.bs-filters__search {
    display: flex;
    width: 100%;
    max-width: 600px;
}

.bs-filters__search input {
    flex-grow: 1;
    border: 3px solid #0c0c0c;
    border-radius: 0;
    letter-spacing: 0.06em;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    color: #0c0c0c;
    width: 100%;
}

.bs-filters__search input:focus {
    border-color: #fcbb45;
}

/* STREAMING_CHUNK:Styling buttons and interactive elements... */
.bs-button {
    background: #fcbb45;
    color: #0c0c0c;
    border-radius: 0;
    letter-spacing: 0.2em;
    font-weight: 700;
    padding: 0.9em 1.6em;
    text-transform: uppercase;
    border: 2px solid #0c0c0c;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

.bs-button:hover {
    background: #0c0c0c;
    color: #fcbb45;
    border-color: #0c0c0c;
}

.bs-search-submit {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-left: 0;
    background: #0c0c0c;
    color: #fcbb45;
}
.bs-search-submit:hover {
    background: #fcbb45;
    color: #0c0c0c;
}

.bs-play {
    background: #0c0c0c;
    color: #fcbb45;
    border: 2px solid #0c0c0c;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
}

.bs-play:hover {
    background: #fcbb45;
    color: #0c0c0c;
}

/* STREAMING_CHUNK:Styling the grid and individual beat cards... */
.bs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .bs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .bs-grid { grid-template-columns: repeat(3, 1fr); }
}

.bs-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.bs-card__art {
    position: relative;
    box-shadow: none;
    border: 3px solid #0c0c0c;
    transition: all 0.2s ease;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

.bs-card:hover .bs-card__art {
    box-shadow: 8px 8px 0 #fcbb45;
    transform: translate(-4px, -4px);
}

.bs-card__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.3s ease;
}

.bs-card:hover .bs-card__art img {
    filter: grayscale(0%) contrast(1.1);
}

.bs-card__art .bs-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1; /* Always visible per instructions */
    box-shadow: 4px 4px 0 #fcbb45;
    transition: all 0.2s ease;
}

.bs-card:hover .bs-card__art .bs-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fcbb45;
    color: #0c0c0c;
    box-shadow: 6px 6px 0 #0c0c0c;
}

.bs-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bs-card__title {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
    color: #0c0c0c;
}

.bs-card__meta {
    color: #555;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bs-card__producer {
    color: #0c0c0c;
    font-weight: 700;
}

.bs-card__desc {
    font-style: italic;
    color: #333;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.bs-card__madefor {
    font-style: italic;
    color: #0c0c0c;
    font-size: 0.85rem;
}

.bs-card__provenance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #0c0c0c;
}

.bs-card__liveuntil {
    color: #0c0c0c;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bs-card__liveuntil::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #fcbb45;
    border-radius: 0;
}

.bs-card__signature {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #0c0c0c;
    transform: rotate(-5deg);
}

.bs-card__actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
}

.bs-price {
    color: #0c0c0c;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.125rem;
}

.bs-card__actions .bs-buy {
    background: transparent;
    color: #0c0c0c;
    border: none;
    border-bottom: 2px solid #0c0c0c;
    letter-spacing: 0.2em;
    padding: 0 0 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bs-card__actions .bs-buy:hover {
    color: #fcbb45;
    border-color: #fcbb45;
}

/* STREAMING_CHUNK:Styling the sticky audio player... */
.bs-sticky {
    background: #0c0c0c;
    color: #f2f2f2;
    border: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    border-top: 3px solid #fcbb45;
    box-sizing: border-box;
}

.bs-sticky.is-active, .bs-has-sticky .bs-sticky {
    transform: translateY(0);
}

.bs-sticky__info {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 30%;
}

.bs-sticky__art {
    width: 60px;
    height: 60px;
    border: 2px solid #fcbb45;
    object-fit: cover;
}

.bs-sticky__meta-wrap {
    display: flex;
    flex-direction: column;
}

.bs-sticky__title {
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: 700;
}

.bs-sticky__meta {
    color: #9ca3af;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.bs-sticky__controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-grow: 1;
    justify-content: center;
}

.bs-sticky .bs-play {
    background: #fcbb45;
    color: #0c0c0c;
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: none;
}
.bs-sticky .bs-play:hover {
    background: #ffffff;
}

.bs-sticky__controls button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.2s;
}
.bs-sticky__controls button:hover {
    color: #fcbb45;
}

.bs-sticky__timeline {
    width: 16rem;
    height: 4px;
    background: rgba(255,255,255,0.2);
    margin-left: 1.5rem;
    position: relative;
    cursor: pointer;
}

.bs-seek-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fcbb45;
}

.bs-seek {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.bs-time {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-left: 1rem;
}

.bs-sticky__actions {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.bs-sticky__actions button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.bs-sticky__actions .bs-sticky__buy {
    background: #fcbb45;
    color: #0c0c0c;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: 2px solid #fcbb45;
}
