/* Enchanted Cosmos - Master Stylesheet
   Fully Consolidated & Cleaned | Version 3.4
*/

:root {
    --bg: #0b0e14;
    --header-bg: rgba(8, 10, 15, 0.95);
    --accent: #1c1f26;
    --text-main: #e6e6e6;
    --text-dim: #888;
    --celestial: #7ba7bc;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 2px;
}

/* ---------- BASE STYLES ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- NAVIGATION CONTAINER ---------- */
#main-nav {
    display: flex;
    flex-direction: column; /* Stacks Brand row over Link row */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--header-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

/* ROW 1: Logo & Hamburger */
.nav-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    width: 100%;
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { width: 80px; height: 80px; border: 1px solid #fff; padding: 8px; }
.nav-brand-text h1 { font-size: 0.95rem; letter-spacing: 0.55em; text-transform: uppercase; color: #fff; line-height: 1.1; }
.nav-brand-text span { font-size: 0.7rem; letter-spacing: 0.25em; color: var(--text-dim); text-transform: uppercase; display: block; }

/* ROW 2: Desktop Links (Centered) */
.nav-desktop-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding-bottom: 15px;
}

.desktop-links a, .drop-trigger {
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
}

.desktop-links a:hover, .desktop-dropdown:hover .drop-trigger {
    color: var(--celestial);
}

/* ---------- DESKTOP DROPDOWN LOGIC ---------- */
.desktop-dropdown {
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    gap: 2.5rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(8, 10, 15, 0.98);
    min-width: 200px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--accent);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.65rem;
    margin: 0 !important;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--celestial);
}

.desktop-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDrop 0.3s ease;
}

@keyframes fadeInDrop {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ---------- MOBILE TOGGLE (HAMBURGER) ---------- */
.menu-toggle {
    width: 25px; height: 16px;
    display: flex; flex-direction: column; justify-content: space-between;
    cursor: pointer; z-index: 10001;
}

.menu-toggle span { width: 100%; height: 1px; background: #fff; transition: var(--transition); }

/* Animation to 'X' */
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- MOBILE OVERLAY MENU ---------- */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(8, 10, 15, 0.98);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 10000;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

.nav-overlay a, .overlay-dropbtn {
    color: #fff; font-size: 1.8rem; letter-spacing: 0.3em; text-transform: uppercase;
    text-decoration: none; margin: 15px 0; font-weight: 200; background: none; border: none; cursor: pointer;
}

.overlay-submenu {
    background: transparent !important;
    max-height: 0; overflow: hidden; opacity: 0;
    display: flex; flex-direction: column; align-items: center;
    transition: var(--transition);
}
.overlay-submenu.open { max-height: 500px; opacity: 1; margin: 10px 0; }
.overlay-submenu a { font-size: 1.3rem !important; color: var(--text-dim) !important; padding: 10px 0; }

/* ---------- RESPONSIVE SWITCH LOGIC ---------- */
@media (min-width: 1025px) {
    .menu-toggle { display: none; }
}

@media (max-width: 1024px) {
    .nav-desktop-row { display: none; }
    .nav-container-top { padding: 10px 20px; }
    .menu-toggle { display: flex; }

    .welcome-section { padding: 60px 20px; }
    .object-section { height: auto; padding: 80px 0; }
    .object-content { width: 90%; margin: 0 auto; }
}

/* ---------- HOME PAGE SECTIONS ---------- */
.welcome-section { padding: 140px 20px 60px; text-align: center; max-width: 800px; margin: 0 auto; }
.welcome-text .accent { display: block; color: var(--celestial); font-style: italic; margin-bottom: 20px; font-size: 1.1rem; }

.content-box { max-width: 700px; margin: 0 auto; padding: 60px 40px; background: rgba(11, 14, 20, 0.75); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 2px; text-align: center; }

.object-section { position: relative; height: 85vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid #1a1e26; }
.object-section:nth-of-type(even) { justify-content: flex-start; padding-left: 8%; }
.object-section:nth-of-type(odd) { justify-content: flex-end; padding-right: 8%; }

.object-bg { position: absolute; inset: 0; z-index: 1; }
.object-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); opacity: 0; transition: opacity 1.5s, transform 12s; }
.object-bg img.active { opacity: 1; transform: scale(1.1); }

.object-content { position: relative; z-index: 2; max-width: 500px; padding: 50px; background: rgba(11, 14, 20, 0.75); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.object-content h2 { font-weight: 200; font-size: 2rem; letter-spacing: 0.3em; margin-bottom: 20px; text-transform: uppercase; }

/* ---------- GALLERY SYSTEM ---------- */

.container { max-width: 1600px; margin: 0 auto; padding: 4rem 2rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr);
gap: 20px;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px 80px;
}

.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/2; background: #000; transition: transform 0.4s ease, opacity 0.4s ease; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); opacity: 0.8; }

.gallery-item:hover img { transform: scale(1.05); opacity: 1; }

.item-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8));
display: flex; flex-direction: column; justify-content: flex-end; pointer-events: none; z-index: 3; }

.item-overlay span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 5px; }

/* Filter Controls */

.filter-controls { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }

.filter-btn { background: transparent; border: 1px solid var(--accent); color: var(--text-dim); padding: 10px 22px; border-radius: 30px; cursor: pointer; font-size: 0.65rem;
text-transform: uppercase; letter-spacing: 0.15em; transition: var(--transition); }

.filter-btn:hover, .filter-btn.active { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.05); }

/* Filter Animations */

.gallery-item[style*="display: none"] { opacity: 0; transform: scale(0.95); }

/* Ensure the gallery items can be hidden/shown by JS */
.gallery-item {
    display: block; /* Default */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Optional: Add a subtle fade-in animation for when tabs are clicked */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*  Filter Control for Nebula Gallery*/
.filter-controls { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text-dim);
    padding: 8px 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--celestial);
    color: #fff;
}
/* Filter Hide/Show Logic */
.gallery-item.hide { display: none; opacity: 0; }
.gallery-item.show { display: block; animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/*--------------difficulty bar-----------*/
.subcategory-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

/* Color coding by SNR Difficulty */
/* LOW Difficulty - High Signal (Green/Teal) */
.diff-low { color: #00ffcc; text-shadow: 0 0 8px rgba(0, 255, 204, 0.3); }
/* MID Difficulty - Moderate Signal (Yellow/Gold) */
.diff-mid { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.3); }
/* HIGH Difficulty - Low Signal / Faint Dust (Red/Coral) */
.diff-high { color: #ff4d4d; text-shadow: 0 0 8px rgba(255, 77, 77, 0.3); }

/* ---------- PROJECT CONTENT ---------- */

.project-header { text-align: center; padding: 60px 20px 20px; }
.project-header h1 { font-weight: 200; font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.project-header p { font-size: clamp(0.6rem, 3vw, 0.8rem); letter-spacing: 0.5em; color: var(--celestial); text-transform: uppercase; }

/* ---------- COMPARISON SLIDER ---------- */
.comparison-section { padding: 80px 20px; text-align: center; background: #000; }

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.comparison-container .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.foreground-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    border-right: 2px solid #fff; /* Slightly thicker for visibility */
}


.background-img img,
.foreground-img img {
    height: 100%;     /* Keeps height filled */
    width: 850px;
    object-fit: cover; /* Prevents stretching/distortion */
    display: block;
}

/* Ensure the foreground image doesn't shrink when its container does */
.foreground-img img {
    width: 100vw;     /* Uses viewport width logic to stay full-size */
    max-width: 1400px; /* But never larger than the container's max */
    max-height: 800px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    background: transparent;
    z-index: 10;
    cursor: ew-resize;
    margin: 0; /* Ensures no weird offsets on mobile */
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1000px; /* Use a large fixed number instead of VH for stability */
    width: 2px;
    background: #fff;
}
/* ---------- Targets ---------- */

h3 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1.8rem; color: var(--text-dim); border-bottom: 1px solid var(--accent); padding-bottom: 0.5rem; display: inline-block; }
.description p { font-size: 1rem; color: #ccc; margin-bottom: 1.5rem; font-weight: 300; }

.data-card { background: var(--card-bg); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem; border-radius: var(--radius); margin-bottom: 2rem; }

.spec-row { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }

.label { color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.65rem; }

.value { color: #fff; text-align: right; }

.value a { color: var(--celestial); text-decoration: underline; }

.difficulty-list li { list-style: none; font-size: 0.85rem; color: #bbb; margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }

.difficulty-list li::before { content: "—"; position: absolute; left: 0; color: var(--celestial); }

/* --- Project Grid Layout --- */

.gallery-item:first-child { border: 1px solid var(--celestial);  box-shadow: 0 0 15px rgba(123, 167, 188, 0.2); }
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin: 40px auto;padding: 20px; }

.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.spec-row .label { color: #888; text-transform: uppercase; font-size: 0.7rem; }

.spec-row .value { color: #fff; font-size: 0.9rem; }

slideshow-outer { text-align: center; padding: 0 20px; width: 100%; }

.slideshow-container {display: block; width: 80%; max-width: 1200px; height: auto; position: relative;
margin: 2rem auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--accent); background: #000;
}

.mySlides img { width: 100%; height: auto; display: block; transition: transform 0.4s ease-out;}

.protection-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5; }

.prev, .next {
cursor: pointer; position: absolute; top: 50%; padding: 16px; margin-top: -30px;
color: white; background: rgba(0,0,0,0.4); z-index: 10; border-radius: 4px; transition: 0.3s; border: none; }
.next { right: 15px; } .prev { left: 15px; }
.prev:hover, .next:hover { color: var(--target-color); background: rgba(0,0,0,0.8); }
.slide-caption { color: #fff; font-size: 0.7rem; letter-spacing: 0.2em; padding: 15px 30px; position: absolute; bottom: 0; width: 100%; background: rgba(0,0,0,0.7); text-transform: uppercase; pointer-events: none; text-align: left; z-index: 6; }
.dot-container { text-align: center; margin-bottom: 40px; }
.dot { cursor: pointer; height: 8px; width: 8px; margin: 0 6px; background-color: #333; border-radius: 50%; display: inline-block; transition: 0.3s; }
.active-dot, .dot:hover { background-color: var(--target-color); }

/* Side Navigation Container */
.side-nav-container {
    position: fixed;
    top: 80%; /*changes pos of arrows */
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none; /* Allows clicking through to the image behind if needed */
    z-index: 80;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.side-arrow {
    pointer-events: auto; /* Re-enables clicking on the actual buttons */
    text-decoration: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 25px 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.side-arrow:hover {background: rgba(123, 167, 188, 0.15); /* Celestial accent */ border-color: var(--celestial); }
.arrow-content { display: flex; align-items: center; gap: 20px; }
.chevron { font-size: 2rem;font-weight: 200;}
.arrow-label { display: flex; flex-direction: column; opacity: 0; transform: translateX(-10px); transition: all 0.4s ease; }

/* Slide out labels on hover */
.side-arrow:hover .arrow-label { opacity: 1; transform: translateX(0);}
.next-arrow .arrow-label { text-align: right; transform: translateX(10px); }
.arrow-label small { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--celestial); text-transform: lowercase; }
.arrow-label span { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }


/* ---------- SHOP SYSTEM ---------- */
.inventory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; padding: 40px 20px; }
.card {
    background: #000; border: 1px solid var(--accent); border-radius: 4px;
    overflow: hidden; transition: 0.3s ease;
}
.card:hover { border-color: var(--celestial); transform: translateY(-5px); }
.card-img-container { aspect-ratio: 1/1; overflow: hidden; }
.card-img-container img { width: 100%; height: 100%; object-fit: cover; }

.price { font-weight: 600; color: #fff; }
.claim-btn {
    text-decoration: none; color: var(--celestial); font-size: 0.7rem;
    border: 1px solid var(--celestial); padding: 6px 12px; transition: 0.3s;
}
.claim-btn:hover { background: var(--celestial); color: #000; }
.inquiry-section { padding: 100px 20px; background: rgba(8, 10, 15, 0.95); text-align: center; border-top: 1px solid var(--accent); }
.inquiry-container { max-width: 600px; margin: 0 auto; }
.inquiry-section h2 { font-weight: 200; font-size: 2rem; letter-spacing: 0.3em; margin-bottom: 20px; text-transform: uppercase; }
.inquiry-section p { color: #888; margin-bottom: 40px; font-size: 0.9rem; }

.contact-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover { background: #ccc; transform: translateY(-3px); }
footer { text-align: center; padding: 60px 0; font-size: 0.65rem; letter-spacing: 0.3em; color: #444; text-transform: uppercase; }

/* ---------- FOOTER ---------- */

.view-gallery-link { display: inline-block; margin-top: 20px; padding: 12px 25px; border: 1px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; transition: 0.3s; }
.view-gallery-link:hover { background: #fff; color: #000; }
.contact-footer {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; padding: 4rem 2rem;
    border-top: 1px solid var(--accent); background: #05070a; text-align: center;
}
.main-footer { padding: 40px 0; text-align: center; color: var(--text-dim); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 4rem 2rem; border-top: 1px solid #1c1f26; background: #05070a; text-align: center; }

.footer-box h3 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: #888; margin-bottom: 1rem;}
.footer-box p {font-size: 1rem;color: #fff; font-weight: 300; line-height: 1.6; }
.footer-box a {color: #7ba7bc; text-decoration: none;transition: 0.3s;border-bottom: 1px solid transparent;}
.footer-box a:hover {border-bottom: 1px solid #7ba7bc;opacity: 0.8;}


/* ---------- FINAL MOBILE OVERRIDES ---------- */
@media (max-width: 850px) {
    /* Fix Navigation & Grid */
    .nav-desktop-row { display: none; }
    .nav-container-top { padding: 10px 20px; }
    .menu-toggle { display: flex; }
    .gallery-grid, .inventory-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 15px 60px; }
    .contact-footer { grid-template-columns: 1fr; }

/* Resize Hamburger Menu Links */
    .nav-overlay a, .overlay-dropbtn {
        font-size: 1.2rem;       /* Reduced from 1.8rem */
        letter-spacing: 0.2em;   /* Slightly tighter for better fit */
        margin: 10px 0;          /* Reduced vertical spacing */
    }

    /* Resize Sub-menu Links (the dropdowns inside the hamburger) */
    .overlay-submenu a {
        font-size: 0.95rem !important; /* Reduced from 1.3rem */
        padding: 8px 0;
        letter-spacing: 0.15em;
    }

    /* Fix Gallery Header (The 'Nebula' / 'Galaxy' titles) */
    .project-header {
        padding: 140px 20px 30px; /* Increased top padding to clear the fixed nav */
        text-align: center;
    }

.filter-controls {
        display: flex;
        justify-content: flex-start; /* Align to left for scrolling */
        overflow-x: auto;            /* Enable horizontal scroll */
        white-space: nowrap;         /* Keep buttons on one line */
        gap: 12px;
        padding: 10px 20px;
        margin-bottom: 20px;
        scrollbar-width: none;       /* Hides scrollbar on Firefox */
        -webkit-overflow-scrolling: touch; /* Smooth momentum scroll on iPhone */
    }

    .filter-controls::-webkit-scrollbar {display: none;/* Hides scrollbar on Chrome/Safari */   }

    /* 3. The Grid Fix (Crucial) */
    .gallery-grid { grid-template-columns: 1fr !important; gap: 15px; /* One photo per row for impact */ gap: 15px; }
    .project-header h1 { font-size: 1.6rem; /* Scaled down for mobile screens */ letter-spacing: 0.15em; margin-bottom: 5px; }    .project-header p { font-size: 0.65rem; letter-spacing: 0.3em; }

    /* Fix Comparison Slider for Vertical Screens */
    .comparison-container { aspect-ratio: 1/1; /* Makes it a square on phones for better viewing */}
    .foreground-img img { width: calc(100vw - 40px); /* 100vw minus your section padding */ }
    /* Fix Home Page Welcome Section */
    .welcome-section { padding: 140px 20px 40px; }
    .object-section { height: auto; padding: 60px 0; }
    .object-content { width: 90%; margin: 0 auto; padding: 30px; }
    .object-content h2 { font-size: 1.5rem; letter-spacing: 0.2em; }
    .social-link {
        font-size: 2.2rem; /* Large enough for thumbs to tap easily */
        margin: 15px 25px; /* Wider spacing to prevent mis-clicks */
    }

    .footer-box p {
        padding-top: 10px; /* Space above the icon row */
    }

    /* Force the labels to stay visible (no hover needed) */
    .arrow-label {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    /* Make the text slightly more compact for small screens */
    .arrow-label span {
        font-size: 0.65rem !important; /* Smaller target name */
        letter-spacing: 0.1em;
        max-width: 120px; /* Prevents long names from hitting the edge */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* Adds ... if name is too long */
    }

    .arrow-label small {
        font-size: 0.5rem;
        margin-bottom: 2px;
    }

    /* Tighten the spacing inside the arrow box */
    .side-arrow {
        padding: 15px 10px;
        background: rgba(0, 0, 0, 0.5); /* Slightly darker for readability */
    }

    .chevron {
        font-size: 1.2rem; /* Smaller arrows */
    }
}