/* Stoizm Wallpaper CSS Design System */

:root {
    --bg-color: #0a0a0a;
    --card-bg: #131313;
    --accent-gold: #d4af37;
    --accent-gold-hover: #bda030;
    --text-primary: #f4f4f4;
    --text-secondary: #999999;
    --border-color: #222222;
    --glass-bg: rgba(12, 12, 12, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
    --phone-bg: #1e1e1e;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-speed);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link {
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-speed);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-speed);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

#fav-count {
    background-color: var(--accent-gold);
    color: var(--bg-color);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: radial-gradient(circle at center, #1b201a 0%, var(--bg-color) 70%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

/* =============================================
   DAILY STOIC QUOTE SECTION
   ============================================= */
.daily-quote-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0e0e0e 50%, var(--bg-color) 100%);
    position: relative;
}

.daily-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.daily-quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    position: relative;
    animation: fadeInUp 1.2s ease;
}

.quote-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-text::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent-gold);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.quote-author {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quote-source {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.quote-reflection {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reflection-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.reflection-question {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

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

/* Section Header */
.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-secondary);
}

/* Filters & Search Controls */
.filter-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

#search-input {
    width: 100%;
    max-width: 480px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-speed);
}

#search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.tag-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tag {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-speed);
}

.filter-tag:hover, .filter-tag.active {
    border-color: var(--accent-gold);
    color: var(--text-primary);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-speed);
    outline: none;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Gallery Grid */
.wallpapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    width: 100%;
}

.wallpaper-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 0.625;
    cursor: pointer;
    transition: var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.wallpaper-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wallpaper-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.card-author {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* Wallpaper ID Badge */
.card-id-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--accent-gold);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Loading & Empty States */
.loading-spinner {
    grid-column: 1 / -1;
    margin: 4rem auto;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px dashed var(--border-color);
    border-radius: 16px;
}

.empty-text {
    color: var(--text-secondary);
}

.hidden {
    display: none !important;
}

/* =============================================
   DISCOVER STOICISM SECTION
   ============================================= */
.philosophy-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-section .section-header {
    margin-bottom: 3.5rem;
}

.philosophy-section .section-title {
    font-size: 2.5rem;
}

.philosophy-section .section-desc {
    max-width: 600px;
    margin: 0.75rem auto 0;
}

/* Four Virtues Grid */
.virtues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.virtue-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.virtue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: var(--transition-speed);
}

.virtue-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.virtue-card:hover::before {
    opacity: 1;
}

.virtue-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.virtue-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.virtue-latin {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.virtue-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Philosophers Section */
.philosophers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophers-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.philosophers-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.philosophers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosopher-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-speed);
}

.philosopher-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.philosopher-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #8B7535);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.philosopher-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.philosopher-era {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.philosopher-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.philosopher-quote {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(244, 244, 244, 0.6);
}

/* =============================================
   SOCIAL SHARING (MODAL)
   ============================================= */
.share-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    transition: var(--transition-speed);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Modal Concept Tag */
.concept-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.daily-practice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.daily-practice strong {
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background-color: #050505;
    padding: 3rem 2rem;
    margin-top: 6rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Modal and Interactive Phone Mockup */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #0c0c0c;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 850px;
    width: 100%;
    z-index: 10;
    position: relative;
    padding: 2.5rem;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-speed);
}

.modal-close:hover {
    color: var(--text-primary);
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

/* Virtual Phone Mockup */
.phone-mockup {
    width: 250px;
    height: 500px;
    background-color: var(--phone-bg);
    border: 10px solid #2d2d2d;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-speaker {
    width: 60px;
    height: 6px;
    background-color: #2d2d2d;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #121212;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-status-bar {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.phone-quote-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    z-index: 4;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.phone-date {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.phone-home-button {
    width: 35px;
    height: 35px;
    border: 2px solid #2d2d2d;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background-color: transparent;
    display: none; /* Modern bezels */
}

/* Preview Details */
.preview-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.details-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
}

.details-author {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-top: -1rem;
}

.details-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.stoic-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}

.stoic-card h4 {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stoic-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 60vh;
    }
    
    .daily-quote-card {
        padding: 2rem 1.5rem;
    }

    .quote-text {
        font-size: 1.15rem;
    }

    .preview-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }

    .share-actions {
        flex-direction: column;
    }

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

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

    .philosophy-section .section-title {
        font-size: 2rem;
    }
}

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

/* Collections & Albums Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-speed);
}

.collection-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.collection-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-cover-img {
    transform: scale(1.08);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.collection-card-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.collection-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.25rem;
}

.collection-card-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 37%, rgba(255, 255, 255, 0.03) 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
    border-radius: 12px;
}

@keyframes skeleton-loading {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

.skeleton-card {
    height: 380px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
