/* =============================================
 *  JamboRadio — All Widget Styles
 * ============================================= */

/* ═══════════════════════════════
 *  PROGRAM GRID — Modern 3 styles
 * ═══════════════════════════════ */
.jr-pg-heading { font-size: 28px; font-weight: 800; color: #1a1a2e; margin: 0 0 32px; text-align: center; }
.jr-pg-grid { display: grid; gap: 24px; }

/* ── Base Card ── */
.jr-pg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    height: 340px;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jr-pg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }

/* ── OVERLAY STYLE ── */
.jr-pg-card--overlay { background: #222; }
.jr-pg-card--overlay .jr-pg-card-bg { position: absolute; inset: 0; z-index: 1; }
.jr-pg-card--overlay .jr-pg-card-bg img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block; transition: transform 0.4s ease; }
.jr-pg-card--overlay:hover .jr-pg-card-bg img { transform: scale(1.05); }
.jr-pg-card--overlay .jr-pg-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,0.7) 100%); z-index: 2; }
.jr-pg-card-content--bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 3; }
.jr-pg-card--overlay .jr-pg-title { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 4px; line-height: 1.3; }
.jr-pg-card--overlay .jr-pg-host { font-size: 13px; color: #FFD700; font-weight: 500; display: block; margin-bottom: 4px; }
.jr-pg-card--overlay .jr-pg-excerpt { font-size: 12px; color: rgba(255,255,255,0.7); margin: 4px 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.jr-pg-card--overlay .jr-pg-time { font-size: 11px; font-weight: 600; color: #E94560; display: block; margin-top: 6px; }

/* ── YELLOW CARD STYLE (Jambo current site — exact match) ── */
.jr-pg-card--yellow { background: #fff; border: 2px solid #1a1a2e; border-radius: 12px; height: auto; flex-direction: column; padding: 0; overflow: hidden; }
.jr-pg-card--yellow:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* Top yellow section */
.jr-pg-yellow-top { background: #FFD700; padding: 20px 16px; text-align: center; flex-shrink: 0; }
.jr-pg-yellow-title { font-size: 18px; font-weight: 800; font-style: italic; color: #1a1a2e; margin: 0 0 2px; }
.jr-pg-yellow-host { font-size: 14px; font-weight: 600; color: #E94560; font-style: italic; display: block; margin-bottom: 6px; }
.jr-pg-yellow-desc { font-size: 11px; color: #333; line-height: 1.4; margin: 0 0 12px; }

/* Host photo circle */
.jr-pg-host-photo { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; margin: 0 auto; border: 4px solid #1a1a2e; box-shadow: 0 4px 12px rgba(0,0,0,0.15); flex-shrink: 0; }
.jr-pg-host-photo img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 50%; }

/* Bottom white section */
.jr-pg-yellow-bottom { padding: 16px; text-align: left; flex: 1; display: flex; flex-direction: column; }
.jr-pg-yellow-name { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
.jr-pg-yellow-excerpt { font-size: 13px; color: #555; line-height: 1.5; margin: 0 0 16px; flex: 1; }

/* Read More button */
.jr-pg-readmore { display: inline-block; padding: 10px 24px; background: #1a1a2e; color: #fff !important; font-size: 13px; font-weight: 600; border-radius: 50px; transition: background 0.2s ease; align-self: flex-start; }
.jr-pg-card--yellow:hover .jr-pg-readmore { background: #FFD700; color: #1a1a2e !important; }

/* ── BELOW TEXT STYLE ── */
.jr-pg-card--below { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.jr-pg-card--below .jr-pg-card-img { height: 200px; overflow: hidden; }
.jr-pg-card--below .jr-pg-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 0.3s ease; }
.jr-pg-card--below:hover .jr-pg-card-img img { transform: scale(1.04); }
.jr-pg-card-content--below-text { padding: 14px 16px; }
.jr-pg-card--below .jr-pg-title { font-size: 16px; font-weight: 600; margin: 0 0 4px; line-height: 1.3; }
.jr-pg-card--below .jr-pg-host { font-size: 12px; display: block; margin-bottom: 4px; }
.jr-pg-card--below .jr-pg-time { font-size: 11px; font-weight: 600; color: #E94560; display: block; }

/* ── Carousel ── */
.jr-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.jr-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 16px;
}

.jr-carousel-track::-webkit-scrollbar { display: none; }

.jr-carousel-track .jr-card {
    flex-shrink: 0;
    width: 280px;
}

.jr-carousel-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--jr-card-bg) !important;
    box-shadow: var(--jr-shadow-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10;
    transition: var(--jr-transition) !important;
    font-size: 18px;
    color: var(--jr-text) !important;
}

.jr-carousel-arrow:hover {
    background: var(--jr-accent) !important;
    color: #ffffff !important;
}

.jr-carousel-prev { left: 8px; }
.jr-carousel-next { right: 8px; }

/* ── Program Card ── */
.jr-program-card .jr-card-body { padding: 14px 16px; }
.jr-program-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--jr-text);
    margin: 0 0 4px;
    line-height: 1.3;
}
.jr-program-host {
    font-size: 13px;
    color: var(--jr-text-secondary);
    margin: 0 0 6px;
}
.jr-program-time {
    font-size: 12px;
    color: var(--jr-accent);
    font-weight: 500;
    margin: 0;
}

/* ── Schedule Grid ── */
.jr-schedule-table {
    overflow-x: auto;
    border-radius: var(--jr-radius);
    border: 1px solid var(--jr-border);
}

.jr-schedule-header {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    background: var(--jr-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.jr-schedule-header > div {
    padding: 12px 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.jr-schedule-header > div:last-child { border-right: none; }

.jr-schedule-day--current {
    background: var(--jr-accent) !important;
}

.jr-schedule-time-col {
    font-size: 12px;
    color: var(--jr-text-secondary);
}

.jr-schedule-body {
    font-size: 13px;
}

.jr-schedule-row {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    border-bottom: 1px solid var(--jr-border-light);
    min-height: 50px;
}

.jr-schedule-row:last-child { border-bottom: none; }

.jr-schedule-row > div {
    padding: 8px;
    border-right: 1px solid var(--jr-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jr-schedule-row > div:last-child { border-right: none; }

.jr-schedule-time-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--jr-text-secondary);
    background: var(--jr-bg);
}

.jr-schedule-show {
    padding: 6px 8px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: var(--jr-radius-xs);
    font-size: 12px;
    font-weight: 500;
    color: var(--jr-accent);
    cursor: pointer;
    transition: var(--jr-transition);
    width: 100%;
    text-align: center;
}

.jr-schedule-show:hover {
    background: var(--jr-accent);
    color: #ffffff;
}

/* Mobile schedule */
@media (max-width: 767px) {
    .jr-schedule-header,
    .jr-schedule-row {
        grid-template-columns: 60px repeat(7, 1fr);
    }
    .jr-schedule-header > div { font-size: 11px; padding: 8px 4px; }
}

/* ── Podcast Grid ── */
.jr-podcast-series-card .jr-card-body { text-align: center; }
.jr-podcast-series-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--jr-text);
    margin: 0 0 4px;
}
.jr-podcast-ep-count {
    display: inline-block;
    font-size: 12px;
    color: var(--jr-accent);
    background: rgba(233,69,96,0.08);
    padding: 2px 10px;
    border-radius: var(--jr-radius-full);
    font-weight: 500;
}

/* ── Podcast Episodes ── */
.jr-episode-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.jr-episode-card .jr-card-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--jr-radius-sm);
}

.jr-episode-info { flex: 1; min-width: 0; }

.jr-episode-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--jr-text);
    margin: 0 0 4px;
    line-height: 1.3;
}

.jr-episode-series {
    font-size: 12px;
    color: var(--jr-accent);
    font-weight: 500;
    margin: 0 0 4px;
}

.jr-episode-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--jr-text-muted);
}

.jr-episode-play-btn,
button.jr-episode-play-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #1a1a2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    align-self: center;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    padding: 0 !important;
    -webkit-appearance: none !important;
}

.jr-episode-play-btn:hover {
    transform: scale(1.1) !important;
    background: #FFD700 !important;
}
.jr-episode-play-btn:hover svg { fill: #1a1a2e !important; }

.jr-episode-play-btn svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

/* ── Podcast Player (Featured) ── */
.jr-featured-podcast {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .jr-featured-podcast { flex-direction: column; }
}

.jr-featured-artwork {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    border-radius: var(--jr-radius);
    overflow: hidden;
}

.jr-featured-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jr-featured-info { flex: 1; min-width: 0; }

.jr-featured-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--jr-text);
    margin: 0 0 8px;
}

.jr-featured-host {
    font-size: 14px;
    color: var(--jr-text-secondary);
    margin: 0 0 20px;
}

/* Audio player bar — Modern */
.jr-podcast-audio {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px 24px !important;
    background: #f8f9fa !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    border: 1px solid #f0f0f0 !important;
    transition: box-shadow 0.2s ease !important;
}
.jr-podcast-audio:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important; }

.jr-podcast-play-btn,
button.jr-podcast-play-btn,
.jr-widget-wrap .jr-podcast-play-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    background: #1a1a2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    outline: none !important;
    padding: 0 !important;
    -webkit-appearance: none !important;
}

.jr-podcast-play-btn:hover { transform: scale(1.1) !important; background: #FFD700 !important; }
.jr-podcast-play-btn:hover svg { fill: #1a1a2e !important; }

.jr-podcast-play-btn svg,
button.jr-podcast-play-btn svg {
    width: 16px !important;
    height: 16px !important;
    fill: #ffffff !important;
}

.jr-podcast-progress {
    flex: 1 !important;
    height: 6px !important;
    background: #e2e8f0 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

.jr-podcast-progress-bar {
    height: 100% !important;
    background: #1a1a2e !important;
    border-radius: 6px !important;
    width: 0%;
    transition: width 0.1s linear !important;
}

.jr-podcast-time {
    font-size: 13px !important;
    color: #888 !important;
    font-weight: 500 !important;
    font-variant-numeric: tabular-nums !important;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 90px;
    text-align: right;
}

/* Subscribe links */
.jr-subscribe-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.jr-subscribe-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: var(--jr-radius-sm) !important;
    background: var(--jr-bg) !important;
    color: var(--jr-text) !important;
    transition: var(--jr-transition) !important;
}

.jr-subscribe-link:hover {
    background: var(--jr-accent) !important;
    color: #ffffff !important;
}

/* ── Blog Grid ── */
.jr-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.jr-filter-tab {
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: var(--jr-radius-full) !important;
    background: var(--jr-bg) !important;
    color: var(--jr-text-secondary) !important;
    cursor: pointer !important;
    transition: var(--jr-transition) !important;
}

.jr-filter-tab:hover,
.jr-filter-tab.is-active {
    background: var(--jr-accent) !important;
    color: #ffffff !important;
}

.jr-blog-card .jr-card-img { position: relative; }

.jr-blog-card .jr-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.jr-blog-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--jr-text);
    margin: 0 0 8px;
    line-height: 1.4;
}

.jr-blog-title a { color: inherit !important; }
.jr-blog-title a:hover { color: var(--jr-accent) !important; }

.jr-blog-excerpt {
    font-size: 14px;
    color: var(--jr-text-secondary);
    margin: 0 0 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jr-blog-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--jr-text-muted);
}

/* ── Blog Featured ── */
.jr-blog-featured {
    position: relative;
    border-radius: var(--jr-radius);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.jr-blog-featured-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.jr-blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jr-blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.jr-blog-featured-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    width: 100%;
}

.jr-blog-featured-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.jr-blog-featured-excerpt {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 12px;
}

.jr-blog-featured-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ── Most Read ── */
.jr-most-read-list {
    display: flex;
    flex-direction: column;
}

.jr-most-read-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--jr-border-light);
    text-decoration: none !important;
    transition: var(--jr-transition) !important;
}

.jr-most-read-item:last-child { border-bottom: none; }

.jr-most-read-item:hover {
    padding-left: 4px !important;
}

.jr-most-read-rank {
    font-size: 28px;
    font-weight: 800;
    color: var(--jr-accent);
    line-height: 1;
    min-width: 36px;
    flex-shrink: 0;
    opacity: 0.6;
}

.jr-most-read-content { flex: 1; min-width: 0; }

.jr-most-read-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--jr-text);
    margin: 0 0 4px;
    line-height: 1.4;
}

.jr-most-read-date {
    font-size: 12px;
    color: var(--jr-text-muted);
}

/* ── Frequencies ── */
.jr-freq-group-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--jr-primary);
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--jr-accent);
    display: inline-block;
}

.jr-freq-card {
    padding: 24px;
    background: var(--jr-card-bg);
    border-radius: var(--jr-radius);
    box-shadow: var(--jr-shadow-sm);
    transition: var(--jr-transition);
    text-align: center;
}

.jr-freq-card:hover {
    box-shadow: var(--jr-shadow-md);
    transform: translateY(-2px);
}

.jr-freq-type {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(233,69,96,0.1);
    color: var(--jr-accent);
    border-radius: var(--jr-radius-full);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jr-freq-city {
    font-size: 18px;
    font-weight: 600;
    color: var(--jr-text);
    margin: 0 0 4px;
}

.jr-freq-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--jr-accent);
}

/* ── Donation ── */
.jr-donate-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.jr-donate-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--jr-primary);
    margin: 0 0 12px;
}

.jr-donate-desc {
    font-size: 15px;
    color: var(--jr-text-secondary);
    margin: 0 0 28px;
    line-height: 1.6;
}

.jr-donate-amounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.jr-donate-amount {
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: 2px solid var(--jr-border) !important;
    border-radius: var(--jr-radius-sm) !important;
    background: transparent !important;
    color: var(--jr-text) !important;
    cursor: pointer !important;
    transition: var(--jr-transition) !important;
    min-width: 80px;
}

.jr-donate-amount:hover {
    border-color: var(--jr-accent) !important;
    color: var(--jr-accent) !important;
}

.jr-donate-amount.is-active,
.jr-donate-amount.is-active:hover {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
    color: #1a1a2e !important;
    font-weight: 700 !important;
}

.jr-donate-custom {
    display: flex;
    align-items: center;
    border: 2px solid var(--jr-border);
    border-radius: var(--jr-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.jr-donate-custom:focus-within {
    border-color: var(--jr-accent);
}

.jr-donate-currency {
    padding: 10px 12px;
    font-weight: 600;
    color: var(--jr-text-secondary);
    background: var(--jr-bg);
}

.jr-donate-custom-input {
    width: 80px !important;
    padding: 10px 12px !important;
    font-size: 16px !important;
    border: none !important;
    background: none !important;
    color: var(--jr-text) !important;
}

.jr-donate-recurring {
    margin-bottom: 20px;
}

.jr-donate-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--jr-text-secondary);
    cursor: pointer;
}

.jr-donate-progress-wrap {
    margin-bottom: 24px;
}

.jr-donate-progress {
    height: 8px;
    background: var(--jr-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.jr-donate-progress-bar {
    height: 100%;
    background: var(--jr-success);
    border-radius: 8px;
    transition: width 1s ease;
}

.jr-donate-progress-text {
    font-size: 13px;
    color: var(--jr-text-secondary);
}

.jr-donate-btn,
button.jr-donate-btn,
.jr-donate-stripe-btn {
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    background: #1a1a2e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    min-width: 200px !important;
}

.jr-donate-btn:hover,
button.jr-donate-btn:hover {
    background: #FFD700 !important;
    color: #1a1a2e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(255,215,0,0.3) !important;
}

.jr-donate-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ── Merch ── */
.jr-merch-card .jr-card-body { text-align: center; }
.jr-merch-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
}
.jr-merch-name a { color: var(--jr-text) !important; }
.jr-merch-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--jr-accent);
    margin-bottom: 12px;
}
.jr-merch-btn,
.jr-widget-wrap .jr-merch-btn,
.jr-merch-card .jr-merch-btn,
a.jr-merch-btn {
    display: inline-block !important;
    padding: 10px 24px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: #FFD700 !important;
    color: #1a1a2e !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center !important;
    letter-spacing: 0.3px !important;
}
.jr-merch-btn:hover,
a.jr-merch-btn:hover {
    background: #1a1a2e !important;
    color: #FFD700 !important;
}

/* ── Newsletter ── */
.jr-newsletter {
    padding: 40px;
    background: var(--jr-bg);
    border-radius: var(--jr-radius);
}

.jr-newsletter--horizontal { display: flex; align-items: center; gap: 32px; }
.jr-newsletter--horizontal .jr-nl-text { flex: 1; }
.jr-newsletter--horizontal .jr-nl-form { flex-shrink: 0; }

.jr-newsletter--split { display: flex; align-items: center; gap: 40px; }
.jr-newsletter--split .jr-nl-text { flex: 1; }
.jr-newsletter--split .jr-nl-form { flex: 1; }

.jr-nl-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--jr-text);
    margin: 0 0 6px;
}

.jr-nl-desc {
    font-size: 14px;
    color: var(--jr-text-secondary);
    margin: 0 0 16px;
}

.jr-nl-form {
    display: flex;
    gap: 8px;
}

.jr-nl-input {
    flex: 1;
    padding: 14px 16px !important;
    font-size: 14px !important;
    border: 1px solid var(--jr-border) !important;
    border-radius: var(--jr-radius-sm) !important;
    background: #ffffff !important;
    color: var(--jr-text) !important;
    min-width: 200px;
}

.jr-nl-input:focus {
    border-color: var(--jr-accent) !important;
    box-shadow: 0 0 0 3px rgba(233,69,96,0.1) !important;
}

.jr-nl-btn {
    padding: 14px 28px !important;
    background: var(--jr-accent) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: var(--jr-radius-sm) !important;
    white-space: nowrap;
}

.jr-nl-btn:hover { background: #d63b54 !important; }

.jr-nl-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.jr-nl-social a svg {
    width: 20px;
    height: 20px;
    fill: var(--jr-text);
    transition: fill 0.2s ease;
}
.jr-nl-social a:hover svg { fill: var(--jr-accent); }

@media (max-width: 767px) {
    .jr-newsletter--horizontal,
    .jr-newsletter--split { flex-direction: column; }
    .jr-nl-form { flex-direction: column; }
    .jr-nl-input { min-width: 0; }
}

/* ── Footer ── */
.jr-footer {
    background: var(--jr-primary);
    padding: 60px 40px 40px;
    color: rgba(255,255,255,0.7);
}

.jr-footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) { .jr-footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jr-footer-cols { grid-template-columns: 1fr; } }

.jr-footer-col-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px;
}

.jr-footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.jr-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jr-footer-menu li { margin-bottom: 8px; }

.jr-footer-menu a {
    font-size: 14px !important;
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
}
.jr-footer-menu a:hover {
    color: #ffffff !important;
    padding-left: 4px !important;
}

.jr-footer-nl-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.jr-footer-nl-input {
    flex: 1;
    padding: 10px 14px !important;
    font-size: 13px !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
}

.jr-footer-nl-input::placeholder { color: rgba(255,255,255,0.4); }

.jr-footer-nl-btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
    background: var(--jr-accent) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    white-space: nowrap;
}

.jr-footer-social {
    display: flex;
    gap: 12px;
}

.jr-footer-social a svg {
    width: 20px;
    height: 20px;
    fill: rgba(255,255,255,0.7);
    transition: fill 0.2s ease;
}
.jr-footer-social a:hover svg { fill: #ffffff; }

.jr-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.jr-footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* Footer: App badges */
.jr-footer-app-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.jr-footer-badge {
    display: inline-flex !important; align-items: center !important; gap: 10px !important;
    padding: 10px 16px !important; background: #fff !important; color: #1a1a2e !important;
    border-radius: 8px !important; text-decoration: none !important; transition: opacity 0.2s ease !important;
    max-width: 180px !important;
}
.jr-footer-badge:hover { opacity: 0.9 !important; }
.jr-footer-badge svg { fill: #1a1a2e !important; flex-shrink: 0; }
.jr-footer-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.jr-footer-badge small { font-size: 9px !important; color: #666 !important; text-transform: uppercase; letter-spacing: 0.5px; }
.jr-footer-badge strong { font-size: 14px !important; color: #1a1a2e !important; }

/* Footer: Address items */
.jr-footer-address-item {
    display: flex !important; align-items: flex-start !important; gap: 8px !important;
    margin-bottom: 12px !important; font-size: 13px !important; color: rgba(255,255,255,0.7) !important; line-height: 1.5 !important;
}
.jr-footer-address-item svg { fill: rgba(255,255,255,0.5) !important; flex-shrink: 0; margin-top: 2px; }

/* Footer: lists styling */
.jr-footer-col-body ul { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.jr-footer-col-body ul li { margin-bottom: 10px !important; }
.jr-footer-col-body ul li a { color: rgba(255,255,255,0.7) !important; font-size: 14px !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; transition: color 0.2s ease !important; }
.jr-footer-col-body ul li a:hover { color: #fff !important; }

/* Footer background override */
.jr-footer { background: #000000 !important; }

/* ═══════════════════════════════
 *  BOOK CLUB PAGE — Modern Layout
 * ═══════════════════════════════ */
.jr-book-club { font-family: var(--jr-font); }

/* Hero */
.jr-bc-hero { background: #FFD700; padding: 48px 24px; text-align: center; }
.jr-bc-title { font-size: 32px; font-weight: 800; color: #1a1a2e; margin: 0; }

/* Content wrapper */
.jr-bc-content { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }

/* Row: intro + form side by side */
.jr-bc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.jr-bc-intro { font-size: 15px; line-height: 1.7; color: #444; }
.jr-bc-intro strong { color: #1a1a2e; }

/* Cards */
.jr-bc-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; }
.jr-bc-card--full { margin-bottom: 32px; }

/* Section titles */
.jr-bc-section-title { font-size: 20px; font-weight: 700; color: #FFD700; margin: 0 0 20px; position: relative; padding-bottom: 10px; }
.jr-bc-section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #FFD700; border-radius: 2px; }

/* Forms */
.jr-bc-form { display: flex; flex-direction: column; gap: 16px; }
.jr-bc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.jr-bc-field { display: flex; flex-direction: column; gap: 4px; }
.jr-bc-field--full { grid-column: 1 / -1; }

.jr-bc-field label { font-size: 13px; font-weight: 600; color: #1a1a2e; }

.jr-bc-field input,
.jr-bc-field select,
.jr-bc-field textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: var(--jr-font) !important;
    background: #f8f9fa !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    color: #1a1a2e !important;
    transition: border-color 0.2s ease !important;
    outline: none !important;
}

.jr-bc-field input:focus,
.jr-bc-field select:focus,
.jr-bc-field textarea:focus {
    border-color: #FFD700 !important;
    background: #fff !important;
}

/* Submit button */
.jr-bc-btn,
button.jr-bc-btn,
.jr-book-club .jr-bc-btn {
    padding: 14px 32px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: #1a1a2e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.jr-bc-btn:hover,
button.jr-bc-btn:hover {
    background: #FFD700 !important;
    color: #1a1a2e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255,215,0,0.4) !important;
}

/* Author section */
.jr-bc-author-intro { margin-bottom: 24px; text-align: center; }
.jr-bc-author-intro p { font-size: 15px; color: #666; margin: 8px 0 0; }

/* Responsive */
@media (max-width: 767px) {
    .jr-bc-row { grid-template-columns: 1fr; }
    .jr-bc-grid { grid-template-columns: 1fr; }
    .jr-bc-title { font-size: 24px; }
}

/* ═══════════════════════════════
 *  SPOTLIGHT — Music Submission
 * ═══════════════════════════════ */
.jr-spotlight { font-family: var(--jr-font); }

/* Search bar */
.jr-sl-search { padding: 16px 24px; }
.jr-sl-search-form { display: flex; max-width: 700px; margin: 0 auto; border: 2px solid #1a1a2e; border-radius: 8px; overflow: hidden; }
.jr-sl-search-input { flex: 1; padding: 12px 16px !important; font-size: 14px !important; border: none !important; background: #fff !important; color: #1a1a2e !important; }
.jr-sl-search-btn { width: 48px !important; background: #1a1a2e !important; border: none !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; }
.jr-sl-search-btn svg { fill: #FFD700; }

/* Hero */
.jr-sl-hero { background: #1a1a2e; padding: 48px 24px; text-align: center; border-radius: 12px; margin: 0 24px 32px; }
.jr-sl-hero-inner { max-width: 600px; margin: 0 auto; }
.jr-sl-hero p { color: #fff; font-size: 14px; line-height: 1.7; margin: 0 0 8px; }
.jr-sl-hero p:first-child { color: #FFD700; font-weight: 600; }
.jr-sl-btn { padding: 14px 32px !important; font-size: 14px !important; font-weight: 700 !important; background: #FFD700 !important; color: #1a1a2e !important; border: none !important; border-radius: 50px !important; cursor: pointer !important; margin-top: 20px !important; display: inline-flex !important; align-items: center !important; gap: 8px !important; transition: all 0.3s ease !important; }
.jr-sl-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(255,215,0,0.4) !important; }

/* Modal overlay */
.jr-sl-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 99998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.jr-sl-modal-overlay.is-active { opacity: 1; visibility: visible; }

/* Modal */
.jr-sl-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); width: 90%; max-width: 600px; max-height: 90vh; background: #fff; border-radius: 16px; z-index: 99999; overflow-y: auto; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.jr-sl-modal.is-active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.jr-sl-modal-inner { padding: 32px; }
.jr-sl-modal-title { font-size: 24px; font-weight: 800; color: #1a1a2e; margin: 0 0 24px; text-align: center; }
.jr-sl-modal-close { position: absolute !important; top: 16px; right: 16px; width: 36px !important; height: 36px !important; border-radius: 50% !important; background: #f0f0f0 !important; border: none !important; box-shadow: none !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; transition: background 0.2s ease !important; z-index: 10; }
.jr-sl-modal-close:hover { background: #E94560 !important; }
.jr-sl-modal-close:hover svg { fill: #fff; }

/* Form fields */
.jr-sl-form { display: flex; flex-direction: column; gap: 16px; }
.jr-sl-field { display: flex; flex-direction: column; gap: 4px; }
.jr-sl-field label { font-size: 13px; font-weight: 600; color: #1a1a2e; }
.jr-sl-field input, .jr-sl-field select, .jr-sl-field textarea { width: 100% !important; padding: 12px 16px !important; font-size: 14px !important; background: #f8f9fa !important; border: 2px solid #e8e8e8 !important; border-radius: 10px !important; color: #1a1a2e !important; transition: border-color 0.2s ease !important; outline: none !important; font-family: var(--jr-font) !important; }
.jr-sl-field input:focus, .jr-sl-field textarea:focus { border-color: #FFD700 !important; background: #fff !important; }

/* Dropzone */
.jr-sl-dropzone { border: 2px dashed #ccc; border-radius: 12px; padding: 32px; text-align: center; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease; position: relative; }
.jr-sl-dropzone.is-dragover { border-color: #FFD700; background: rgba(255,215,0,0.05); }
.jr-sl-dropzone-text p { margin: 4px 0; color: #888; font-size: 14px; }
.jr-sl-dropzone-text strong { color: #1a1a2e; font-size: 16px; }
.jr-sl-browse { padding: 8px 20px !important; background: #FFD700 !important; color: #1a1a2e !important; border: none !important; border-radius: 6px !important; font-weight: 600 !important; cursor: pointer !important; font-size: 13px !important; }
.jr-sl-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.jr-sl-file-info { display: block; margin-top: 8px; font-size: 12px; color: #999; }
.jr-sl-hint { font-size: 11px; color: #999; margin-top: 4px; }

/* Consent */
.jr-sl-consent { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #666; }
.jr-sl-consent input { margin-top: 2px; }
.jr-sl-consent a { color: var(--jr-accent) !important; }

/* Submit */
.jr-sl-submit-btn { padding: 14px 32px !important; background: #FFD700 !important; color: #1a1a2e !important; font-weight: 700 !important; border: none !important; border-radius: 50px !important; cursor: pointer !important; font-size: 15px !important; width: 100%; transition: all 0.3s ease !important; }
.jr-sl-submit-btn:hover { background: #1a1a2e !important; color: #FFD700 !important; }

/* Messages */
.jr-sl-form-msg { margin-top: 8px; font-size: 14px; text-align: center; font-weight: 500; }
.jr-sl-msg--ok { color: #00875a; }
.jr-sl-msg--err { color: #E94560; }

/* Bottom: Contact + Donate */
.jr-sl-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 24px; max-width: 1000px; margin: 0 auto; }
.jr-sl-bottom h2 { font-size: 28px; font-weight: 800; color: #1a1a2e; margin: 0 0 12px; }
.jr-sl-bottom-left p { font-size: 14px; color: #555; line-height: 1.6; }

.jr-sl-donate-box { margin-top: 24px; padding: 20px; border: 2px solid #1a1a2e; border-radius: 12px; display: inline-block; }
.jr-sl-donate-box strong { font-size: 16px; color: #1a1a2e; }
.jr-sl-donate-box p { font-size: 13px; color: #666; margin: 4px 0 12px; }
.jr-sl-donate-btn,
a.jr-sl-donate-btn,
.jr-widget-wrap .jr-sl-donate-btn {
    display: inline-block !important;
    padding: 10px 28px !important;
    background: #1a1a2e !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}
.jr-sl-donate-btn:hover,
a.jr-sl-donate-btn:hover {
    background: #FFD700 !important;
    color: #1a1a2e !important;
}

@media (max-width: 767px) {
    .jr-sl-bottom { grid-template-columns: 1fr; }
    .jr-sl-modal { width: 95%; }
    .jr-sl-modal-inner { padding: 20px; }
}

/* ═══════════════════════════════
 *  DIRECTORY LISTING
 * ═══════════════════════════════ */
.jr-dir-header { background: #FFD700; padding: 40px 24px; text-align: center; }
.jr-dir-heading { font-size: 28px; font-weight: 800; color: #1a1a2e; margin: 0 0 10px; }
.jr-dir-subtitle { font-size: 14px; color: #333; max-width: 600px; margin: 0 auto 8px; line-height: 1.6; }
.jr-dir-disclaimer { font-size: 11px; color: #666; margin: 0; }

.jr-dir-body { max-width: 1200px; margin: 0 auto; padding: 32px 24px; }
.jr-dir-body--sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 32px; }

.jr-dir-filters { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 12px 16px; background: #f8f9fa; border-radius: 8px; }
.jr-dir-filter-count { font-size: 13px; color: #666; }
.jr-dir-filter-btns { display: flex; gap: 8px; }
.jr-dir-filter-btn { padding: 6px 16px !important; font-size: 12px !important; font-weight: 600 !important; border: 1px solid #ddd !important; border-radius: 6px !important; background: #fff !important; cursor: pointer !important; color: #333 !important; }
.jr-dir-filter-btn.is-active { background: #1a1a2e !important; color: #fff !important; border-color: #1a1a2e !important; }
.jr-dir-sort { padding: 6px 12px !important; font-size: 12px !important; border: 1px solid #ddd !important; border-radius: 6px !important; background: #fff !important; color: #333 !important; }

.jr-dir-card { display: block; background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; text-decoration: none !important; }
.jr-dir-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.jr-dir-card-img { height: 180px; overflow: hidden; }
.jr-dir-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 0.3s ease; }
.jr-dir-card:hover .jr-dir-card-img img { transform: scale(1.04); }
.jr-dir-card-body { padding: 14px 16px; }
.jr-dir-card-title { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; }
.jr-dir-meta { display: flex; gap: 12px; font-size: 12px; color: #888; margin-bottom: 10px; }
.jr-dir-card-footer { display: flex; justify-content: space-between; align-items: center; }
.jr-dir-badge { padding: 3px 10px; font-size: 11px; font-weight: 600; background: #f0f0f0; color: #555; border-radius: 50px; }
.jr-dir-views { font-size: 11px; color: #aaa; }

/* Directory sidebar */
.jr-dir-sidebar { display: flex; flex-direction: column; gap: 16px; }
.jr-dir-sidebar-card { padding: 20px; border: 2px solid #1a1a2e; border-radius: 12px; }
.jr-dir-sidebar-card strong { font-size: 15px; color: #1a1a2e; display: block; margin-bottom: 4px; }
.jr-dir-sidebar-card p { font-size: 13px; color: #666; margin: 0 0 12px; }
.jr-dir-sidebar-card--dark { background: #1a1a2e; border-color: #1a1a2e; }
.jr-dir-sidebar-card--dark strong, .jr-dir-sidebar-card--dark p { color: #fff !important; }
.jr-dir-sidebar-btn { display: inline-block !important; padding: 8px 20px !important; background: #1a1a2e !important; color: #fff !important; border-radius: 6px !important; font-size: 12px !important; font-weight: 600 !important; text-decoration: none !important; border: 2px solid #1a1a2e !important; }
.jr-dir-sidebar-btn:hover { background: #FFD700 !important; color: #1a1a2e !important; border-color: #FFD700 !important; }
.jr-dir-sidebar-card--dark .jr-dir-sidebar-btn { background: #fff !important; color: #1a1a2e !important; border-color: #fff !important; }

@media (max-width: 1024px) { .jr-dir-body--sidebar { grid-template-columns: 1fr; } .jr-dir-sidebar { display: none; } }

/* ═══════════════════════════════
 *  ABOUT US PAGE
 * ═══════════════════════════════ */
.jr-about-hero { padding: 60px 24px; text-align: center; }
.jr-about-hero-title { font-size: 36px; font-weight: 800; margin: 0 0 8px; }
.jr-about-hero-sub { font-size: 15px; max-width: 550px; margin: 0 auto; line-height: 1.6; }

.jr-about-who { max-width: 900px; margin: 0 auto; padding: 48px 24px; text-align: center; }
.jr-about-who-title { font-size: 26px; font-weight: 800; margin: 0 0 12px; }
.jr-about-intro { font-size: 14px; color: #666; max-width: 700px; margin: 0 auto 32px; line-height: 1.6; }

.jr-about-who-content { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
.jr-about-img-wrap { border-radius: 16px; overflow: hidden; border: 4px solid #FFD700; }
.jr-about-img-wrap img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block; }
.jr-about-body { font-size: 14px; line-height: 1.7; }
.jr-about-body p { margin: 0 0 14px; }

.jr-about-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 48px; padding: 0 24px; }
.jr-about-feature { padding: 24px; border: 1px solid #e8e8e8; border-radius: 12px; text-align: center; }
.jr-about-feature-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.jr-about-feature-text { font-size: 13px; line-height: 1.6; margin: 0; }

@media (max-width: 767px) {
    .jr-about-who-content { grid-template-columns: 1fr; }
    .jr-about-features { grid-template-columns: 1fr; }
    .jr-about-hero-title { font-size: 28px; }
}

/* ═══════════════════════════════
 *  CONTACT + DONATE COMBO
 * ═══════════════════════════════ */
.jr-cd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; padding: 48px 24px; }

.jr-cd-heading { font-size: 32px; font-weight: 800; margin: 0 0 16px; }
.jr-cd-desc { font-size: 14px; line-height: 1.7; margin: 0 0 24px; }

/* Donate box */
.jr-cd-donate { padding: 24px; border-radius: 16px; margin-top: 8px; }
.jr-cd-donate strong { font-size: 18px; color: #1a1a2e; display: block; margin-bottom: 4px; }
.jr-cd-donate p { font-size: 13px; color: #333; margin: 0 0 14px; }
.jr-cd-donate-btn { display: inline-flex !important; align-items: center !important; gap: 6px !important; padding: 10px 24px !important; border-radius: 6px !important; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; border: 2px solid #1a1a2e !important; transition: all 0.2s ease !important; }
.jr-cd-donate-btn:hover { background: #1a1a2e !important; color: #FFD700 !important; }

/* Form */
.jr-cd-form { display: flex; flex-direction: column; gap: 18px; }
.jr-cd-field { display: flex; flex-direction: column; gap: 6px; }
.jr-cd-label { font-size: 14px; font-weight: 700; }

.jr-cd-input,
.jr-cd-select,
.jr-cd-textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    font-family: var(--jr-font) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    -webkit-appearance: none !important;
}
.jr-cd-input:focus, .jr-cd-select:focus, .jr-cd-textarea:focus { border-color: #FFD700 !important; box-shadow: 0 0 0 3px rgba(255,215,0,0.1) !important; }

.jr-cd-btn {
    padding: 14px 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    align-self: center !important;
    min-width: 180px !important;
    text-align: center !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

@media (max-width: 767px) { .jr-cd-layout { grid-template-columns: 1fr; gap: 32px; } }

/* ═══════════════════════════════
 *  WORK WITH US — Accordion + Apply Form
 * ═══════════════════════════════ */
.jr-work-with-us { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.jr-ww-header { text-align: center; padding: 40px 0 32px; }
.jr-ww-heading { font-size: 28px; font-weight: 800; margin: 0 0 12px; }
.jr-ww-intro { font-size: 14px; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* Accordion */
.jr-ww-accordion { margin-bottom: 0; border: 2px solid #1a1a2e; border-radius: 12px; overflow: hidden; }

.jr-ww-tab { border-bottom: 1px solid rgba(0,0,0,0.08); }
.jr-ww-tab:last-child { border-bottom: none; }

.jr-ww-tab-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: #FFD700 !important;
    color: #1a1a2e !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: background 0.2s ease !important;
    -webkit-appearance: none !important;
}
.jr-ww-tab-btn:hover { background: #e6b800 !important; }

.jr-ww-chevron { transition: transform 0.3s ease; flex-shrink: 0; }
.jr-ww-tab.is-open .jr-ww-chevron { transform: rotate(180deg); }

.jr-ww-tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}
.jr-ww-tab.is-open .jr-ww-tab-content { max-height: 500px; }

.jr-ww-tab-inner {
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}
.jr-ww-tab-inner ul { padding-left: 20px; margin: 8px 0; }
.jr-ww-tab-inner li { margin-bottom: 6px; }

/* Apply Form */
.jr-ww-form-section {
    background: #FFF8DC;
    border: 2px solid #1a1a2e;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 24px 20px 28px;
}

.jr-ww-form-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #FFD700;
    display: inline-block;
}

.jr-ww-form { display: flex; flex-direction: column; gap: 14px; }

.jr-ww-input {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 24px !important;
    background: #fff !important;
    color: #1a1a2e !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    font-family: var(--jr-font) !important;
}
.jr-ww-input:focus { border-color: #FFD700 !important; }

.jr-ww-upload-label { font-size: 13px; font-weight: 600; color: #1a1a2e; margin: 8px 0 4px; }

/* Dropzone */
.jr-ww-dropzone {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
    position: relative;
    background: #fff;
}
.jr-ww-dropzone.is-dragover { border-color: #FFD700; background: rgba(255,215,0,0.05); }
.jr-ww-dropzone-inner p { margin: 4px 0; color: #888; font-size: 14px; }
.jr-ww-dropzone-inner strong { color: #1a1a2e; font-size: 16px; }
.jr-ww-browse {
    padding: 8px 20px !important;
    background: #FFD700 !important;
    color: #1a1a2e !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 13px !important;
    box-shadow: none !important;
}
.jr-ww-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.jr-ww-file-info { display: block; margin-top: 8px; font-size: 12px; color: #E94560; font-weight: 600; }

/* Send button */
.jr-ww-send-btn {
    padding: 12px 32px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    align-self: flex-start !important;
    margin-top: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.jr-ww-send-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; }

@media (max-width: 767px) {
    .jr-ww-heading { font-size: 22px; }
    .jr-ww-tab-btn { font-size: 14px !important; padding: 14px 16px !important; }
}

/* ═══════════════════════════════
 *  ETHICS & LEGAL PAGE
 * ═══════════════════════════════ */
.jr-ethics { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.jr-eth-header { text-align: center; padding: 40px 0 32px; }
.jr-eth-heading { font-size: 28px; font-weight: 800; margin: 0 0 16px; }
.jr-eth-intro { font-size: 14px; line-height: 1.7; }
.jr-eth-intro p { margin: 0 0 10px; }

.jr-eth-cards { display: flex; flex-direction: column; gap: 16px; padding-bottom: 40px; }

.jr-eth-card {
    border-left: 5px solid #FFD700;
    background: #fff;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.jr-eth-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateX(4px); }

.jr-eth-card-title { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.jr-eth-card-body { font-size: 14px; line-height: 1.7; margin: 0 0 12px; }
.jr-eth-card-body p { margin: 0; }

.jr-eth-link {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: gap 0.2s ease !important;
}
.jr-eth-link:hover { gap: 8px !important; }
.jr-eth-link::after { content: '→'; }

@media (max-width: 767px) {
    .jr-eth-heading { font-size: 22px; }
    .jr-eth-card { padding: 18px; }
}

/* ═══════════════════════════════
 *  FLOATING CART BUTTON
 * ═══════════════════════════════ */
.jr-floating-cart {
    position: fixed !important;
    bottom: 90px !important;
    right: 24px !important;
    z-index: 99985 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    background: #1a1a2e !important;
    color: #fff !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
    text-decoration: none !important;
    font-family: var(--jr-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.jr-floating-cart:hover { background: #FFD700 !important; color: #1a1a2e !important; transform: scale(1.05) !important; }
.jr-floating-cart:hover svg { fill: #1a1a2e !important; }
.jr-floating-cart svg { fill: #FFD700 !important; }

.jr-fcart-hidden { display: none !important; }

.jr-fcart-icon { position: relative; display: flex; align-items: center; }
.jr-fcart-count {
    position: absolute !important; top: -8px !important; right: -8px !important;
    width: 20px !important; height: 20px !important; border-radius: 50% !important;
    background: #E94560 !important; color: #fff !important;
    font-size: 10px !important; font-weight: 700 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
}
.jr-fcart-total { font-weight: 700 !important; }

@media (max-width: 767px) {
    .jr-floating-cart { bottom: 80px !important; right: 12px !important; padding: 10px 14px !important; }
    .jr-fcart-text { display: none !important; }
    .jr-fcart-total { display: none !important; }
}

/* ═══════════════════════════════
 *  CART PAGE
 * ═══════════════════════════════ */
.jr-cart-page { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.jr-cart-heading { font-size: 28px; font-weight: 800; color: #1a1a2e; margin: 0 0 32px; }

/* Empty cart */
.jr-cart-empty { text-align: center; padding: 60px 20px; }
.jr-cart-empty p { font-size: 16px; color: #888; margin: 16px 0 24px; }
.jr-cart-shop-btn {
    display: inline-block !important; padding: 14px 32px !important;
    background: #FFD700 !important; color: #1a1a2e !important;
    font-weight: 700 !important; border-radius: 50px !important;
    text-decoration: none !important; transition: all 0.3s ease !important;
}
.jr-cart-shop-btn:hover { background: #1a1a2e !important; color: #FFD700 !important; }

/* Cart layout */
.jr-cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }

/* Cart items */
.jr-cart-items { display: flex; flex-direction: column; gap: 16px; }
.jr-cart-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; background: #fff; border: 1px solid #f0f0f0;
    border-radius: 12px; transition: box-shadow 0.2s ease;
}
.jr-cart-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.jr-cart-item-img { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f5f5f5; }
.jr-cart-item-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

.jr-cart-item-info { flex: 1; min-width: 0; }
.jr-cart-item-name { font-size: 15px; font-weight: 600; color: #1a1a2e; margin: 0 0 4px; }
.jr-cart-item-price { font-size: 13px; color: #888; }

.jr-cart-item-qty { font-size: 13px; color: #666; font-weight: 500; flex-shrink: 0; }
.jr-cart-item-subtotal { font-size: 15px; font-weight: 700; color: #1a1a2e; flex-shrink: 0; min-width: 70px; text-align: right; }

.jr-cart-remove {
    width: 28px !important; height: 28px !important; border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 14px !important; background: #f8f8f8 !important;
    text-decoration: none !important; transition: all 0.2s ease !important;
    flex-shrink: 0 !important; border: none !important;
}
.jr-cart-remove:hover { background: #E94560 !important; color: #fff !important; }

/* Summary */
.jr-cart-summary {
    background: #f8f9fa; border-radius: 16px; padding: 28px;
    position: sticky; top: 100px; align-self: start;
}
.jr-cart-summary h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0 0 20px; }
.jr-cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: #666; border-bottom: 1px solid #eee; }
.jr-cart-summary-total { font-size: 18px; font-weight: 700; color: #1a1a2e; border-bottom: none; padding-top: 16px; }

.jr-cart-checkout-btn {
    display: block !important; width: 100% !important; padding: 16px !important;
    text-align: center !important; font-size: 15px !important; font-weight: 700 !important;
    border-radius: 12px !important; text-decoration: none !important;
    margin-top: 20px !important; transition: all 0.3s ease !important;
    border: none !important;
}
.jr-cart-checkout-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(255,215,0,0.4) !important; }

.jr-cart-continue {
    display: block !important; text-align: center !important; margin-top: 12px !important;
    font-size: 13px !important; color: #888 !important; text-decoration: none !important;
}
.jr-cart-continue:hover { color: #1a1a2e !important; }

@media (max-width: 767px) {
    .jr-cart-layout { grid-template-columns: 1fr; }
    .jr-cart-item { flex-wrap: wrap; }
    .jr-cart-summary { position: static; }
}

/* ═══════════════════════════════
 *  CHECKOUT PAGE — Modern Override
 * ═══════════════════════════════ */
.jr-checkout { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.jr-checkout-heading { font-size: 28px; font-weight: 800; margin: 0 0 32px; }

.jr-checkout .woocommerce-form-row input,
.jr-checkout .woocommerce input[type="text"],
.jr-checkout .woocommerce input[type="email"],
.jr-checkout .woocommerce input[type="tel"],
.jr-checkout .woocommerce select,
.jr-checkout .woocommerce textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #f8f9fa !important;
    font-family: var(--jr-font) !important;
    transition: border-color 0.2s ease !important;
}
.jr-checkout input:focus, .jr-checkout select:focus, .jr-checkout textarea:focus {
    border-color: #FFD700 !important;
    background: #fff !important;
}

.jr-checkout #place_order {
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.jr-checkout #place_order:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(255,215,0,0.4) !important; }

.jr-checkout .woocommerce-checkout-review-order-table {
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* ═══════════════════════════════
 *  DEFAULT LOGO PLACEHOLDER
 *  Shows when no featured image on program/podcast
 * ═══════════════════════════════ */
.jr-default-logo {
    width: 100% !important;
    height: 100% !important;
    min-height: 180px;
    background: #1a1a2e !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    padding: 20px !important;
    text-align: center;
}
.jr-default-logo svg { opacity: 0.8; }
.jr-default-logo span { color: #FFD700 !important; font-size: 12px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }

/* ═══════════════════════════════
 *  EPISODE STICKY PLAYER — replaces floating player when episode plays
 * ═══════════════════════════════ */
.jr-ep-player {
    position: fixed !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(120%) !important;
    width: 92% !important;
    max-width: 700px !important;
    z-index: 99991 !important;
    background: #1a1a2e !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3) !important;
    padding: 16px 20px !important;
    font-family: var(--jr-font) !important;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}
.jr-ep-player.is-active {
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
}

.jr-ep-player-top {
    display: flex !important; align-items: center !important; gap: 14px !important;
    margin-bottom: 12px !important;
}

.jr-ep-player-info { flex: 1; min-width: 0; }
.jr-ep-player-title {
    font-size: 14px !important; font-weight: 600 !important; color: #fff !important;
    white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important;
    margin: 0 0 2px !important;
}
.jr-ep-player-show {
    font-size: 11px !important; color: #FFD700 !important; font-weight: 500 !important;
}

/* Controls */
.jr-ep-player-controls {
    display: flex !important; align-items: center !important; gap: 12px !important;
    flex-shrink: 0 !important;
}

.jr-ep-ctrl-btn {
    width: 36px !important; height: 36px !important; border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: none !important; border: none !important; cursor: pointer !important;
    padding: 0 !important; box-shadow: none !important; transition: all 0.2s ease !important;
}
.jr-ep-ctrl-btn svg { fill: rgba(255,255,255,0.6) !important; }
.jr-ep-ctrl-btn:hover svg { fill: #fff !important; }

.jr-ep-play-main {
    width: 44px !important; height: 44px !important;
    background: #FFD700 !important; border-radius: 50% !important;
}
.jr-ep-play-main svg { fill: #1a1a2e !important; }

/* Progress */
.jr-ep-player-progress {
    display: flex !important; align-items: center !important; gap: 10px !important;
}

.jr-ep-progress-bar {
    flex: 1 !important; height: 5px !important; background: rgba(255,255,255,0.15) !important;
    border-radius: 5px !important; cursor: pointer !important; position: relative !important;
    overflow: hidden !important;
}
.jr-ep-progress-fill {
    height: 100% !important; background: #FFD700 !important; border-radius: 5px !important;
    width: 0%; transition: width 0.1s linear !important;
}

.jr-ep-time {
    font-size: 11px !important; color: rgba(255,255,255,0.5) !important;
    font-variant-numeric: tabular-nums !important; min-width: 40px !important; text-align: center !important;
}

/* Close */
.jr-ep-close {
    position: absolute !important; top: -8px !important; right: -8px !important;
    width: 24px !important; height: 24px !important; border-radius: 50% !important;
    background: #E94560 !important; border: none !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    cursor: pointer !important; box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    padding: 0 !important;
}
.jr-ep-close svg { fill: #fff !important; width: 12px !important; height: 12px !important; }

@media (max-width: 767px) {
    .jr-ep-player { width: 95% !important; bottom: 10px !important; padding: 12px 16px !important; }
    .jr-ep-player-title { font-size: 13px !important; }
}
