/**
 * Profiles styles for WC Artist Dashboard.
 * UPGRADED: Complete rewrite with modern artist profile styling
 * UPGRADED: Mobile shelf layout, play button positioning, buy button styling
 * UPGRADED: Quick Access 2-column layout (thumbnail column + content column)
 * UPGRADED: Fixed oversized title and price (compact checked layout)
 * UPGRADED: Quick Access now has inline play + buy buttons in right column
 * UPGRADED: Fixed square thumbnails (aspect-ratio 1/1)
 * UPGRADED: Play button now on thumbnail overlay (bottom-right corner)
 * UPGRADED: Added .quick-thumb-link for proper anchor styling
 * UPGRADED: Added Dashboard button with responsive mobile reorder
 * UPGRADED: Improved product card styling (larger titles, compact prices)
 * UPGRADED: Converted to Netflix/Boomplay shelf (horizontal scroll, arrows)
 * UPGRADED: Fixed arrow positioning - inside shelf wrapper, no cropping
 * UPGRADED: Added share/copy link button styles
 * FIXED: Search input text color (white while typing, autofill fix)
 * FIXED: Removed global body/asterisk resets (no site-wide conflicts)
 * FIXED: Share button positioning - Quick Access (right side, auto width, no stretch)
 * FIXED: ALL PROJECTS/COLLABOS share button (centered below buy button, auto width)
 * FIXED: Added SHARE label next to icon for better UX
 * FIXED: Quick Access share button no longer creates giant 410px black rectangle
 * UPGRADED: Quick Access heading size (20px desktop, 24px mobile)
 * UPGRADED: ALL PROJECTS heading size (20px desktop, 34px mobile)
 * FIXED: Scroll arrows now use clean chevrons (‹ ›) with perfect optical centering
 * FIXED: Added margin-bottom to wad-project-tabs for breathing room
 * FIXED: Latest Release play button - added position absolute with proper z-index
 * FIXED: Montserrat font now properly loaded via @font-face (local .woff2 files)
 * FIXED: Artist name now uses local Montserrat-Black.woff2 (font-weight:900)
 * FIXED: Removed fallback font stack that prevented local font loading on mobile
 * FIXED: Added desktop base styling for Latest Release product title (32px, weight 800)
 * 
 * @package WC_ArtistDash
 */

/* ==================================
   LOAD LOCAL MONTSERRAT FONT FILES
================================== */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   ARTIST PROFILE STYLES - LAYOUT ONLY
   NO PLAYER CSS - All player visuals in module
============================================ */

.wad-artist-profile {
    background: #121212;
    color: #fff;
    min-height: 100vh;
    padding-bottom: 80px;
    width: 100%;
    overflow-x: hidden;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

html,
body,
.wad-artist-profile,
.wad-artist-profile * {
    font-family: 'Montserrat', sans-serif !important;
}

/* ============================================
   SEARCH ROW (HOME + SEARCH + DASHBOARD)
============================================ */

.wad-search-row {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 700px;
    margin: 20px auto 10px;
    padding: 0 20px;
}

.wad-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.wad-home-btn:hover {
    background: #1db954;
    color: #000;
    transform: scale(1.05);
}

.wad-home-icon {
    font-size: 14px;
}

/* DASHBOARD BUTTON */
.wad-dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: .25s ease;
}

.wad-dashboard-btn:hover {
    background: #1db954;
    color: #000;
    transform: scale(1.05);
}

.wad-search-tab {
    flex: 1;
    margin: 0;
    padding: 0;
}

.wad-search-tab form {
    display: flex;
    width: 100%;
}

/* FIXED: Search input - white text while typing */
.wad-search-tab input[type="search"] {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #333;
    border-radius: 500px 0 0 500px;
    background: #2a2a2a;
    color: #fff !important;
    caret-color: #fff;
}

.wad-search-tab input[type="search"]:focus {
    color: #fff !important;
    outline: none;
}

.wad-search-tab input[type="search"]::placeholder {
    color: #999;
}

/* Chrome autofill fix - prevents black text on dark background */
.wad-search-tab input[type="search"]:-webkit-autofill,
.wad-search-tab input[type="search"]:-webkit-autofill:hover,
.wad-search-tab input[type="search"]:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 9999s ease-in-out 0s;
}

.wad-search-tab button {
    padding: 10px 18px;
    background: #1db954;
    color: #fff;
    border: none;
    border-radius: 0 500px 500px 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

/* MOBILE: Reorder elements - Dashboard button appears between Home and Search */
@media (max-width: 600px) {
    .wad-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .wad-home-btn,
    .wad-dashboard-btn {
        width: 100%;
        justify-content: center;
    }

    .wad-search-tab {
        width: 100%;
        order: 3;
    }

    .wad-dashboard-btn {
        order: 2;
    }

    .wad-home-btn {
        order: 1;
    }
}

/* ============================================
   BANNER SECTION
============================================ */

.wad-artist-banner-container {
    position: relative;
    margin-bottom: 0;
    text-align: center;
    background: #1a1a1a;
    width: 100%;
}

.wad-artist-banner,
.wad-artist-banner-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 1366 / 400;
    object-fit: cover;
    border-radius: 0 0 12px 12px;
    display: block;
    margin: 0 auto;
}

.wad-artist-banner-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.wad-profile-pic-wrapper {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.wad-artist-profile-pic {
    width: clamp(100px, 15vw, 180px);
    height: clamp(100px, 15vw, 180px);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    object-fit: cover;
    background: #fff;
}

.wad-artist-name-container {
    margin-top: calc(-10px + 5vw);
    margin-bottom: 0;
    text-align: center;
    padding: 0 15px;
}

/* Artist name pill with proper gap for badge */
.wad-artist-name-pill {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Verified badge - YouTube spacing */
.wad-verified-badge {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    flex-shrink: 0;
    margin-left: 1px;
    transform: translateY(-1px);
    vertical-align: middle;
}

/* ============================================
   ARTIST NAME - FIXED
   Now uses local Montserrat-Black.woff2 (font-weight:900)
   Boomplay/YouTube Music style extra-thick appearance
============================================ */

.wad-artist-name {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;

    letter-spacing: -0.05em !important;
    transform: scaleX(1.08); /* slightly compressed look */
    
    font-size: clamp(1.5rem, 6vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
    color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    font-synthesis: none;

    margin: 0;
}

/* ============================================
   MAIN SECTION: LATEST RELEASE + QUICK ACCESS
   LAYOUT ONLY - NO PLAYER VISUALS
============================================ */

.artist-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 10px;
}

.latest-release {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.latest-release h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

/* ============================================
   LATEST RELEASE PRODUCT TITLE - DESKTOP BASE
============================================ */

.release-title-row h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin: 12px 0 0;
    letter-spacing: -0.04em;
}

/* ============================================
   QUICK ACCESS SECTION HEADING
   Boomplay-style smaller heading
============================================ */

.quick-access h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

/* ============================================
   ALL PROJECTS SECTION HEADING
   Boomplay-style heading
============================================ */

.wad-projects-section h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 40px 0 20px 0;
    color: #fff;
    letter-spacing: -0.5px;
}

/* ============================================
   ALL PROJECTS TABS - SPACING FIX
============================================ */

/* Space between ALL PROJECTS tabs and content row */
.wad-project-tabs {
    margin-bottom: 6px;
}

/* ============================================
   LATEST RELEASE PLAY BUTTON - FIXED
============================================ */

.latest-release .thumbnail-wrapper {
    position: relative;
}

.latest-release-overlay {
    position: absolute !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    top: auto !important;
    z-index: 999 !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
}

/* ============================================
   QUICK ACCESS — 2-COLUMN LAYOUT
   Thumbnail column + Content column with inline actions
   Play button on thumbnail overlay (OUTSIDE anchor)
============================================ */

.quick-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quick-access-card {
    display: flex;
    align-items: stretch;
    background: #121212;
    border-radius: 14px;
    padding: 12px;
    gap: 16px;
    min-height: 130px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.quick-access-card:hover {
    background: #181818;
    border-color: rgba(255, 255, 255, 0.1);
}

/* THUMBNAIL WRAPPER - with play button overlay */
.quick-thumb-wrap {
    position: relative;
    width: 138px;
    height: 138px;
    display: block;
    overflow: hidden;
    flex: 0 0 138px;
}

/* Thumbnail link (covers entire thumbnail area) */
.quick-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Square thumbnail */
.quick-access-thumb {
    width: 138px;
    height: 138px;
    min-width: 138px;
    min-height: 138px;
    max-width: 145px;
    max-height: 145px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #2a2a2a;
}

/* PLAY BUTTON ON THUMBNAIL - bottom-right overlay (OUTSIDE anchor) */
.quick-thumb-wrap .quick-play-trigger {
    position: absolute !important;
    right: 8px !important;
    bottom: 8px !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    z-index: 100 !important;
    transform: none !important;
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
    border-radius: 50% !important;
}

.quick-card-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    position: relative;
    overflow: visible;
}

.quick-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: calc(100% - 90px);
}

.quick-access-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.quick-access-category {
    display: inline-block;
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 4px;
    background: #1db954;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
}

.quick-price {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-top: 4px;
}

.quick-price ins {
    text-decoration: none;
    color: #fff;
}

.quick-price del {
    display: none;
}

/* CARD ACTIONS - only buy button now */
.quick-card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.quick-card-actions .wad-product-actions {
    margin: 0 !important;
}

/* Buy Button */
.quick-access .wad-shop-buy-btn {
    min-width: 110px;
    height: 36px;
}

/* ============================================
   SHARE BUTTON - UPDATED
   Quick Access: right side (absolute positioned, auto width, no stretch)
   ALL PROJECTS/COLLABOS: centered below buy button (auto width, no stretch)
============================================ */

/* Base share button styling */
.wad-copy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    color: #fff;
    opacity: 0.8;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    z-index: 25;
    transition: all 0.2s ease;
    padding: 0;
    background-color: transparent;
    white-space: nowrap;
}

.wad-copy-link:hover {
    opacity: 1;
    color: #1db954;
}

.wad-copy-link.copied {
    color: #1db954;
    opacity: 1;
}

.wad-share-text {
    display: inline-block;
    letter-spacing: 0.5px;
    background: none;
}

.wad-copy-link svg {
    width: 14px;
    height: 14px;
}

/* QUICK ACCESS placement - right side (absolute positioned, auto width, no stretch) */
.quick-card-right .wad-copy-link {
    position: absolute;
    top: 34px;
    right: 14px;
    display: inline-flex;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    white-space: nowrap;
    flex: none;
}

/* ALL PROJECTS + COLLABOS placement - centered below buy button (auto width, no stretch) */
.wad-product-item .wad-copy-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: fit-content;
    margin: 8px auto 10px;
    right: -40px;
    bottom: auto;
    padding: 0;
    background: transparent;
}

/* Focus states for accessibility */
.wad-scroll-btn:focus-visible,
.wad-shop-buy-btn:focus-visible,
.wad-copy-link:focus-visible {
    outline: 2px solid #1db954;
    outline-offset: 2px;
}

/* ============================================
   ALL PROJECTS - NETFLIX/BOOMPLAY SHELF STYLE
   ============================================ */

/* Shelf wrapper positioning for arrows */
.wad-row-wrap {
    position: relative;
    padding: 0 18px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* Scroll arrows - FIXED with clean chevrons and perfect optical centering */
.wad-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #c62828;
    border: 2px solid rgba(255, 255, 255, .9);
    color: #fff;
    z-index: 100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0; /* fix text metrics */
    transition: background .18s ease, box-shadow .18s ease;
}

/* Perfectly centered symbol */
.wad-scroll-btn::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    content: "›";
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-1px); /* optical correction */
    font-family: Arial, sans-serif !important;
}

.wad-scroll-prev::before {
    content: "‹";
}

/* Keep INSIDE row instead of outside */
.wad-scroll-prev {
    left: 4px;
}

.wad-scroll-next {
    right: 4px;
}

.wad-scroll-btn:hover {
    background: #d13232;
}

.wad-scroll-btn:active {
    opacity: .8;
}

/* Horizontal shelf row */
.artist-project-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 20px;
    scroll-snap-type: x proximity;
}

.artist-project-row::-webkit-scrollbar {
    display: none;
}

.artist-project-row .wad-product-item {
    flex: 0 0 auto;
    width: 160px;
    background: #181818;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.artist-project-row .wad-product-item:hover {
    transform: translateY(-3px);
}

.artist-project-row .wad-more-card {
    flex: 0 0 160px;
    height: auto;
    min-height: 260px;
    background: #181818;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: .22s ease;
    border: 2px dashed #1db954;
    color: #1db954;
    text-align: center;
    flex-direction: column;
    gap: 8px;
}

.artist-project-row .wad-more-card:hover {
    background: #1db954;
    color: #000;
    transform: translateY(-5px);
    border: 2px solid #1db954;
}

.artist-project-row > * {
    scroll-snap-align: start;
}

/* Product card styles within shelf */
.wad-product-item .thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
    border-radius: 6px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wad-product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #111;
    transition: transform 0.3s ease;
}

/* PLAY BUTTON - BASE POSITIONING */
.wad-play-trigger {
    position: absolute !important;
    z-index: 50 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
}

/* Product Grid Play Button */
.wad-product-item .wad-play-trigger {
    right: 12px !important;
    bottom: 12px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
}

/* Product Title */
.wad-product-item h4 {
    margin: 6px 0 2px;
    font-size: 12px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 0 6px;
}

/* Product Price */
.wad-grid-price {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    margin: 2px 0 6px;
    line-height: 1;
}

.wad-grid-price ins {
    text-decoration: none;
    color: #fff;
}

.wad-grid-price del {
    display: none;
}

/* BUY BUTTON */
.wad-product-actions {
    margin: 4px 0 6px;
    text-align: center;
}

.wad-shop-buy-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 118px;
    height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: #51b84f;
    text-decoration: none !important;
    transition: .18s ease;
    cursor: pointer;
    border: none;
}

.wad-shop-buy-btn:hover {
    background: #22c55e;
}

.wad-shop-buy-btn .button-text {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #fff !important;
    white-space: nowrap;
}

.wad-shop-buy-btn .loading-state {
    display: none;
    align-items: center;
    gap: 8px;
}

.wad-shop-buy-btn.loading .button-text {
    display: none;
}

.wad-shop-buy-btn.loading .loading-state {
    display: flex;
}

.wad-shop-buy-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: btn-spin 1s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.wad-section-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #fff;
    border-left: 4px solid #1db954;
    padding-left: 15px;
}

.wad-artist-biography {
    margin: 40px auto;
    font-size: clamp(1.4rem, 2.5vw, 1.1rem);
    font-weight: 700;
    line-height: 1.7;
    color: #b3b3b3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 20px;
}

.wad-other-artists-section {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.wad-other-artists-section h3 {
    font-size: clamp(1.8rem, 4vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    border-left: 4px solid #1db954;
    padding-left: 15px;
}

.wad-other-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.artist-card {
    text-align: center;
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    padding: 15px;
}

.artist-card:hover {
    background: #282828;
    transform: translateY(-3px);
}

.artist-card .artist-pic-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #111;
    border-radius: 50%;
    margin-bottom: 12px;
}

.artist-card .artist-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #b3b3b3;
}

.artist-card .artist-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-products-message {
    text-align: center;
    padding: 40px 20px;
    color: #b3b3b3;
    background: #181818;
    border-radius: 8px;
    margin: 20px;
}

.wad-debug {
    background: #2a2a2a;
    padding: 10px;
    margin: 10px;
    border-radius: 4px;
    font-size: 11px;
    color: #1db954;
    display: none;
}

/* ============================================
   PREFERS-REDUCED-MOTION SUPPORT
============================================ */

@media (prefers-reduced-motion: reduce) {
    .wad-artist-profile * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   MOBILE SHELF-STYLE LAYOUT
   Horizontal scroll rows, no hidden tabs
============================================ */

@media (max-width: 768px) {
    .wad-project-tabs {
        display: none;
    }

    .wad-tab-content {
        display: block !important;
        margin-bottom: 35px;
    }

    .wad-tab-content::before {
        content: attr(data-title);
        display: block;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 15px;
        color: #fff;
        letter-spacing: -0.5px;
    }

    .artist-project-row .wad-product-item {
        min-width: 140px;
        width: 140px;
    }
    
    .artist-project-row .wad-more-card {
        min-width: 140px;
        flex: 0 0 140px;
    }

    /* Mobile play button sizes */
    .latest-release-overlay {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
        right: 10px !important;
        bottom: 10px !important;
    }

    .wad-product-item .wad-play-trigger {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        right: 10px !important;
        bottom: 10px !important;
    }
    
    /* Mobile share button adjustments */
    .wad-product-item .wad-copy-link {
        margin: 6px auto 10px;
    }
    
    .wad-share-text {
        font-size: 10px;
    }
    
    /* Mobile Quick Access share button */
    .quick-card-right .wad-copy-link {
        top: 30px;
        right: 10px;
    }
    
    .quick-card-meta {
        width: calc(100% - 80px);
    }
    
    /* MOBILE HEADING SIZES */
    .quick-access h2 {
        font-size: 24px;
    }
    
    .wad-projects-section h2 {
        font-size: 20px;
    }
    
    /* MOBILE LATEST RELEASE TITLE */
    .release-title-row h3 {
        font-size: 1.5rem;
    }
    
    /* QUICK ACCESS MOBILE */
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-access-card {
        min-height: 120px;
        padding: 12px;
        gap: 14px;
    }
    
    .quick-thumb-wrap {
        width: 138px;
        height: 138px;
        flex: 0 0 138px;
    }
    
    .quick-access-thumb {
        width: 138px;
        height: 138px;
        min-width: 138px;
        min-height: 138px;
        max-width: 138px;
        max-height: 138px;
    }
    
    .quick-thumb-wrap .quick-play-trigger {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        right: 6px !important;
        bottom: 6px !important;
    }
    
    .quick-access-title {
        font-size: 16px;
    }
    
    .quick-price {
        font-size: 16px;
    }
    
    .quick-access .wad-shop-buy-btn {
        min-width: 100px;
        height: 30px;
    }
    
    /* Hide scroll arrows on mobile */
    .wad-scroll-btn {
        display: none;
    }
}

/* RESPONSIVE BREAKPOINTS - LAYOUT ONLY */
@media (max-width: 1024px) {
    .artist-section { gap: 30px; }
}

@media (max-width: 900px) {
    .artist-section {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }
    .latest-release { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .wad-artist-banner,
    .wad-artist-banner-placeholder { aspect-ratio: 16 / 9; }
    .wad-profile-pic-wrapper { bottom: -20px; }
    .wad-other-artists-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 15px; }
    .artist-project-row .wad-more-card {
        min-width: 120px;
        flex: 0 0 120px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .wad-artist-name-pill { padding: 8px 16px; }
    .wad-product-item h4 { font-size: 11px; }
    .wad-grid-price { font-size: 12px; }
    .wad-other-artists-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 12px; }
    .artist-card { padding: 10px; }
    .artist-card .artist-name { font-size: 1.0rem; }
    .wad-section-title { margin: 30px 0 15px 0; padding-left: 12px; }
    .wad-tab-btn { min-width: 70px; font-size: 0.7rem; padding: 5px 10px; }
    
    /* MOBILE HEADING SIZES - EXTRA SMALL */
    .quick-access h2 {
        font-size: 22px;
    }
    
    .wad-projects-section h2 {
        font-size: 28px;
    }
    
    /* MOBILE LATEST RELEASE TITLE - EXTRA SMALL */
    .release-title-row h3 {
        font-size: 1rem;
    }
    
    .quick-access-card { padding: 10px; gap: 12px; }
    .quick-thumb-wrap {
        width: 75px;
        height: 75px;
        flex: 0 0 75px;
    }
    .quick-access-thumb {
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
        max-width: 75px;
        max-height: 75px;
    }
    .quick-thumb-wrap .quick-play-trigger {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        right: 4px !important;
        bottom: 4px !important;
    }
    .quick-access-title { 
        font-size: 14px;
    }
    .quick-price { font-size: 14px; }
    
    .latest-release-overlay {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        right: 8px !important;
        bottom: 8px !important;
    }
    
    .wad-product-item .wad-play-trigger {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        right: 8px !important;
        bottom: 8px !important;
    }
    
    /* Mobile share button adjustment for small screens */
    .wad-product-item .wad-copy-link {
        margin: 5px auto 8px;
    }
    
    .wad-share-text {
        font-size: 9px;
    }
    
    .wad-copy-link svg {
        width: 12px;
        height: 12px;
    }
    
    .quick-card-right .wad-copy-link {
        top: 28px;
        right: 8px;
    }
    
    .quick-card-meta {
        width: calc(100% - 70px);
    }
    
    .quick-access .wad-shop-buy-btn {
        min-width: 90px;
        height: 32px;
        font-size: 9px;
        padding: 0 10px;
    }
    
    .artist-project-row .wad-product-item {
        min-width: 120px;
        width: 120px;
    }
    
    .artist-project-row .wad-more-card {
        min-width: 110px;
        flex: 0 0 110px;
        font-size: 12px;
    }
}