.navbar-item.is-mega {
    position: static;

    .is-mega-menu-title {
        margin-bottom: 0;
        padding: .375rem 1rem;
    }
}

.category-spacer {
    margin-top: 1rem;
    padding-top: 5%;
}


.is-mega-menu-title a {
    color: #333;
    text-decoration: underline;
}

.navbar-dropdown .navbar-item:hover {
    background-color: #f0f0f0;
}

@media (min-width: 1088px) and (max-width: 1100px) {
    .bottom-menu-split .navbar-menu {
        max-width: 1060px;
        margin: 0 auto;
    }
}

@media (min-width: 1088px) {
    .category-top {
        margin-top: 50px;
    }
}

.tile-tile {
    position: relative;
    overflow: hidden;
    background-color: #FF5555;
    margin: 1rem 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
}

@media screen and (max-width: 1024px) {
    .tile-tile {
        aspect-ratio: 4 / 3;
    }
}

.tile-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tile-tile:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.tile-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: bold;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.25rem;
}

.tile-tile:hover .tile-label {
    transform: translateY(-5px);
    opacity: 1;
}

.tile-tile.triangle {
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.tile-tile.parallelogram {
    transform: skew(-10deg);
}

.tile-tile.parallelogram .tile-inner {
    transform: skew(10deg);
}

.hoverable {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hoverable:hover {
    transform: translateY(-4px);
}

.cta-button {
    margin-top: 1rem;
    background-color: #FF5555;
    border-color: transparent;
    color: white;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e04343;
}