/*
Theme Name: The Lumen House
Theme URI: https://thelumenhouse.com/
Author: The Lumen House Team
Description: Custom WordPress theme for The Lumen House - Lighting Studio.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumen-house
*/

/* Core styles and theme variables can be added here if needed.
   Tailwind CSS is loaded dynamically in header.php. */

/* ===== PROFESSIONAL HAMBURGER (ANIMATED, MINIMAL) ===== */
.hamburger-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 163, 115, 0.2);
    transition: all 0.3s ease;
    z-index: 60;
}

.hamburger-box:hover {
    border-color: rgba(212, 163, 115, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.hamburger-inner {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #D4A373;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-origin: left center;
}

.hamburger-box.active .line-1 {
    transform: rotate(45deg) translate(3px, -2px);
    width: 120%;
}

.hamburger-box.active .line-2 {
    opacity: 0;
    transform: scaleX(0.5);
}

.hamburger-box.active .line-3 {
    transform: rotate(-45deg) translate(3px, 2px);
    width: 120%;
}

/* ===== LEFT-SIDE MENU (DARK, ELEGANT) ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 45;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: min(85vw, 400px);
    height: 100vh;
    background: #0C0B0A;
    border-right: 1px solid rgba(212, 163, 115, 0.15);
    box-shadow: 20px 0 50px -20px rgba(0, 0, 0, 0.8);
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.55, 1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

#menu-panel,
.menu-footer {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#menu-panel::-webkit-scrollbar,
.menu-footer::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.menu-panel.open {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: none;
    position: relative;
}

.menu-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0.0) 0%, rgba(212, 163, 115, 0.35) 50%, rgba(212, 163, 115, 0.0) 100%);
    background-size: 200% 100%;
    opacity: 0.9;
    transform: translateY(4px);
    animation: shimmer 4.5s linear infinite;
    pointer-events: none;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.menu-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    color: #fff;
    opacity: 0.9;
}

.menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(212, 163, 115, 0.28);
    color: #D4A373;
    cursor: pointer;
    transition: transform 260ms cubic-bezier(.2, .9, .2, 1), box-shadow 260ms ease, background 220ms ease, opacity 260ms ease;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 60;
    box-shadow: 0 6px 28px rgba(9, 10, 10, 0.35);
    opacity: 0;
    transform: translateY(-6px) scale(.94);
}

.menu-close:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(212, 163, 115, 0.9);
    box-shadow: 0 10px 36px rgba(9, 10, 10, 0.45);
}

.menu-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.6;
    opacity: 0.95;
}

.menu-close.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hamburger-box.hidden-anim,
#menu-btn.hidden-anim {
    opacity: 0 !important;
    transform: translateY(-6px) scale(.96) !important;
    pointer-events: none !important;
}

.menu-item {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 240, 0.6);
    text-decoration: none;
    padding: 0.5rem 0;
    margin: 0.2rem 0;
    display: inline-block;
    transition: color 0.25s, transform 0.25s, text-shadow 0.25s;
    transform: translateX(0);
    border-bottom: 1px solid transparent;
    opacity: 0;
    animation: fadeSlideIn 0.4s forwards cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.menu-item::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0.0), rgba(212, 163, 115, 0.85), rgba(212, 163, 115, 0.0));
    border-radius: 6px;
    margin-top: 18px;
    transition: width 280ms cubic-bezier(.2, .9, .2, 1), opacity 200ms ease;
    opacity: 0;
}

.menu-item:hover::after,
.menu-item.active::after {
    width: 84%;
    opacity: 1;
}

.menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

.menu-item:nth-child(6) {
    animation-delay: 0.6s;
}

.menu-cta-item {
    animation: fadeSlideIn 0.4s forwards cubic-bezier(0.2, 0.9, 0.3, 1.1);
    animation-delay: 0.7s;
    opacity: 0;
    margin-top: 1.5rem;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item:hover {
    color: #D4A373;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(212, 163, 115, 0.3);
}

.menu-item.active {
    color: #D4A373;
    font-weight: 500;
    border-bottom-color: #D4A373;
}

.menu-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 240, 0.6);
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    border-top: 1px solid rgba(212, 163, 115, 0.06);
    padding-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-footer a {
    color: rgba(255, 255, 240, 0.7);
    transition: color 0.18s ease, transform 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.menu-footer a:hover {
    color: #D4A373;
    transform: translateY(-2px);
}

.menu-footer svg {
    opacity: 0.92;
    color: rgba(212, 163, 115, 0.9);
}

@media (max-width: 420px) {
    .menu-footer {
        justify-content: flex-start;
        gap: 0.8rem;
        padding-left: 1rem;
    }

    .menu-footer a {
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .menu-footer svg {
        width: 18px;
        height: 18px;
    }
}

/* Header & nav styles */
.nav-link {
    position: relative;
    padding: 8px 10px;
    color: #050505;
    transition: color .18s ease, transform .12s ease;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
    text-transform: none;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 48%;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0.0), rgba(212, 163, 115, 0.95));
    opacity: 0;
    transition: transform .22s cubic-bezier(.2, .9, .3, 1), opacity .18s;
}

.nav-link:hover {
    color: #D4A373;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.nav-link:focus {
    outline: none;
}

.nav-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15);
    border-radius: 6px;
}

.nav-link.active,
.nav-link[aria-current="page"] {
    color: #D4A373;
    font-weight: 700;
}

.nav-link.active::after,
.nav-link[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #333333;
    letter-spacing: .06em;
    font-weight: 600;
}

.brand-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: #6b6b6b;
    margin-top: 2px;
    font-style: italic;
}

.site-content {
    will-change: transform;
    transition: transform .28s cubic-bezier(.2, .9, .3, 1);
}

.site-content.hide {
    transform: translateY(-110%);
}

#menu-btn span {
    background-color: #050505 !important;
    display: block;
    width: 24px !important;
    height: 3px !important;
    border-radius: 2px !important;
    margin: 4px 0 !important;
}

/* ===== COMMON / THEME STYLES ===== */
* {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

body.light-theme {
    background-color: #f7f4ef;
    color: #1f1b16;
}

.light-theme .site-content {
    color: #1f1b16;
}

.light-theme .text-white {
    color: #1f1b16 !important;
}

.light-theme .text-gray-400 {
    color: #6d655c !important;
}

.light-theme .text-gray-500 {
    color: #7a7167 !important;
}

.light-theme .bg-ink {
    background-color: #f7f4ef !important;
}

.light-theme .bg-charcoal/30 {
    background-color: rgba(247, 244, 239, 0.5) !important;
}

.light-theme .border-white/5 {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.light-theme .border-white/10 {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .bg-white/5 {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

.light-theme .bg-charcoal {
    background-color: #f1ebe3 !important;
}

/* ===== CONTACT PAGE STYLES ===== */
.form-input {
    width: 100%;
    background: #F9F5F0;
    border: 1.5px solid rgba(26, 23, 20, 0.08);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #1a1714;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(26, 23, 20, 0.35);
}

.form-input:focus {
    border-color: #D4A373;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4A373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.fly-up {
    opacity: 0;
    transform: translateY(28px);
    will-change: transform, opacity;
    transition: opacity 1s cubic-bezier(.2, .9, .2, 1), transform 1s cubic-bezier(.2, .9, .2, 1);
}

.fly-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F9F5F0;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 163, 115, 0.3);
    border-radius: 3px;
}

@media (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

@media (max-width: 767px) {
    .form-name-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== PROJECTS PAGE STYLES ===== */
.filter-menu-container::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    font-family: 'Manrope', sans-serif;
    outline: none;
}

.filter-btn.active {
    background-color: rgba(212, 163, 115, 0.15) !important;
    border-color: rgba(212, 163, 115, 0.4) !important;
    color: #D4A373 !important;
}

.portfolio-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sector-details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 60%);
    color: #f3f3f3;
    padding: 0.9rem 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .28s ease, transform .28s ease;
    font-size: 0.95rem;
    z-index: 30;
    pointer-events: none;
}

.group:hover .sector-details,
.group:focus-within .sector-details {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sector-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

.sector-details li {
    margin: 0;
    padding: 2px 0;
    color: #f6f6f6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sector-details {
        font-size: 0.88rem;
        padding: 0.75rem;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== WHAT WE DO PAGE STYLES ===== */
.svc-card-light {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(255, 250, 244, 0.96) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(11, 14, 16, 0.18);
    color: #111827;
}

.svc-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: rgba(16, 24, 40, 0.14);
    letter-spacing: -1px;
    min-width: 72px;
    text-align: left;
}

.svc-title {
    color: #0f172a;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-weight: 600;
}

.svc-desc {
    color: #334155;
    font-size: 0.95rem;
    margin-top: 6px;
}

.clean-reveal {
    transform: translateY(12px) scale(.998);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 560ms cubic-bezier(.2, .9, .25, 1), opacity 420ms ease;
}

.clean-reveal.in-view {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.group.clean-reveal::before {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 236, 214, 0.9), rgba(255, 236, 214, 0.45) 30%, rgba(255, 236, 214, 0.05) 60%, transparent 70%);
    transform: translate3d(0, 12px, 0) scale(.98);
    filter: blur(18px);
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 420ms ease, transform 420ms ease;
    z-index: 0;
}

.group.clean-reveal.in-view::before,
.group.clean-reveal:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .clean-reveal,
    .group.clean-reveal::before {
        transition: none !important;
    }
}

/* Hover title centered over image */
.hover-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .32s ease, transform .32s ease;
    z-index: 40;
    padding: 0 1rem;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.group:hover .hover-title,
.group:focus-within .hover-title {
    opacity: 1;
    transform: translateY(0);
}

/* Card media blur */
.card-media {
    transition: transform .32s ease, filter .32s ease;
    display: block;
}

.group:hover .card-media,
.group:focus-within .card-media {
    filter: brightness(0.7);
    transform: scale(1.02);
}

/* ===== UPLOADER PAGE STYLES ===== */
.dropdown-chevron {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23D4A373'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Don't override text-white inside modals (they have dark bg) */
.modal-backdrop .text-white,
.modal-backdrop .text-white/40,
.modal-backdrop .text-white/50,
.modal-backdrop .text-white/60,
.modal-backdrop .text-white/70,
.modal-backdrop .text-white/75 {
    color: inherit !important;
}

/* Drop Zone */
.drop-zone {
    border: 2px dashed rgba(26, 23, 20, 0.15);
    transition: all 0.25s ease;
}

.drop-zone.dragover,
.drop-zone:hover {
    border-color: #D4A373;
    background: rgba(212, 163, 115, 0.07);
}

/* Section Tab */
.studio-tab {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.studio-tab.active {
    background: #1a1714;
    color: #fff;
    border-color: #1a1714;
}

.studio-tab:not(.active) {
    background: transparent;
    color: #9ca3af;
    border-color: rgba(26, 23, 20, 0.1);
}

.studio-tab:not(.active):hover {
    color: #1a1714;
    border-color: rgba(26, 23, 20, 0.25);
}

/* Upload Progress */
.upload-file-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #F9F5F0;
    border: 1px solid rgba(26, 23, 20, 0.06);
    font-size: 0.78rem;
    color: #1a1714;
}

.upload-file-row .progress-bar-track {
    flex: 1;
    height: 4px;
    background: rgba(26, 23, 20, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.upload-file-row .progress-bar-fill {
    height: 100%;
    background: #D4A373;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Explorer / Publish grid */
.photo-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid rgba(26, 23, 20, 0.07);
    background: #F9F5F0;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}

.photo-card:hover {
    border-color: #D4A373;
    transform: scale(1.02);
}

.photo-card.selected {
    border-color: #D4A373;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.35);
}

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

.photo-card .check-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4A373;
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.15s, transform 0.15s;
    z-index: 10;
}

.photo-card.selected .check-badge {
    opacity: 1;
    transform: scale(1);
}

.photo-card .card-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    padding: 16px 6px 5px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.photo-card .hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 5;
}

.photo-card:hover .hover-overlay {
    opacity: 1;
}

/* Toast */
#toast-container {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(110%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
    to {
        transform: translateX(110%);
        opacity: 0;
    }
}

/* Manage Assets (published projects) */
.asset-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1.5px solid rgba(26, 23, 20, 0.07);
    cursor: pointer;
    background: #F9F5F0;
}

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

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}

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

/* Pill badge */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-backdrop {
    animation: fadeIn 0.2s ease-out forwards;
}

.modal-panel {
    animation: slideUp 0.25s ease-out forwards;
}