:root {
    --pink-lightest: #FFF5F8;
    --pink-light: #FFE4EC;
    --pink-soft: #FFB6C8;
    --pink-medium: #FF8FAB;
    --pink-hot: #FF69B4;
    --lavender-light: #F3E8FF;
    --lavender: #E8D4F0;
    --lavender-medium: #C9A8E0;
    --purple-soft: #B794D4;
    --purple-deep: #9B6BC3;
    --gold-star: #FFD700;
    --cream: #FFFBF7;
    --text-dark: #5D4A5C;
    --text-medium: #7A6579;
    --shadow-soft: rgba(201, 168, 224, 0.3);
    --shadow-pink: rgba(255, 105, 180, 0.2);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: var(--pink-lightest);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Decorative background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, var(--lavender-light) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--pink-light) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, var(--cream) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Floating decorations */
.floating-decor {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    font-size: 24px;
}

/* Navigation */
nav {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--pink-light) 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--purple-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '\1F43E';
}

.logo::after {
    content: '\2661';
    color: var(--pink-hot);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--pink-soft);
    color: white;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '\2726';
    position: absolute;
    top: -8px;
    right: -5px;
    font-size: 10px;
    color: var(--gold-star);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links a:hover::after {
    opacity: 1;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--purple-deep);
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Homepage Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--pink-hot) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-stars {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-stars:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.hero-stars:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.hero-stars:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 1s; }
.hero-stars:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 1.5s; }

/* Commission Status Banner */
.commission-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.commission-status.open {
    background: linear-gradient(135deg, #98FB98 0%, #90EE90 100%);
    color: #228B22;
}

.commission-status.closed {
    background: linear-gradient(135deg, #FFB6B6 0%, #FF9999 100%);
    color: #CC4444;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--shadow-pink); }
    50% { box-shadow: 0 0 20px 5px var(--shadow-pink); }
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--pink-hot) 0%, var(--purple-soft) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-pink);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--shadow-pink);
}

.cta-btn::after {
    content: '\2192';
    transition: transform 0.3s;
}

.cta-btn:hover::after {
    transform: translateX(5px);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, var(--lavender-medium) 0%, var(--purple-soft) 100%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: var(--purple-deep);
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '\2726';
    color: var(--gold-star);
    margin: 0 0.5rem;
    font-size: 0.8em;
}

/* Featured Gallery */
.featured-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 40px var(--shadow-pink);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(93, 74, 92, 0.9));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.gallery-item-category {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: white;
    border: 2px solid var(--lavender);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--pink-soft);
    background: var(--pink-lightest);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender-medium) 100%);
    color: white;
    border-color: transparent;
}

/* Commission Page */
.commission-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-soft), var(--lavender-medium), var(--pink-soft));
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-pink);
}

.price-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 0.5rem;
}

.price-card-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-hot);
}

.price-card-price::before {
    content: '$';
    font-size: 1.5rem;
    vertical-align: super;
}

/* Will/Won't Draw Section */
.will-wont-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.will-wont-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.will-wont-card.will {
    border-top: 4px solid #90EE90;
}

.will-wont-card.wont {
    border-top: 4px solid #FF9999;
}

.will-wont-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.will-wont-card.will .will-wont-title {
    color: #228B22;
}

.will-wont-card.wont .will-wont-title {
    color: #CC4444;
}

.will-wont-list {
    list-style: none;
}

.will-wont-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.will-wont-card.will .will-wont-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #90EE90;
    font-weight: bold;
}

.will-wont-card.wont .will-wont-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #FF9999;
    font-weight: bold;
}

/* Terms Section */
.terms-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.terms-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-list {
    list-style: none;
}

.terms-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px dashed var(--lavender);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '\2661';
    position: absolute;
    left: 0;
    color: var(--pink-soft);
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--pink-light) 100%);
    border-radius: 30px;
    margin: 2rem 0;
}

.contact-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 1rem;
}

.contact-text {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: #1877F2;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
    background: #166FE5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.facebook-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 4px 30px var(--shadow-soft);
    text-align: center;
}

.about-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--lavender);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow-pink);
}

.about-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-deep);
    margin-bottom: 0.5rem;
}

.about-tagline {
    color: var(--pink-hot);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-bio {
    color: var(--text-medium);
    line-height: 1.8;
    text-align: left;
}

.about-bio p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lavender-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-deep);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--pink-soft);
    color: white;
    transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 105, 180, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--pink-hot);
}

.lightbox-info {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.lightbox-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

footer a {
    color: var(--pink-hot);
    text-decoration: none;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.75rem 1rem;
    }

    .mobile-menu-btn {
        display: block;
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pink-light);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 20px var(--shadow-soft);
    }

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

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Main content */
    main {
        padding: 1rem;
    }

    /* Hero */
    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Sections */
    .section-header {
        margin: 2rem 0 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Gallery */
    .gallery-grid,
    .featured-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        border-radius: 15px;
    }

    /* Show overlay by default on mobile */
    .gallery-item .gallery-item-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 30%, rgba(93, 74, 92, 0.9));
        padding: 0.75rem;
    }

    .gallery-item-title {
        font-size: 0.9rem;
    }

    .gallery-item-category {
        font-size: 0.75rem;
    }

    /* Will/Won't section */
    .will-wont-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .will-wont-card {
        padding: 1.5rem;
    }

    .will-wont-title {
        font-size: 1.3rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .price-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .price-card-title {
        font-size: 1.1rem;
    }

    .price-card-price {
        font-size: 2rem;
    }

    /* Terms */
    .terms-section {
        padding: 1.5rem;
    }

    .terms-title {
        font-size: 1.2rem;
    }

    /* Contact section */
    .contact-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .facebook-btn {
        width: 100%;
        justify-content: center;
    }

    /* About page */
    .about-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .about-avatar {
        width: 120px;
        height: 120px;
    }

    .about-name {
        font-size: 1.6rem;
    }

    /* Lightbox */
    .lightbox {
        padding: 1rem;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-close {
        top: -35px;
        font-size: 1.8rem;
    }

    /* CTA buttons */
    .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    /* Logo */
    .logo {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero {
        padding: 1.5rem 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stars {
        display: none;
    }

    /* Commission status */
    .commission-status {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.4rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    /* Gallery - single column on very small screens */
    .gallery-grid,
    .featured-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    /* Category filters */
    .category-filters {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
        min-height: 40px;
    }

    /* Pricing - single column */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 1.25rem 1rem;
    }

    /* Will/Won't */
    .will-wont-card {
        padding: 1.25rem;
        border-radius: 15px;
    }

    .will-wont-title {
        font-size: 1.2rem;
    }

    .will-wont-list li {
        font-size: 0.95rem;
    }

    /* Terms */
    .terms-section {
        padding: 1.25rem;
        border-radius: 15px;
    }

    .terms-list li {
        padding: 0.6rem 0;
        padding-left: 1.75rem;
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .contact-text {
        font-size: 0.95rem;
    }

    .facebook-btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    /* About */
    .about-card {
        padding: 1.5rem 1rem;
    }

    .about-avatar {
        width: 100px;
        height: 100px;
    }

    .about-name {
        font-size: 1.4rem;
    }

    .about-tagline {
        font-size: 0.95rem;
    }

    .about-bio {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    /* Lightbox */
    .lightbox-content img {
        max-height: 60vh;
        border-radius: 8px;
    }

    .lightbox-title {
        font-size: 1.1rem;
    }

    /* CTA */
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    footer {
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .price-card-price {
        font-size: 1.8rem;
    }

    .filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Always show gallery overlay on touch devices */
    .gallery-item .gallery-item-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 40%, rgba(93, 74, 92, 0.85));
    }

    /* Remove hover effects that don't work on touch */
    .gallery-item:hover {
        transform: none;
    }

    .gallery-item:hover img {
        transform: none;
    }

    /* Add active state for buttons */
    .cta-btn:active,
    .filter-btn:active,
    .facebook-btn:active {
        transform: scale(0.98);
    }
}

/* Loading animation for images */
.gallery-item.loading {
    background: linear-gradient(90deg, var(--lavender-light) 25%, var(--pink-light) 50%, var(--lavender-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-medium);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
