/* =============================================
   Clive the Cabbage CMS - Frontend Styles
   Fun & Professional Cabbage Theme
   ============================================= */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Variables */
:root {
    --color-primary: #5D8F3B;
    --color-secondary: #A3D977;
    --color-accent: #FF6B6B;
    --color-background: #F8FAF5;
    --color-text: #2C3E2C;
    --color-text-light: #666;
    --color-border: #e0e0e0;
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.site-branding {
    flex: 1;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--color-primary);
    text-decoration: none;
}

.site-tagline {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--color-primary);
    color: white;
}

/* Header Search */
.header-search {
    margin-left: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--color-background);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.search-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(93,143,59,0.1);
}

.search-form input {
    border: none;
    background: none;
    padding: 8px 15px;
    font-size: 14px;
    width: 200px;
    outline: none;
    font-family: var(--font-body);
}

.search-form button {
    background: var(--color-primary);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.search-form button:hover {
    background: var(--color-secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Header Announcement */
.header-announcement {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.header-announcement p {
    margin: 0;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 400px);
    padding: 40px 0;
}

/* Homepage */
.homepage-intro {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(93,143,59,0.1);
}

.affiliate-ad {
    margin: 0 0 60px;
    text-align: center;
}

.affiliate-ad-link {
    display: inline-block;
    width: min(960px, 100%);
}

.affiliate-ad-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(44, 62, 44, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affiliate-ad-link:hover img {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(44, 62, 44, 0.18);
}

.affiliate-note {
    font-size: 0.75rem;
    color: rgba(44, 62, 44, 0.6);
    margin-top: 10px;
}

.recent-posts {
    margin-bottom: 60px;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

/* Market Stall Merch Strip */
.merch-strip {
    position: relative;
    padding: 50px;
    margin: 0 0 70px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff6e7 0%, #fff0d6 100%);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(93, 143, 59, 0.12);
}

.merch-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at 80% 0%, rgba(93, 143, 59, 0.08) 0%, rgba(93, 143, 59, 0) 50%),
        repeating-linear-gradient(135deg, rgba(93, 143, 59, 0.06) 0, rgba(93, 143, 59, 0.06) 2px, transparent 2px, transparent 10px);
    opacity: 0.8;
    pointer-events: none;
}

.merch-strip > * {
    position: relative;
    z-index: 1;
}

.merch-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.merch-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.75rem;
    color: rgba(44, 62, 44, 0.7);
    margin-bottom: 10px;
}

.merch-subtitle {
    font-size: 1rem;
    max-width: 460px;
    color: rgba(44, 62, 44, 0.75);
    margin: 10px 0 0;
}

.merch-cta {
    background: #2c3e2c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(44, 62, 44, 0.2);
}

.merch-cta:hover {
    background: #1e2a1e;
    color: #fff;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.merch-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-6px) rotate(-0.3deg);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.merch-price {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #ff6b6b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

.merch-image {
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merch-card:hover .merch-image img {
    transform: scale(1.05);
}

.merch-image--empty {
    color: rgba(44, 62, 44, 0.45);
    font-size: 3rem;
    letter-spacing: 0.1em;
}

.merch-info h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.merch-meta {
    display: inline-flex;
    font-size: 0.9rem;
    color: rgba(44, 62, 44, 0.7);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.posts-editorial {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.secondary-posts {
    display: grid;
    gap: 20px;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.post-card--featured {
    border-radius: 18px;
}

.post-card--featured .post-title {
    font-size: 1.7rem;
}

.post-card--featured .post-image {
    aspect-ratio: 4 / 3;
}

.post-card--compact {
    border-radius: 14px;
}

.post-card--compact .post-title {
    font-size: 1.15rem;
}

.post-card--compact .post-excerpt {
    font-size: 0.95rem;
}

.post-image {
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--color-background);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-title a {
    color: var(--color-text);
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-meta {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.post-meta span {
    margin-right: 15px;
}

.author-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.author-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.post-excerpt {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--color-secondary);
}

.view-all {
    text-align: center;
}

/* Page Content */
.page-content {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-background);
}

.page-title {
    color: var(--color-primary);
}

.page-body h2,
.post-content h2 {
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-body p,
.post-content p {
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol,
.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.page-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.page-meta {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Blog Listing */
.blog-page {
    max-width: 900px;
    margin: 0 auto;
}

.posts-list {
    margin-bottom: 40px;
}

.post-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-item .post-image {
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Single Post */
.single-post {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 30px;
    text-align: center;
}

.post-header .post-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.post-categories {
    margin-top: 15px;
}

.category-badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-secondary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.category-badge:hover {
    background: var(--color-primary);
    color: white;
}

/* Tags */
.post-tags {
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-label {
    font-size: 1.1rem;
    margin-right: 5px;
}

.tag-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f8faf5;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-badge:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(93, 143, 59, 0.2);
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--color-background);
}

.post-share {
    margin-bottom: 30px;
}

.share-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-primary);
    color: white;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-button:hover {
    background: var(--color-secondary);
    color: white;
}

.back-to-blog {
    color: var(--color-primary);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93,143,59,0.3);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination-link {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
    transition: all 0.3s;
}

.pagination-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-link.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: var(--color-text);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
    margin-bottom: 20px;
}

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

.footer-nav a {
    color: white;
    margin: 0 15px;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-nav a[href*="feed.php"]::before {
    content: "📡 ";
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 2;
        flex-direction: column;
        background: white;
        padding: 15px 0;
        border-top: 1px solid #eee;
        margin-top: 15px;
    }

    .main-nav.active {
        display: flex;
    }

    .site-header.menu-open .main-nav {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
        margin: 5px 0;
    }

    .header-search {
        margin-left: 0;
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .search-form input {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .posts-editorial {
        grid-template-columns: 1fr;
    }

    .secondary-posts {
        grid-template-columns: 1fr;
    }

    .merch-strip {
        padding: 35px 25px;
    }

    .merch-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .page-content,
    .single-post {
        padding: 30px 20px;
    }

    .homepage-intro {
        padding: 40px 20px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Related Posts Section
   ============================================= */
.related-posts {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.related-posts-title {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(93, 143, 59, 0.15);
    border-color: var(--color-primary);
}

.related-post-image {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--color-background);
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-post-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--color-text);
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--color-primary);
}

.related-post-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

.related-post-date,
.related-post-author {
    display: flex;
    align-items: center;
}

.related-post-date:before {
    content: '📅';
    margin-right: 5px;
}

.related-post-author:before {
    content: '✍️';
    margin-right: 5px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .related-posts {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .related-posts-title {
        font-size: 1.5rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-post-image {
        height: 200px;
    }
}
.audio-player-page {
    --audio-surface: #ffffff;
    --audio-soft: #f6f8f3;
    --audio-border: rgba(93, 143, 59, 0.12);
    --audio-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --audio-glow: 0 12px 24px rgba(93, 143, 59, 0.18);
    --audio-muted: #6e7b6a;
}

.audio-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 20px;
    margin-bottom: 40px;
}

.audio-header h1 {
    font-size: 48px;
    margin: 0 0 15px 0;
}

.audio-header p {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
}

.audio-player-page .audio-shell {
    display: grid;
    grid-template-columns: minmax(360px, 1.6fr) minmax(280px, 0.9fr);
    gap: 36px;
    align-items: stretch;
}

.audio-player-page .jp-audio {
    background: linear-gradient(135deg, #ffffff 0%, #fbfdf7 100%);
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--audio-shadow);
    border: 1px solid var(--audio-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audio-player-page .audio-main {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(240px, 1fr);
    gap: 22px;
    align-items: center;
    flex: 1;
}

.audio-player-page .jp-track-artwork {
    width: 190px;
    height: 190px;
    margin: 0 0 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    position: relative;
}

.audio-player-page .jp-track-artwork::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.audio-player-page .jp-track-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audio-player-page .jp-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--audio-muted);
    font-weight: 600;
}

.audio-player-page .jp-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.audio-player-page .jp-placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.9);
}

.audio-player-page .jp-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.audio-player-page .jp-artist {
    font-size: 16px;
    color: var(--audio-muted);
}

.audio-player-page .jp-gui {
    background: var(--audio-soft);
    border-radius: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(93, 143, 59, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    grid-column: 1 / -1;
    margin-top: auto;
}

.audio-player-page .jp-progress {
    background: #e1e6da;
    height: 8px;
    border-radius: 999px;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-player-page .jp-seek-bar {
    height: 100%;
    position: relative;
}

.audio-player-page .jp-play-bar {
    background: var(--color-primary);
    height: 100%;
    width: 0%;
    border-radius: 999px;
    transition: width 0.1s;
    position: relative;
}

.audio-player-page .jp-play-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translate(50%, -50%);
    box-shadow: 0 0 0 2px #ffffff, 0 6px 12px rgba(0, 0, 0, 0.15);
}

.audio-player-page .jp-time-holder {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--audio-muted);
    font-variant-numeric: tabular-nums;
}

.audio-player-page .jp-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 6px;
}

.audio-player-page .jp-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.audio-player-page .jp-btn {
    border: 2px solid transparent;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.audio-player-page .jp-icon {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.audio-player-page .jp-icon--skip {
    letter-spacing: -0.12em;
}

.audio-player-page .jp-icon--repeat {
    font-size: 15px;
    letter-spacing: 0.02em;
}


.audio-player-page .jp-btn--ghost {
    width: 42px;
    height: 42px;
    border-color: rgba(93, 143, 59, 0.3);
}

.audio-player-page .jp-btn--primary {
    width: 62px;
    height: 62px;
    border: none;
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--audio-glow);
    font-size: 24px;
    position: relative;
}

.audio-player-page .jp-btn--primary .jp-icon {
    font-size: 20px;
    letter-spacing: 0;
}

.audio-player-page .jp-btn:active {
    transform: translateY(1px) scale(0.98);
}

.audio-player-page .jp-btn:hover {
    transform: translateY(-1px);
}

.audio-player-page .jp-btn:focus-visible {
    outline: 2px solid rgba(93, 143, 59, 0.4);
    outline-offset: 3px;
}

.audio-player-page .jp-pause {
    display: none;
}

.audio-player-page .jp-toggle-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(93, 143, 59, 0.08);
    border: 1px solid rgba(93, 143, 59, 0.15);
}

.audio-player-page .jp-btn--toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border-color: rgba(93, 143, 59, 0.25);
    color: var(--audio-muted);
    background: #ffffff;
}

.audio-player-page .jp-toggle-controls button.active {
    background: var(--color-primary) !important;
    color: white !important;
}


.audio-player-page .jp-playlist-container {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbf6 100%);
    border-radius: 20px;
    padding: 14px 16px 12px;
    box-shadow: var(--audio-shadow);
    border: 1px solid var(--audio-border);
    display: flex;
    flex-direction: column;
}

.audio-player-page .jp-playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--audio-border);
}

.audio-player-page .jp-playlist-header h2 {
    margin: 0;
    font-size: 22px;
}

.audio-player-page .jp-playlist {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding-right: 4px;
}

.audio-player-page .jp-playlist::-webkit-scrollbar {
    width: 8px;
}

.audio-player-page .jp-playlist::-webkit-scrollbar-thumb {
    background: rgba(93, 143, 59, 0.2);
    border-radius: 999px;
}

.audio-player-page .jp-playlist::-webkit-scrollbar-track {
    background: rgba(93, 143, 59, 0.06);
    border-radius: 999px;
}

.audio-player-page .jp-playlist-item {
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--audio-border);
    background: #fbfcf8;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

.audio-player-page .jp-playlist-item:hover {
    background: #edf5e5;
    transform: translateX(4px);
}

.audio-player-page .jp-playlist-current {
    background: var(--color-primary) !important;
    color: white !important;
    box-shadow: 0 10px 18px rgba(93, 143, 59, 0.2);
}

.audio-player-page .jp-playlist-current .track-title,
.audio-player-page .jp-playlist-current .track-artist,
.audio-player-page .jp-playlist-current .track-duration {
    color: white !important;
}

.audio-player-page .jp-playlist-current .track-number {
    background: white !important;
    color: var(--color-primary) !important;
}

.audio-player-page .jp-playlist-item:hover .track-title,
.audio-player-page .jp-playlist-item:hover .track-artist,
.audio-player-page .jp-playlist-item:hover .track-duration {
    color: var(--color-primary);
}

.audio-player-page .track-number {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.audio-player-page .track-info {
    flex: 1;
    min-width: 0;
}

.audio-player-page .track-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

.audio-player-page .track-artist {
    color: #666;
    font-size: 14px;
}

.audio-player-page .track-duration {
    color: #999;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    min-width: 48px;
    text-align: right;
}

.audio-player-page .track-badge {
    background: var(--color-accent);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 8px;
}

.audio-player-page .track-data {
    display: none;
}

@media (max-width: 1200px) {
    .audio-player-page .audio-shell {
        gap: 28px;
    }

    .audio-player-page .jp-track-artwork {
        width: 210px;
        height: 210px;
    }
}

@media (min-width: 1024px) {
    .audio-player-page .audio-shell {
        height: clamp(480px, calc(100vh - 360px), 640px);
    }

    .audio-player-page .jp-audio {
        height: 100%;
    }

    .audio-player-page .jp-playlist-container {
        height: 100%;
    }

    .audio-player-page .jp-playlist {
        max-height: 400px;
    }
}

@media (max-width: 1024px) {
    .audio-player-page .audio-shell {
        grid-template-columns: 1fr;
    }

    .audio-player-page .audio-main {
        grid-template-columns: 1fr;
    }

    .audio-player-page .jp-current-track {
        text-align: center;
        align-items: center;
    }

    .audio-player-page .jp-track-artwork {
        margin: 0 auto 18px;
    }

    .audio-player-page .jp-track-meta {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .audio-header h1 {
        font-size: 32px;
    }

    .audio-header p {
        font-size: 16px;
    }

    .audio-player-page .jp-track-artwork {
        width: 140px;
        height: 140px;
    }

    .audio-player-page .jp-controls {
        gap: 10px;
        flex-wrap: wrap;
    }

    .audio-player-page .jp-toggle-controls {
        width: 100%;
        justify-content: center;
    }
}

/* Shop Page */
.shop-page {
    margin: 20px 0 60px;
}

.shop-hero {
    display: grid;
    grid-template-columns: minmax(320px, 1.2fr) minmax(240px, 0.8fr);
    gap: 30px;
    background: linear-gradient(135deg, #f9fbf6 0%, #ffffff 100%);
    border: 1px solid rgba(93, 143, 59, 0.12);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.shop-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    color: #6e7b6a;
    margin-bottom: 10px;
}

.shop-hero h1 {
    font-size: 40px;
    margin: 0 0 12px;
    color: var(--color-primary);
}

.shop-lede {
    font-size: 16px;
    color: #586555;
    max-width: 520px;
}

.shop-hero-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(93, 143, 59, 0.12);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.shop-hero-badge {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-hero-title {
    font-size: 20px;
    margin: 0;
    color: #2f3d2d;
}

.shop-hero-copy {
    margin: 0;
    color: #657160;
    font-size: 14px;
}

.shop-intro {
    margin: 30px 0;
    font-size: 16px;
    color: #4c5a49;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.shop-toolbar {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 10px;
}

.shop-search {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-search input,
.shop-search select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d9e1d2;
    font-size: 14px;
}

.shop-search input {
    min-width: 220px;
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 30px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 20px;
    align-self: start;
}

.shop-results {
    min-width: 0;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0 10px;
}

.shop-filters--secondary {
    margin-top: 0;
    margin-bottom: 20px;
}

.shop-price-range {
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.shop-price-range__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.shop-price-range__value {
    color: var(--color-primary);
}

.shop-price-range__inputs {
    display: grid;
    gap: 10px;
}

.shop-price-range input[type="range"] {
    width: 100%;
}

@media (max-width: 980px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-toolbar,
    .shop-filters,
    .shop-filters--secondary {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
    }

    .shop-filters {
        flex-wrap: nowrap;
    }

    .shop-filters > * {
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .shop-search {
        flex-wrap: nowrap;
        gap: 8px;
    }
}

.shop-filter-label {
    font-size: 13px;
    color: #5a6656;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shop-filter {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(93, 143, 59, 0.2);
    color: #3c4b39;
    font-size: 13px;
    text-decoration: none;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shop-filter.active,
.shop-filter:hover {
    background: #5d8f3b;
    color: #ffffff;
}

.shop-filter-count {
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
}

.shop-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(93, 143, 59, 0.12);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.shop-card-art {
    background: #f1f5ea;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9b84;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

.shop-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-badge {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(47, 61, 45, 0.9);
    color: #ffffff;
}

.shop-badge--new {
    background: #5d8f3b;
}

.shop-badge--limited {
    background: #d8712c;
}

.shop-badge--bestseller {
    background: #1f4e79;
}

.shop-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.shop-card-header h3 {
    margin: 0;
    font-size: 18px;
    color: #2f3d2d;
}

.shop-card-header h3 a {
    color: inherit;
    text-decoration: none;
}

.shop-card-header h3 a:hover {
    color: #5d8f3b;
}

.shop-card-desc {
    margin: 0;
    color: #677562;
    font-size: 14px;
}

.shop-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shop-price {
    font-weight: 600;
    color: #2f3d2d;
    font-size: 14px;
}

.shop-soon {
    font-size: 12px;
    color: #9aa697;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.shop-empty {
    margin-top: 40px;
    padding: 40px;
    border-radius: 16px;
    border: 1px dashed rgba(93, 143, 59, 0.2);
    text-align: center;
    background: #fafcf7;
}

.shop-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.shop-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(93, 143, 59, 0.12);
    padding: 20px;
    color: #5a6656;
}

.shop-faq-item h3 {
    margin-top: 0;
    color: #2f3d2d;
}

@media (max-width: 900px) {
    .shop-hero {
        grid-template-columns: 1fr;
    }

    .shop-hero h1 {
        font-size: 32px;
    }
}

/* Shop Checkout */
.shop-checkout {
    margin: 20px 0 60px;
}

.shop-checkout-header h1 {
    margin-bottom: 6px;
}

.shop-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5a6656;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shop-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.shop-breadcrumbs a:hover {
    color: var(--color-primary);
}

.shop-checkout-grid {
    display: grid;
    grid-template-columns: minmax(260px, 520px);
    gap: 24px;
}

.shop-product-grid {
    grid-template-columns: minmax(220px, 360px) minmax(260px, 520px);
    align-items: start;
}

.shop-product-media img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(93, 143, 59, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.shop-main-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.shop-main-image:hover {
    transform: scale(1.02);
}

.shop-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.shop-thumb {
    border: 1px solid rgba(93, 143, 59, 0.2);
    background: #ffffff;
    padding: 4px;
    border-radius: 10px;
    cursor: pointer;
    width: 64px;
    height: 64px;
}

.shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.shop-thumb.active {
    border-color: #5d8f3b;
    box-shadow: 0 0 0 2px rgba(93, 143, 59, 0.2);
}

.shop-related {
    margin-top: 40px;
}

.shop-related h2 {
    margin-bottom: 16px;
}

.shop-related .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.shop-checkout-form {
    background: #ffffff;
    border: 1px solid rgba(93, 143, 59, 0.12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    display: grid;
    gap: 14px;
}

.shop-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #3c4b39;
}

.shop-price-display {
    font-weight: 700;
    color: #2f3d2d;
}

.shop-meta {
    font-size: 14px;
    color: #55624f;
    line-height: 1.5;
}

.shop-accordion {
    border: 1px solid rgba(93, 143, 59, 0.12);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fafcf7;
}

.shop-accordion summary {
    cursor: pointer;
    font-weight: 600;
    color: #2f3d2d;
}

.shop-accordion p {
    margin: 10px 0 0;
    color: #55624f;
}

.shop-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 10, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.shop-lightbox.active {
    display: flex;
}

.shop-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.shop-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
}

.shop-field input,
.shop-field select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d9e1d2;
    font-size: 14px;
}

.shop-card-element {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d9e1d2;
    background: #ffffff;
}

.shop-checkout-summary {
    border-top: 1px solid rgba(93, 143, 59, 0.12);
    padding-top: 14px;
    font-size: 14px;
    color: #3c4b39;
}

.shop-checkout-summary > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.shop-checkout-summary .shop-total {
    font-weight: 700;
    color: #243021;
}

.shop-checkout-note {
    color: #5a6656;
    font-size: 13px;
}

/* Cart */
.cart-page {
    margin: 30px 0 60px;
}

.cart-header h1 {
    margin-bottom: 6px;
}

.cart-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(220px, 320px);
    gap: 24px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 90px 90px 70px;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(93, 143, 59, 0.12);
    padding: 16px;
}

.cart-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5ea;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.cart-info p {
    margin: 0;
    font-size: 13px;
    color: #6b7666;
}

.cart-qty input {
    width: 70px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #d9e1d2;
}

.cart-price {
    font-weight: 600;
    color: #2f3d2d;
}

.cart-remove button {
    background: none;
    border: none;
    color: #c94545;
    cursor: pointer;
}

.cart-summary {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(93, 143, 59, 0.12);
    padding: 20px;
    display: grid;
    gap: 12px;
    height: fit-content;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.cart-summary-row.cart-total {
    font-weight: 700;
    color: #243021;
}

@media (max-width: 900px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
    }
}
/* Account Pages */
.account-page {
    margin: 30px 0 60px;
    display: flex;
    justify-content: center;
}

.account-card {
    background: #ffffff;
    border: 1px solid rgba(93, 143, 59, 0.12);
    border-radius: 18px;
    padding: 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.account-card.account-wide {
    max-width: 820px;
}

.account-card h1 {
    margin-top: 0;
}

.account-card form {
    display: grid;
    gap: 12px;
}

.account-card label {
    font-size: 14px;
    color: #3c4b39;
}

.account-card input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d9e1d2;
    font-size: 14px;
}

.account-alt {
    margin-top: 14px;
    font-size: 14px;
    color: #5a6656;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.nav-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 6px;
    margin-left: 6px;
}

.nav-cart-item {
    position: relative;
}

.mini-cart {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 280px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(93, 143, 59, 0.2);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 14px;
    display: none;
    z-index: 50;
}

.nav-cart-item:hover .mini-cart,
.nav-cart-item:focus-within .mini-cart {
    display: block;
}

.mini-cart-header {
    font-weight: 600;
    color: #2f3d2d;
    margin-bottom: 10px;
}

.mini-cart-items {
    display: grid;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 8px;
    align-items: center;
    font-size: 13px;
}

.mini-cart-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5ea;
}

.mini-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-name {
    font-weight: 600;
    color: #2f3d2d;
}

.mini-cart-meta {
    font-size: 12px;
    color: #6b7666;
}

.mini-cart-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding-top: 8px;
    border-top: 1px solid rgba(93, 143, 59, 0.12);
    margin-bottom: 10px;
}

.mini-cart-empty {
    margin: 0;
    font-size: 13px;
    color: #6b7666;
}

.shop-toolbar {
    position: sticky;
    top: 90px;
    z-index: 5;
    background: #f7faf2;
    padding: 12px 0;
}
