:root {
    --bg: #F5F3EF;
    --bg-clouds:
        radial-gradient(ellipse at 15% 25%, rgba(255,255,255,0.7) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 15%, rgba(220,225,235,0.5) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(200,210,225,0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 70%, rgba(255,255,255,0.4) 0%, transparent 40%);
    --surface: #FFFFFF;
    --fg: #1A1D2E;
    --muted: #5A5E72;
    --border: #DDD9D2;
    --accent: #7C3AED;
    --accent-2: #06B6D4;
    --success: #3DA567;
    --warn: #E0A82E;
    --danger: #D94848;

    --font-display: 'Space Grotesk', -apple-system, system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'IBM Plex Mono', Menlo, monospace;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --max-width: 1200px;
    --header-height: 64px;
}

[data-theme="dark"] {
    --bg: #0B0D17;
    --bg-clouds: none;
    --surface: #111827;
    --fg: #E2E8F0;
    --muted: #8892B0;
    --border: #1E293B;
    --accent: #7C3AED;
    --accent-2: #06B6D4;
    --success: #4ECA7A;
    --warn: #F0C040;
    --danger: #E86060;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    background-color: var(--bg);
    background-image: var(--bg-clouds, none);
    background-attachment: fixed;
    transition: background-color 0.4s ease, color 0.4s ease;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

/* ============================================================
   Starfield Canvas
   ============================================================ */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.9; }
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 450;
    color: var(--muted);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--fg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.icon-btn:hover {
    color: var(--fg);
    border-color: var(--fg);
}

.lang-switch {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}

.lang-switch:hover {
    color: var(--fg);
    border-color: var(--fg);
}

.lang-switch.active-lang {
    color: var(--accent);
    border-color: var(--accent);
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
    }
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-greeting {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero h1 {
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #FFF;
}

.btn-primary:hover {
    background: var(--accent);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--fg);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual .photo-frame {
    width: clamp(240px, 35vw, 380px);
    height: clamp(240px, 35vw, 380px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    padding: 4px;
    position: relative;
    z-index: 1;
}

.hero-visual .photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.hero-visual .decorator {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-visual .decorator-1 {
    width: 80px;
    height: 80px;
    background: var(--accent-2);
    opacity: 0.15;
    top: -15px;
    right: 10%;
}

.hero-visual .decorator-2 {
    width: 50px;
    height: 50px;
    background: var(--accent);
    opacity: 0.12;
    bottom: 8%;
    left: -5px;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual .photo-frame {
        width: 200px;
        height: 200px;
    }
}

/* ============================================================
   About Section
   ============================================================ */
.about .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 450;
    transition: all 0.2s;
}

.skill-tag:hover {
    border-color: var(--accent);
}

.skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about .container {
        grid-template-columns: 1fr;
    }

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

/* ============================================================
   Services Section
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    padding: 2rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

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

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

/* ============================================================
   Projects Section
   ============================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.projects-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.project-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, color-mix(in oklch, var(--accent) 20%, transparent), color-mix(in oklch, var(--accent-2) 15%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 500;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.4rem;
}

.project-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all 0.2s ease;
}

.project-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(47, 139, 122, 0.08);
}

.project-link svg {
    width: 18px;
    height: 18px;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--muted);
}

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

/* ============================================================
   Timeline / Experience
   ============================================================ */
.timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translateX(-5px);
    transition: all 0.3s;
    z-index: 1;
}

.timeline-item.visible::before {
    background: var(--accent);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.timeline-item h3 {
    margin-bottom: 0.25rem;
}

.timeline-company {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 560px) {
    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -1.5rem;
    }
}

/* ============================================================
   Resume / Download Section
   ============================================================ */
.resume-cta {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.resume-info h3 {
    margin-bottom: 0.5rem;
}

.resume-info p {
    color: var(--muted);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: #FFF;
    font-weight: 500;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-download:hover {
    filter: brightness(1.1);
}

.btn-download svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 6vw, 4rem);
    margin-top: 2.5rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link .cl-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fg);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--fg);
    transition: all 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 15%, transparent);
}

.form-submit {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: #FFF;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.92rem;
    transition: all 0.25s;
}

.form-submit:hover {
    filter: brightness(1.1);
}

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

/* ============================================================
   Footer
   ============================================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children>* {
    transition-delay: 0s;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================================
   Toast
   ============================================================ */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--fg);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 999;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   Project Modal
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(12px);
    transition: transform 0.25s ease;
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.modal-close {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.modal-carousel {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    background: var(--bg);
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 520px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 1.25rem;
    transition: all 0.2s;
    line-height: 1;
}

.carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel-prev {
    left: 0.75rem;
}

.carousel-next {
    right: 0.75rem;
}

.carousel-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
}

.carousel-counter {
    font-size: 0.8rem;
    color: var(--muted);
    margin-left: 0.75rem;
}

.carousel-no-images {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 2rem;
}

@media (max-width: 600px) {
    .modal-header {
        padding: 1rem;
    }

    .carousel-viewport {
        min-height: 200px;
        max-height: 320px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}