/* ===========================
   GLOBAL STYLES & RESET
   =========================== */

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

/* ===========================
   HERO SECTION - FIXED
   =========================== */

.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: pointer;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

/* ===========================
   HERO LOGO
   =========================== */

.hero-logo {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 10;
}

.hero-logo h1 {
    font-size: 6rem;
    font-weight: 1000;
    color: white;
    margin: 0;
    letter-spacing: 0.01em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0);
}

/* ===========================
   SEARCH BAR
   =========================== */

.search-container {
    position: absolute;
    bottom: 30px;
    left: 32%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    z-index: 20;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 10px 10px 10px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    gap: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.0rem;
    padding: 20px 25px;
    background: transparent;
    color: #333;
    font-weight: 400;
}

.search-input::placeholder {
    color: #bbb;
}

.search-select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.0rem;
    padding: 20px 30px;
    cursor: pointer;
    color: #555;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 10px center;
    background-size: 18px;
    padding-right: 40px;
}

.search-select:hover {
    color: #333;
}

/* Price select with gray background pill */
.search-select.price-select {
    background-color: #e8e8e8;
    border-radius: 50px;
    padding: 18px 45px 18px 30px;
    margin: 0 8px;
}

.globe-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5DC8F0 0%, #4AB8E8 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(74, 184, 232, 0.3);
    flex-shrink: 0;
}

.globe-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 184, 232, 0.5);
}

.globe-button:active {
    transform: scale(0.98);
}

.globe-icon {
    width: 50px;
    height: 50px;
    color: white;
}

/* ===========================
   CAR INFO OVERLAY
   =========================== */

.car-info {
    position: absolute;
    top: 45%;
    right: 8%;
    text-align: right;
    z-index: 10;
    transform: translateY(-50%);
}

.car-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

.click-prompt {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    margin: 8px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* ===========================
   CONTENT OVERLAY - SCROLLABLE
   =========================== */

.content-overlay {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    /* Start below the hero */
}

.content-sheet {
    background: white;
    min-height: 100vh;
    border-radius: 40px 40px 0 0;
    padding: 80px 60px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
}

/* ===========================
   SECTION HEADER
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    display: inline-block;
    color: #29B6F6;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================
   CAR GRID
   =========================== */

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* ===========================
   CAR CARDS
   =========================== */

.car-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.car-card-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.car-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-card-image {
    transform: scale(1.08);
}

.car-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.car-card-content {
    padding: 30px;
}

.car-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.car-card-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-icon {
    font-size: 1.1rem;
}

.spec-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.car-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #29B6F6;
}

.car-card-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.car-card-button:hover {
    background: #333;
    transform: translateX(3px);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.car-card-button:hover .button-arrow {
    transform: translateX(3px);
}

/* ===========================
   VIEW ALL BUTTON
   =========================== */

.view-all-container {
    text-align: center;
    margin: 80px 0;
}

.view-all-button {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.view-all-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.view-all-button:hover .arrow {
    transform: translateX(5px);
}

/* ===========================
   WHY FOMENA SECTION
   =========================== */

.why-fomena {
    padding: 100px 0;
    text-align: center;
}

.why-fomena h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ===========================
   WORKS SECTION - HORIZONTAL SCROLL
   =========================== */

.works-section-wrapper {
    position: relative;
    background: white;
    height: 400vh;
    margin-left: -60px;
    margin-right: -60px;
}

.works-horizontal-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    will-change: transform;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;
    gap: 15px;
    padding: 0 20px 50px 20px;
}

.works-header {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    flex-shrink: 0;
    align-self: center;
}

.works-title {
    font-size: 15rem;
    font-weight: 900;
    color: #000;
    line-height: 0.85;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.works-subtitle {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-progress {
    color: #fffafa;
    font-weight: 700;
}

.works-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.works-link {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: color 0.3s ease;
}

.works-link:hover {
    color: #000;
}

/* Project Cards - All aligned at bottom */
.project-card {
    position: relative;
    overflow: visible;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 12px;
    background: #0800ff;
}

.project-card-small {
    width: 280px;
    height: 35vh;
}

.project-card-large {
    width: 320px;
    height: 50vh;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 2;
    max-width: calc(100% - 40px);
}

/* ===========================
   FOOTER SECTION - OH STYLE
   =========================== */

.footer-section-oh {
    background: white;
    padding: 80px 60px 60px 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.footer-image img,
.footer-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-large {
    font-size: 12rem;
    font-weight: 900;
    color: #000;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-top: 20px;
}

.footer-middle {
    padding-top: 20px;
}

.footer-section-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.footer-nav-link:hover {
    color: #666;
}

.footer-right {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-acknowledgement p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

.footer-info strong {
    font-weight: 600;
}

.footer-logo-small {
    width: 120px;
    height: auto;
    margin-top: 30px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-col {
    display: flex;
    gap: 20px;
}

.footer-bottom-col.center {
    justify-content: center;
}

.footer-bottom-col.right {
    justify-content: flex-end;
}

.footer-bottom-link {
    font-size: 0.75rem;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #666;
}

.footer-bottom-text {
    font-size: 0.75rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE DESIGN - TABLET
   =========================== */

@media (max-width: 1024px) {
    .hero-logo {
        left: 40px;
    }

    .hero-logo h1 {
        font-size: 3rem;
    }

    .search-container {
        width: 85%;
    }

    .content-sheet {
        padding: 60px 40px;
        border-radius: 30px 30px 0 0;
    }

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

    .car-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }

    .footer-section-oh {
        padding: 60px 40px 40px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-left {
        grid-column: 1 / -1;
    }

    .footer-logo-large {
        font-size: 9rem;
    }

    .footer-nav-link {
        font-size: 1.6rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom-col {
        justify-content: flex-start !important;
    }

    .works-section-wrapper {
        margin-left: -40px;
        margin-right: -40px;
    }

    .works-title {
        font-size: 10rem;
    }

    .project-card-small {
        width: 250px;
        height: 35vh;
    }

    .project-card-large {
        width: 280px;
        height: 50vh;
    }
}

/* ===========================
   RESPONSIVE DESIGN - MOBILE
   =========================== */

@media (max-width: 768px) {
    .hero-logo {
        left: 20px;
        top: 20px;
    }

    .hero-logo h1 {
        font-size: 2.5rem;
    }

    .search-container {
        left: 15px;
        right: 15px;
        bottom: 20px;
        width: auto;
        transform: none;
    }

    .search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .search-input,
    .search-select {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 12px;
    }

    .search-select.price-select {
        margin: 0;
        border-radius: 10px;
    }

    .search-select:last-of-type {
        border-bottom: none;
    }

    .globe-button {
        width: 100%;
        border-radius: 20px;
        height: 50px;
    }

    .car-info {
        top: 50%;
        right: 5%;
        text-align: right;
    }

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

    .content-sheet {
        padding: 50px 25px;
        border-radius: 25px 25px 0 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .car-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .car-card-image-container {
        height: 220px;
    }

    .car-card-content {
        padding: 25px;
    }

    .car-card-title {
        font-size: 1.3rem;
    }

    .car-card-specs {
        flex-direction: column;
        gap: 12px;
    }

    .car-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .car-card-button {
        justify-content: center;
        width: 100%;
    }

    .why-fomena h2 {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .view-all-button {
        padding: 18px 40px;
        font-size: 1rem;
    }

    .works-section-wrapper {
        margin-left: -25px;
        margin-right: -25px;
    }

    .works-header {
        padding: 0 25px;
    }

    .works-title {
        font-size: 4.5rem;
    }

    .works-subtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .project-card-small {
        width: 220px;
        height: 32vh;
    }

    .project-card-large {
        width: 250px;
        height: 45vh;
    }

    .project-title {
        font-size: 0.75rem;
        bottom: 15px;
        left: 15px;
    }

    .footer-section-oh {
        padding: 50px 25px 30px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-left {
        grid-column: 1;
    }

    .footer-logo-large {
        font-size: 7rem;
    }

    .footer-nav-link {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo h1 {
        font-size: 1.8rem;
    }

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

    .car-card-price {
        font-size: 1.5rem;
    }

    .content-sheet {
        padding: 40px 20px;
    }

    .works-section-wrapper {
        margin-left: -20px;
        margin-right: -20px;
    }

    .works-title {
        font-size: 3.5rem;
    }

    .footer-section-oh {
        padding: 40px 20px 30px 20px;
    }

    .footer-logo-large {
        font-size: 5rem;
    }

    .footer-nav-link {
        font-size: 1.6rem;
    }
}

/* Car grid states */
.car-grid-loading,
.car-grid-error,
.car-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
    font-size: 1rem;
}

/* Ghost cards — empty state */
.car-card--ghost {
    border: 2px dashed #e0e0e0;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

.car-card--ghost:hover {
    transform: none;
    box-shadow: none;
}

.car-card-image-container--ghost {
    height: 280px;
    background-color: #f5f5f5;
}

.car-card-ghost-label {
    text-align: center;
    color: #bbb;
    font-size: 0.95rem;
    padding: 2rem 0;
}

/* ===========================
   INVENTORY PAGE
   =========================== */

/* Mini hero banner */
.inv-hero {
    position: relative;
    height: 40vh;
    min-height: 260px;
    overflow: hidden;
}

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

.inv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.inv-hero-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
}

.inv-hero-logo {
    display: inline-block;
    font-size: 3rem;
    font-weight: 1000;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0 0 8px;
    text-decoration: none;
}

.inv-hero-nav {
    position: absolute;
    top: 30px;
    right: 40px;
}

.inv-home-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.inv-home-btn:hover {
    opacity: 1;
}

.inv-hero-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #29B6F6;
    margin: 0;
}

/* Inventory layout */
.inv-layout {
    display: flex;
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.inv-sidebar {
    width: 200px;
    flex-shrink: 0;
    padding-right: 50px;
    position: sticky;
    top: 40px;
    align-self: flex-start;
}

.inv-sidebar-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin: 0 0 20px;
}

.inv-category-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.inv-category-btn:hover {
    color: #1a1a1a;
}

.inv-category-btn.active {
    color: #1a1a1a;
    font-weight: 700;
}

.inv-main {
    flex: 1;
    min-width: 0;
}

.inv-results-label {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 30px;
}

/* Mobile: sidebar becomes horizontal pill row */
@media (max-width: 768px) {
    .inv-layout {
        flex-direction: column;
        padding: 30px 25px;
    }

    .inv-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
        margin-bottom: 30px;
        position: static;
    }

    .inv-sidebar-label {
        display: none;
    }

    .inv-category-btn {
        width: auto;
        border: none;
        border-radius: 50px;
        padding: 10px 20px;
        background: #f5f5f5;
        font-size: 0.85rem;
        color: #666;
    }

    .inv-category-btn.active {
        background: #1a1a1a;
        color: #ffffff;
        font-weight: 600;
    }

    .inv-hero-content {
        left: 25px;
        bottom: 25px;
    }

    .inv-hero-logo {
        font-size: 2rem;
    }

    .inv-hero-nav {
        top: 20px;
        right: 25px;
    }
}