/* ============================================
   STUDIO WALLOP
   Light / white. Lime green accent.
   Clean professional sans-serif.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Barlow+Condensed:wght@700;900&display=swap');

/* ============================================
   TOKENS
   ============================================ */
:root {
    --bg:           #cdde5e;
    --surface:      #f5f5f5;
    --border:       #e0e0e0;
    --accent:       #cdde5e;
    --accent-dark:  #ff4438;
    --text:         #1a1a1a;
    --text-mid:     #555555;
    --text-dim:     #888888;
    --text-light:   #ffffff;
    --header-h:     100px;
    --filter-h:     52px;
    --max-w:        1100px;
    --grid-gap:     3px;

    --font-head:    'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body:    'Inter', -apple-system, sans-serif;
}

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

html {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: var(--bg);
    border-bottom: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.site-logo img {
    height: 60px;
    width: auto;
    display: block;
    padding-top: 2px;
}

.site-logo-text {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--accent);
}

nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    text-decoration: none;
    padding-bottom: 0px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-dark);
    border-bottom-color: var(--accent);
}

/* ============================================
   HERO — full bleed
   ============================================ */
.hero {
    width: 100%;
    background: var(--surface);
    overflow: hidden;
}

.hero--image {
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 0;
}

.hero--image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.hero--lottie {
    height: 500px;
}

.hero--spline {
    height: 560px;
}

.hero--spline iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero--empty {
    height: 80px;
    border-bottom: 1px solid var(--border);
}

/* ============================================
   PAGE WRAP — contained column
   ============================================ */
.page-wrap {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    flex: 1;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
    padding: 48px 0 36px;
    position: relative;
}

.intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #ffffff;
}

.intro p {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-mid);
    max-width: 1000px;
}

/* ============================================
   SHOWREEL
   ============================================ */
.showreel {
    padding: 48px 0;
    position: relative;
}

.showreel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #ffffff;
}

.showreel-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.showreel-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   FILTER BAR — sticky below header, full width
   ============================================ */
.filter-bar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--bg);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    background: none;
    border: 1px solid var(--border);
    padding: 6px 14px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    text-transform: uppercase;
}

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

.filter-btn.active {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
}

/* ============================================
   GRID — full width, straight under filter bar
   ============================================ */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    background: #000000;
    align-content: start;
    transition: opacity 0.3s ease;
    padding-top: 44px; /* JS overrides this to match the filter bar height */
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.grid-item.is-hidden {
    display: none;
}

.grid-item.is-hiding {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.grid-item.is-showing {
    opacity: 0;
    transform: scale(0.95);
}

.grid-item::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.grid-item img,
.grid-thumb-lottie {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.grid-item img {
    filter: saturate(90%);
}

.grid-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: flex-end;
    padding: 10px;
    transition: background 0.3s ease;
}

.grid-item-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
}

.grid-item:hover img {
    transform: scale(1.04);
    filter: saturate(110%);
}

.grid-item:hover .grid-item-overlay {
    background: rgba(0,0,0,0.4);
}

.grid-item:hover .grid-item-label {
    opacity: 1;
    transform: translateY(0);
}

/* Icons */
.grid-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    pointer-events: none;
    line-height: 1;
    transition: opacity 0.2s, transform 0.2s;
}

.grid-item--video .grid-item-icon { opacity: 0.8; }
.grid-item--video:hover .grid-item-icon { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }

.grid-item--gallery .grid-item-icon,
.grid-item--spline .grid-item-icon { opacity: 0; }
.grid-item--gallery:hover .grid-item-icon,
.grid-item--spline:hover .grid-item-icon { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }

.grid-item-play { font-size: 2rem; }

.grid-item-3d {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: white;
    padding: 4px 8px;
}

.grid-item-stack svg { display: block; }

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    padding: 80px 40px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 94vw;
    max-height: 92vh;
    animation: lb-in 0.2s ease;
}

@keyframes lb-in {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-content > img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
}

.lightbox-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 10;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

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

/* Video embed */
.lightbox-video-wrapper {
    position: relative;
    width: 82vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.lightbox-video-wrapper iframe,
.lightbox-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom ratio video — height-driven so any aspect fits without bars.
   The aspect-ratio itself is set inline from the playlist. */
.lightbox-video-wrapper.has-ratio {
    width: auto;
    max-width: 90vw;
    height: 78vh;
}

.carousel-media .lightbox-video-wrapper.has-ratio {
    width: auto;
    max-width: 90vw;
    height: 74vh;
}

/* Spline embed */
.lightbox-spline-wrapper {
    position: relative;
    width: 82vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #111;
}

.lightbox-spline-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Lottie in lightbox */
.lightbox-lottie-wrapper {
    width: 70vw;
    max-width: 800px;
    aspect-ratio: 1 / 1;
    background: #111;
}

/* Carousel */
.carousel-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.carousel-media .lightbox-video-wrapper {
    width: 80vw;
    max-width: 1000px;
}

#carouselImg {
    display: block;
    max-width: 90vw;
    max-height: 76vh;
    object-fit: contain;
}

.lightbox-carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

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

.carousel-counter {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    min-width: 60px;
    text-align: center;
    letter-spacing: 0.1em;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-wrap--about {
    padding-top: 0;
    padding-bottom: 0;
}

.about-statement-block {
    padding: 16px 0 48px;
}

.about-rule {
    height: 1px;
    background: #ffffff;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 48px 0;
}

.about-block {
    max-width: 680px;
    padding-top: 48px;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.about-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-meta-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-subheading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--accent-dark);
    text-transform: uppercase;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-list li {
    font-size: 0.9rem;
    color: var(--text-mid);
}

.about-list a {
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    transition: color 0.15s, border-color 0.15s;
}

.about-list a:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent);
}

.about-statement {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 1.2;
    color: #364542;
    text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #364542;
    color: var(--text-light);
    padding: 48px 32px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    max-width: 600px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    :root { --header-h: 56px; }

    /* Logo is 60px by default — too tall for the 56px mobile header */
    .site-logo img { height: 40px; padding-top: 0; }

    .page-wrap { padding: 0 20px; }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-meta {
        grid-template-columns: 1fr 1fr;
    }

    .intro p { font-size: 1rem; }
    .about-body { font-size: 1rem; }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-meta {
        grid-template-columns: 1fr;
    }

    .site-header { padding: 0 16px; }
    .page-wrap   { padding: 0 16px; }
    .site-footer { padding: 36px 16px; }
}

.about-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

/* ============================================
   CANVAS — draggable masonry field (tile type 9)
   ============================================ */
.grid-item--canvas .grid-item-icon { opacity: 0; }
.grid-item--canvas:hover .grid-item-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}
.grid-item-canvas svg { display: block; }

.lightbox--canvas .lightbox-backdrop { background: #f2f2f0; }
.lightbox--canvas .lightbox-content {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    gap: 0;
    animation: none;
}
.lightbox--canvas .lightbox-close {
    border-color: rgba(0,0,0,0.2);
    color: var(--text);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lightbox--canvas .lightbox-close:hover {
    border-color: var(--text);
    color: var(--text);
    background: var(--accent);
}

.canvas-view {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f2f2f0;
}

.canvas-viewport {
    position: absolute;
    inset: 0;
    cursor: grab;
    touch-action: none;
}
.canvas-viewport.is-dragging { cursor: grabbing; }
.canvas-view.is-expanded .canvas-viewport { cursor: default; }

.canvas-plane {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    will-change: transform;
}

.canvas-tile {
    position: absolute;
    overflow: hidden;
    background: #e4e4e0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1);
}
.canvas-tile.is-in     { opacity: 1; }
.canvas-tile.is-hidden { opacity: 0 !important; transition: none; }
.canvas-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.16,1,.3,1);
}
.canvas-tile:hover img { transform: scale(1.04); }

.canvas-head {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 6;
    display: flex;
    align-items: baseline;
    gap: 12px;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.canvas-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--text);
}
.canvas-count {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}

.canvas-controls {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.4s ease;
}
.canvas-switch {
    display: flex;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.canvas-sw {
    appearance: none;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    padding: 8px 14px;
    transition: color 0.2s, background 0.2s;
}
.canvas-sw:hover  { color: var(--text); }
.canvas-sw.is-on  { color: var(--text); background: var(--accent); }
.canvas-pct {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    min-width: 42px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.canvas-view.is-expanded .canvas-head,
.canvas-view.is-expanded .canvas-controls {
    opacity: 0;
    pointer-events: none;
}

.canvas-scrim {
    position: absolute;
    inset: 0;
    z-index: 7;
    background: #f7f7f5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.16,1,.3,1);
}
.canvas-scrim.is-on { opacity: 1; pointer-events: auto; }

.canvas-stage {
    position: absolute;
    z-index: 8;
    transform-origin: 0 0;
    pointer-events: none;
    visibility: hidden;
    will-change: transform;
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
}
.canvas-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.canvas-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    padding: 20px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.canvas-meta.is-on { opacity: 1; }
.canvas-meta-num {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    margin-bottom: 5px;
}
.canvas-meta-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    text-transform: uppercase;
}
.canvas-meta-right {
    display: flex;
    gap: 6px;
    pointer-events: auto;
}
.canvas-nav {
    appearance: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.85);
    color: var(--text-mid);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.canvas-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

@media (max-width: 700px) {
    .canvas-head     { top: 16px; left: 16px; }
    .canvas-title    { font-size: 1.1rem; }
    .canvas-controls { bottom: 16px; }
    .canvas-sw       { padding: 8px 11px; }
    .canvas-meta     { padding: 16px; }
}

/* ============================================
   INFO BUTTON & PANEL
   ============================================ */
.lightbox-info-btn {
    position: fixed;
    top: 16px;
    right: 72px;
    z-index: 1001;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #1a1a1a;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.lightbox-info-btn:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.lightbox-info-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(480px, 100vw);
    background: #ffffff;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.lightbox-info-panel.is-open {
    transform: translateX(0);
}

.info-panel-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: 1px solid #e0e0e0;
    color: #364542;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.info-panel-close:hover {
    border-color: #364542;
}

.info-panel-inner {
    padding: 80px 48px 48px;
    overflow-y: auto;
    height: 100%;
}

.info-panel-title {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.1;
    color: #364542;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.info-panel-body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #555555;
}

@media (max-width: 480px) {
    .lightbox-info-btn { right: 68px; }
    .info-panel-inner  { padding: 72px 24px 40px; }
}

/* Clickable carousel slide */
.carousel-link {
    display: block;
    line-height: 0;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s ease;
}

.carousel-link:hover {
    opacity: 0.88;
}

.carousel-link::after {
    content: '↗';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.carousel-link:hover::after {
    opacity: 1;
}
